Skip to content

Commit 922fd1a

Browse files
committed
Add gemspec
1 parent 6c29f28 commit 922fd1a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

kiba-common.gemspec

+19
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)