We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c29f28 commit 922fd1aCopy full SHA for 922fd1a
kiba-common.gemspec
@@ -0,0 +1,19 @@
1
+# -*- encoding: utf-8 -*-
2
+require File.expand_path('../lib/kiba-common/version', __FILE__)
3
+
4
+Gem::Specification.new do |gem|
5
+ gem.authors = ['Thibaut Barrère']
6
+ gem.email = ['[email protected]']
7
+ gem.description = gem.summary = 'Commonly used helpers for Kiba ETL'
8
+ gem.homepage = 'https://github.com/thbar/kiba-common'
9
+ gem.license = 'LGPL-3.0'
10
+ gem.files = `git ls-files | grep -Ev '^(examples)'`.split("\n")
11
+ gem.test_files = `git ls-files -- test/*`.split("\n")
12
+ gem.name = 'kiba-common'
13
+ gem.require_paths = ['lib']
14
+ gem.version = Kiba::Common::VERSION
15
16
+ gem.add_development_dependency 'rake'
17
+ gem.add_development_dependency 'minitest'
18
+ gem.add_development_dependency 'awesome_print'
19
+end
0 commit comments