-
Notifications
You must be signed in to change notification settings - Fork 0
/
quandl.gemspec
32 lines (26 loc) · 1.21 KB
/
quandl.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
30
31
32
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'quandl/version'
Gem::Specification.new do |spec|
spec.name = 'quandl'
spec.version = Quandl::VERSION
spec.author = 'Quandl'
spec.email = '[email protected]'
spec.required_ruby_version = '>= 2.5'
spec.summary = 'An ORM interface into the quandl api.'
spec.description = 'A ruby implementation of the quandl client to be used as an ORM for quandl\'s restful APIs.'
spec.homepage = 'https://github.com/quandl/quandl-ruby'
spec.license = 'MIT'
spec.files = Dir['{bin,lib,git_hooks}/**/*', 'MIT-LICENSE', 'README.md']
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = Dir['test/**/*']
spec.require_paths = ['lib']
spec.add_runtime_dependency 'activesupport', '>= 5.2.4.3'
spec.add_runtime_dependency 'json', '~> 2.3.0'
spec.add_runtime_dependency 'rest-client', '~> 2.0.2'
spec.add_development_dependency 'factory_girl', '~> 4.5.0'
spec.add_development_dependency 'irb'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'webmock', '~> 3.0.1'
end