forked from ib-ruby/ib-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathib-ruby.gemspec
29 lines (26 loc) · 1.17 KB
/
ib-ruby.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
28
29
Gem::Specification.new do |gem|
gem.name = "ib-ruby"
gem.version = File.open('VERSION').read.strip
gem.summary = "Ruby Implementation of the Interactive Brokers TWS API"
gem.description = "Ruby Implementation of the Interactive Brokers TWS API"
gem.authors = ["Paul Legato", "arvicco","Hatmut Bischoff"]
gem.homepage = "https://github.com/ib-ruby"
gem.platform = Gem::Platform::RUBY
gem.date = Time.now.strftime "%Y-%m-%d"
# Files setup
versioned = `git ls-files -z`.split("\0")
gem.files = Dir['{app,config,db,bin,lib,man,spec,features,tasks}/**/*',
'Rakefile', 'README*', 'LICENSE*',
'VERSION*', 'HISTORY*', '.gitignore'] & versioned
gem.executables = (Dir['bin/**/*'] & versioned).map { |file| File.basename(file) }
gem.test_files = Dir['spec/**/*'] & versioned
gem.require_paths = ['lib']
# Dependencies
gem.add_dependency 'activesupport', '>= 5.2'
gem.add_dependency 'activemodel'
gem.add_dependency 'ox', "~> 2.13"
gem.add_dependency 'bundler', '>=2.0'
gem.add_development_dependency 'rspec','>=3.6'
end
### last updated on 2018/2/27