-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
kiba.gemspec
27 lines (25 loc) · 1.01 KB
/
kiba.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require File.expand_path("../lib/kiba/version", __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Thibaut Barrère"]
gem.email = ["[email protected]"]
gem.description = gem.summary = "Lightweight ETL for Ruby"
gem.homepage = "https://www.kiba-etl.org"
gem.license = "LGPL-3.0"
gem.files = `git ls-files | grep -Ev '^(examples)'`.split("\n")
# NOTE: temporarily disabled until
# https://github.com/rubocop/rubocop/issues/10675 is fixed
# gem.test_files = `git ls-files -- test/*`.split("\n")
gem.name = "kiba"
gem.require_paths = ["lib"]
gem.version = Kiba::VERSION
gem.metadata = {
"source_code_uri" => "https://github.com/thbar/kiba",
"documentation_uri" => "https://github.com/thbar/kiba/wiki"
}
gem.add_development_dependency "rake"
gem.add_development_dependency "minitest", "~> 5.9"
gem.add_development_dependency "awesome_print"
gem.add_development_dependency "minitest-focus"
gem.add_development_dependency "standard"
gem.add_development_dependency "csv"
end