forked from craysiii/binance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binance.gemspec
32 lines (24 loc) · 1.03 KB
/
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
30
31
32
# frozen_string_literal: true
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]']
spec.summary = 'API Wrapper for the Binance cryptocurrency exchange.'
spec.homepage = 'https://github.com/craysiii/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_development_dependency 'rubocop', '~> 0.79.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