binance_client-ruby 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 518c2a65034f8e4daba550421bc085d04680b2fdb00b39eb6609ceff27bee547
4
+ data.tar.gz: b9d7638fef93303019696f2c8d4da1a45307d95fdf7461887fa71602fc113756
5
+ SHA512:
6
+ metadata.gz: 1f69f63a8618283b016548e9d50b47e5b66e6bc2614f9f406beceeafb3839a76b082627a5f447a32e496b9c6283e9d92b6051f2251b0ed136241fdb33dbc530c
7
+ data.tar.gz: 9c73bd76dc3b88d31114967ecd3a1dcb1033ce9003b9870891ed323f5bb6598f6536dd47cf74bc172b0b6bf481ee04acf30f7b324be89a6324dda7a1484d431b
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ spec/config.yml
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.7.1
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at hi@ajvillalobos.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in binance_client.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "rspec", "~> 3.0"
@@ -0,0 +1,82 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ binance_client-ruby (0.1.0)
5
+ activesupport
6
+ api_client_base
7
+ typhoeus
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ activesupport (6.0.3.3)
13
+ concurrent-ruby (~> 1.0, >= 1.0.2)
14
+ i18n (>= 0.7, < 2)
15
+ minitest (~> 5.1)
16
+ tzinfo (~> 1.1)
17
+ zeitwerk (~> 2.2, >= 2.2.2)
18
+ api_client_base (1.9.0)
19
+ activesupport (>= 3.0)
20
+ gem_config (>= 0.3.1)
21
+ virtus (>= 1.0)
22
+ axiom-types (0.1.1)
23
+ descendants_tracker (~> 0.0.4)
24
+ ice_nine (~> 0.11.0)
25
+ thread_safe (~> 0.3, >= 0.3.1)
26
+ coderay (1.1.3)
27
+ coercible (1.0.0)
28
+ descendants_tracker (~> 0.0.1)
29
+ concurrent-ruby (1.1.7)
30
+ descendants_tracker (0.0.4)
31
+ thread_safe (~> 0.3, >= 0.3.1)
32
+ diff-lcs (1.4.4)
33
+ equalizer (0.0.11)
34
+ ethon (0.12.0)
35
+ ffi (>= 1.3.0)
36
+ ffi (1.13.1)
37
+ gem_config (0.3.2)
38
+ i18n (1.8.5)
39
+ concurrent-ruby (~> 1.0)
40
+ ice_nine (0.11.2)
41
+ method_source (1.0.0)
42
+ minitest (5.14.2)
43
+ pry (0.13.1)
44
+ coderay (~> 1.1)
45
+ method_source (~> 1.0)
46
+ rake (12.3.3)
47
+ rspec (3.9.0)
48
+ rspec-core (~> 3.9.0)
49
+ rspec-expectations (~> 3.9.0)
50
+ rspec-mocks (~> 3.9.0)
51
+ rspec-core (3.9.2)
52
+ rspec-support (~> 3.9.3)
53
+ rspec-expectations (3.9.2)
54
+ diff-lcs (>= 1.2.0, < 2.0)
55
+ rspec-support (~> 3.9.0)
56
+ rspec-mocks (3.9.1)
57
+ diff-lcs (>= 1.2.0, < 2.0)
58
+ rspec-support (~> 3.9.0)
59
+ rspec-support (3.9.3)
60
+ thread_safe (0.3.6)
61
+ typhoeus (1.4.0)
62
+ ethon (>= 0.9.0)
63
+ tzinfo (1.2.7)
64
+ thread_safe (~> 0.1)
65
+ virtus (1.0.5)
66
+ axiom-types (~> 0.1)
67
+ coercible (~> 1.0)
68
+ descendants_tracker (~> 0.0, >= 0.0.3)
69
+ equalizer (~> 0.0, >= 0.0.9)
70
+ zeitwerk (2.4.0)
71
+
72
+ PLATFORMS
73
+ ruby
74
+
75
+ DEPENDENCIES
76
+ binance_client-ruby!
77
+ pry
78
+ rake (~> 12.0)
79
+ rspec (~> 3.0)
80
+
81
+ BUNDLED WITH
82
+ 2.1.4
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 AJ Villalobos
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,58 @@
1
+ # BinanceClient
2
+
3
+ This is a ruby api wrapper for [Binance API](https://binance-docs.github.io/apidocs/spot/en/#change-log)
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'binance_client'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install binance_client
20
+
21
+ ## Authenticate
22
+ ```
23
+ client = BinanceClient.new(
24
+ api_key: "your-api-key",
25
+ api_secret: "your-api-secret"
26
+ )
27
+ ```
28
+
29
+ ## Requests
30
+ We provide one method per API endpoint.
31
+
32
+ ### Current methods/endpoints
33
+
34
+ ```
35
+ client.system_status
36
+ client.account_snapshot
37
+ client.get_all
38
+ ```
39
+
40
+ ## Responses
41
+ The default representation of response data is a JSON hash
42
+
43
+
44
+ ## Development
45
+ Edit the `config.yml.sample` with your own credentials for testing
46
+
47
+ ## Contributing
48
+
49
+ Bug reports and pull requests are welcome on GitHub at https://github.com/iamajvillalobos/binance_client. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/iamajvillalobos/binance_client/blob/master/CODE_OF_CONDUCT.md).
50
+
51
+
52
+ ## License
53
+
54
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
55
+
56
+ ## Code of Conduct
57
+
58
+ Everyone interacting in the BinanceClient project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/iamajvillalobos/binance_client/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "binance_client"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,33 @@
1
+ require_relative 'lib/binance_client/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "binance_client-ruby"
5
+ spec.version = BinanceClient::VERSION
6
+ spec.authors = ["AJ Villalobos"]
7
+ spec.email = ["hi@ajvillalobos.com"]
8
+
9
+ spec.summary = "Ruby wrapper for Binance API"
10
+ spec.description = "Ruby wrapper for Binance API"
11
+ spec.homepage = "https://github.com/iamajvillalobos/binance_client-ruby"
12
+ spec.license = "MIT"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
14
+
15
+ spec.metadata["homepage_uri"] = spec.homepage
16
+ spec.metadata["source_code_uri"] = "https://github.com/iamajvillalobos/binance_client-ruby"
17
+ spec.metadata["changelog_uri"] = "https://github.com/iamajvillalobos/binance_client-ruby/CHANGELOG.md"
18
+
19
+ # Specify which files should be added to the gem when it is released.
20
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
22
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
23
+ end
24
+ spec.bindir = "exe"
25
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
+ spec.require_paths = ["lib"]
27
+
28
+ spec.add_dependency "api_client_base"
29
+ spec.add_dependency "activesupport"
30
+ spec.add_dependency "typhoeus"
31
+
32
+ spec.add_development_dependency "pry"
33
+ end
@@ -0,0 +1,31 @@
1
+ require "binance_client/version"
2
+ require "api_client_base"
3
+ require "active_support/core_ext/hash/indifferent_access"
4
+ require "active_support/core_ext/object/to_query"
5
+ require "json"
6
+ require "openssl"
7
+
8
+ require "binance_client/client"
9
+
10
+ require "binance_client/requests/base_request"
11
+ require "binance_client/responses/base_response"
12
+ require "binance_client/requests/system_status_request"
13
+ require "binance_client/requests/account_snapshot_request"
14
+ require "binance_client/requests/get_all_request"
15
+ require "binance_client/responses/system_status_response"
16
+ require "binance_client/responses/account_snapshot_response"
17
+ require "binance_client/responses/get_all_response"
18
+
19
+ module BinanceClient
20
+ class Error < StandardError; end
21
+
22
+ include APIClientBase::Base.module
23
+
24
+ DEFAULT_HOST = "https://api.binance.com"
25
+
26
+ with_configuration do
27
+ has :host, classes: String, default: DEFAULT_HOST
28
+ has :api_key, classes: String
29
+ has :api_secret, classes: String
30
+ end
31
+ end
@@ -0,0 +1,19 @@
1
+ module BinanceClient
2
+ class Client
3
+ include APIClientBase::Client.module(default_opts: :default_opts)
4
+
5
+ api_action :system_status
6
+ api_action :account_snapshot
7
+ api_action :get_all
8
+
9
+ attribute :host
10
+ attribute :api_key
11
+ attribute :api_secret
12
+
13
+ private
14
+
15
+ def default_opts
16
+ {host: host, api_key: api_key, api_secret: api_secret}
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,28 @@
1
+ module BinanceClient
2
+ class AccountSnapshotRequest < BaseRequest
3
+ private
4
+
5
+ def path
6
+ "/sapi/v1/accountSnapshot"
7
+ end
8
+
9
+ def params
10
+ type = "SPOT"
11
+ limit = 30
12
+ query = query(type: type, limit: limit)
13
+
14
+ [
15
+ query,
16
+ "signature=#{signature(query)}"
17
+ ].join("&")
18
+ end
19
+
20
+ def query(options={})
21
+ [
22
+ "type=#{options[:type]}",
23
+ "timestamp=#{timestamp}",
24
+ "limit=#{options[:limit]}",
25
+ ].join("&")
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,27 @@
1
+ module BinanceClient
2
+ class BaseRequest
3
+ include APIClientBase::Request.module
4
+
5
+ attribute :api_key, String
6
+ attribute :api_secret, String
7
+
8
+ def headers
9
+ {
10
+ "Content-Type" => "application/json",
11
+ "X-MBX-APIKEY" => api_key
12
+ }
13
+ end
14
+
15
+ def signature(query)
16
+ OpenSSL::HMAC.hexdigest(
17
+ OpenSSL::Digest.new("sha256"),
18
+ api_secret,
19
+ query,
20
+ )
21
+ end
22
+
23
+ def timestamp
24
+ DateTime.now.strftime("%Q")
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,20 @@
1
+ module BinanceClient
2
+ class GetAllRequest < BaseRequest
3
+ private
4
+
5
+ def path
6
+ "/sapi/v1/capital/config/getall"
7
+ end
8
+
9
+ def query
10
+ "timestamp=#{timestamp}"
11
+ end
12
+
13
+ def params
14
+ [
15
+ query,
16
+ "signature=#{signature(query)}"
17
+ ].join("&")
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,7 @@
1
+ module BinanceClient
2
+ class SystemStatusRequest < BaseRequest
3
+ def path
4
+ "/wapi/v3/systemStatus.html"
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ module BinanceClient
2
+ class AccountSnapshotResponse < BaseResponse
3
+ end
4
+ end
@@ -0,0 +1,13 @@
1
+ module BinanceClient
2
+ class BaseResponse
3
+ include APIClientBase::Response.module
4
+
5
+ attribute :body, Object, default: :default_body
6
+
7
+ private
8
+
9
+ def default_body
10
+ JSON.parse(raw_response.body)
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,18 @@
1
+ module BinanceClient
2
+ class GetAllResponse < BaseResponse
3
+ attribute :body, Object, default: :default_body
4
+
5
+ private
6
+
7
+ def default_body
8
+ payload = {}
9
+ parsed_body = JSON.parse(raw_response.body)
10
+
11
+ parsed_body.map do |coin_details|
12
+ payload[coin_details["coin"]] = coin_details
13
+ end
14
+
15
+ payload
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,21 @@
1
+ module BinanceClient
2
+ class SystemStatusResponse < BaseResponse
3
+ attribute :body, Object, default: :default_body
4
+ attribute :msg, String, lazy: true, default: :default_msg
5
+ attribute :status, String, lazy: true, default: :default_status
6
+
7
+ private
8
+
9
+ def default_body
10
+ JSON.parse(raw_response.body).with_indifferent_access
11
+ end
12
+
13
+ def default_msg
14
+ body[:msg]
15
+ end
16
+
17
+ def default_status
18
+ body[:status]
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,3 @@
1
+ module BinanceClient
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,125 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: binance_client-ruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - AJ Villalobos
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-09-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: api_client_base
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: activesupport
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: typhoeus
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Ruby wrapper for Binance API
70
+ email:
71
+ - hi@ajvillalobos.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".rspec"
78
+ - ".travis.yml"
79
+ - CODE_OF_CONDUCT.md
80
+ - Gemfile
81
+ - Gemfile.lock
82
+ - LICENSE.txt
83
+ - README.md
84
+ - Rakefile
85
+ - bin/console
86
+ - bin/setup
87
+ - binance_client.gemspec
88
+ - lib/binance_client.rb
89
+ - lib/binance_client/client.rb
90
+ - lib/binance_client/requests/account_snapshot_request.rb
91
+ - lib/binance_client/requests/base_request.rb
92
+ - lib/binance_client/requests/get_all_request.rb
93
+ - lib/binance_client/requests/system_status_request.rb
94
+ - lib/binance_client/responses/account_snapshot_response.rb
95
+ - lib/binance_client/responses/base_response.rb
96
+ - lib/binance_client/responses/get_all_response.rb
97
+ - lib/binance_client/responses/system_status_response.rb
98
+ - lib/binance_client/version.rb
99
+ homepage: https://github.com/iamajvillalobos/binance_client-ruby
100
+ licenses:
101
+ - MIT
102
+ metadata:
103
+ homepage_uri: https://github.com/iamajvillalobos/binance_client-ruby
104
+ source_code_uri: https://github.com/iamajvillalobos/binance_client-ruby
105
+ changelog_uri: https://github.com/iamajvillalobos/binance_client-ruby/CHANGELOG.md
106
+ post_install_message:
107
+ rdoc_options: []
108
+ require_paths:
109
+ - lib
110
+ required_ruby_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: 2.3.0
115
+ required_rubygems_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ requirements: []
121
+ rubygems_version: 3.1.2
122
+ signing_key:
123
+ specification_version: 4
124
+ summary: Ruby wrapper for Binance API
125
+ test_files: []