-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspanbars.gemspec
More file actions
32 lines (28 loc) · 1.23 KB
/
spanbars.gemspec
File metadata and controls
32 lines (28 loc) · 1.23 KB
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
28
29
30
31
Gem::Specification.new do |s|
s.name = "spanbars"
s.version = File.read("#{__dir__}/VERSION").chomp
s.date = "2020-11-21"
s.summary = "Tiny tool to process input CSV data as timeseries to span bars"
s.description = "Tiny tool to process input CSV data as timeseries to span bars "
s.authors = [ "Benjamin L. Tischendorf" ]
s.email = "donkeybridge@jtown.eu"
s.homepage = "https://github.com/donkeybridge/spanbars"
s.platform = Gem::Platform::RUBY
s.license = "BSD-4-Clause"
s.required_ruby_version = '~> 2.0'
versioned = `git ls-files -z`.split("\0")
s.files = Dir['{lib,features}/**/*',
'Rakefile', 'README*', 'LICENSE*',
'VERSION*', 'HISTORY*', '.gitignore'] & versioned
s.executables = (Dir['bin/**/*'] & versioned).map { |file| File.basename(file) }
s.test_files = Dir['features/**/*'] & versioned
s.require_paths = ['lib']
# Dependencies
s.add_dependency 'bundler', '>= 1.1.16'
s.add_dependency 'slop', '~> 4.8'
s.add_dependency 'csv', '~> 3.1'
s.add_dependency 'colorize', '~> 0.8'
s.add_development_dependency 'rspec','~>3.10'
s.add_development_dependency 'cucumber','~>5.2'
s.add_development_dependency 'yard', '~>0.9'
end