forked from craysiii/binance
-
Notifications
You must be signed in to change notification settings - Fork 1
/
binance.gemspec
29 lines (22 loc) · 989 Bytes
/
binance.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'binance/version'
Gem::Specification.new do |spec|
spec.name = 'binance'
spec.version = Binance::VERSION
spec.authors = ['Charles Ray Shisler III', "Γ"]
spec.email = ['[email protected]', "[email protected]"]
spec.summary = 'API Wrapper for the Binance cryptocurrency exchange.'
spec.homepage = 'https://github.com/hackhowtofaq/binance'
spec.license = 'MIT'
spec.files = Dir['bin/*'] +
Dir['lib/**/*.rb']
spec.require_paths = ['lib']
spec.bindir = 'bin'
spec.add_development_dependency 'bundler', '> 1.15'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_runtime_dependency 'faraday', '> 0.12'
spec.add_runtime_dependency 'faraday_middleware', '> 0.12'
spec.add_runtime_dependency 'faye-websocket', '> 0.10'
end