-
Notifications
You must be signed in to change notification settings - Fork 95
/
bitfinex-rb.gemspec
29 lines (26 loc) · 1.17 KB
/
bitfinex-rb.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'bitfinex-rb'
spec.version = '1.1.0'
spec.authors = ['Bitfinex']
spec.email = ['[email protected]']
spec.summary = %q{Bitfinex API Wrapper}
spec.description = %q{Official Bitfinex API ruby wrapper}
spec.homepage = 'https://www.bitfinex.com/'
spec.license = 'MIT'
spec.files = Dir['lib/**/*']
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'faraday', '~> 1.10.3'
spec.add_runtime_dependency 'eventmachine', '~> 1.2.7'
spec.add_runtime_dependency 'faraday-detailed_logger', '~> 2.5.0'
spec.add_runtime_dependency 'faye-websocket', '~> 0.11.3'
spec.add_runtime_dependency 'json', '~> 2.0', '>= 2.2.0'
spec.add_runtime_dependency 'faraday_middleware', '~> 1.2.0'
spec.add_runtime_dependency 'emittr', '~> 0.1.0'
spec.add_runtime_dependency 'dotenv', '~> 2.7.6'
spec.add_runtime_dependency 'socksify', '~> 1.7.1'
spec.add_runtime_dependency 'zlib', '~> 1.0.0'
end