chess-pub-api-client 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +7 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +40 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/chess-pub-api-client.gemspec +32 -0
- data/lib/chess_pub_api_client.rb +9 -0
- data/lib/chess_pub_api_client/chess_pub_api_client.rb +188 -0
- data/lib/chess_pub_api_client/version.rb +4 -0
- metadata +140 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: bb494ae55e361cbe76ed8c75df7932e48361176e2982b282502b64c9a2b87df2
|
4
|
+
data.tar.gz: e890053f14953ccac60bf2c028abe2434ab20d37e7a1bec55f59d9efaefb0fe8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 62c06bb789f50d69120f91a8752784c6a78e3c3b1475d15210a37f4cbcd6bdd2e4a805d00dc99fc6dc8de8ba30fa42cee6c973a806f0622264db2f6ecab5f6c9
|
7
|
+
data.tar.gz: c52189b1bdf4e1a8a9e8db046c08538df2b35e62f2d99a5888d24327cad6ef5e6d964dbd65bf599a9e0cbee7145b146aed77d49382a89e877aa00e90c06b2737
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
chess-pub-api-client (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
addressable (2.7.0)
|
10
|
+
public_suffix (>= 2.0.2, < 5.0)
|
11
|
+
coderay (1.1.3)
|
12
|
+
crack (0.4.4)
|
13
|
+
hashdiff (1.0.1)
|
14
|
+
method_source (1.0.0)
|
15
|
+
minitest (5.14.2)
|
16
|
+
pry (0.13.1)
|
17
|
+
coderay (~> 1.1)
|
18
|
+
method_source (~> 1.0)
|
19
|
+
public_suffix (4.0.6)
|
20
|
+
rake (10.5.0)
|
21
|
+
vcr (6.0.0)
|
22
|
+
webmock (3.10.0)
|
23
|
+
addressable (>= 2.3.6)
|
24
|
+
crack (>= 0.3.2)
|
25
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
26
|
+
|
27
|
+
PLATFORMS
|
28
|
+
ruby
|
29
|
+
|
30
|
+
DEPENDENCIES
|
31
|
+
bundler (~> 1.17)
|
32
|
+
chess-pub-api-client!
|
33
|
+
minitest (~> 5.0)
|
34
|
+
pry
|
35
|
+
rake (~> 10.0)
|
36
|
+
vcr (~> 6.0.0)
|
37
|
+
webmock
|
38
|
+
|
39
|
+
BUNDLED WITH
|
40
|
+
1.17.2
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Chris Maltais
|
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.
|
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# Chess::Pub::Api
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/chess/pub_api`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'chess-pub-api'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install chess-pub-api
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/chess-pub-api.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "chess/pub_api"
|
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__)
|
data/bin/setup
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "chess_pub_api_client/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "chess-pub-api-client"
|
8
|
+
spec.version = ChessPubApiClient::VERSION
|
9
|
+
spec.authors = ["Chris Maltais"]
|
10
|
+
spec.email = ["chris.maltais@hotmail.ca"]
|
11
|
+
|
12
|
+
spec.summary = "Unofficial Ruby client for the Chess.com Public Data REST API."
|
13
|
+
spec.description = "Unofficial Ruby client for Chess.com's Public Data REST API. Zero dependencies."
|
14
|
+
spec.homepage = "https://github.com/chrismaltais/chess-pub-api"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
# Specify which files should be added to the gem when it is released.
|
18
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
19
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
20
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
21
|
+
end
|
22
|
+
spec.bindir = "exe"
|
23
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
24
|
+
spec.require_paths = ["lib"]
|
25
|
+
|
26
|
+
spec.add_development_dependency "bundler", "~> 1.17"
|
27
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
28
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
29
|
+
spec.add_development_dependency "pry"
|
30
|
+
spec.add_development_dependency "vcr", "~> 6.0.0"
|
31
|
+
spec.add_development_dependency "webmock"
|
32
|
+
end
|
@@ -0,0 +1,188 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
module ChessPubApiClient
|
5
|
+
class << self
|
6
|
+
def get_player(username)
|
7
|
+
uri = URI("https://api.chess.com/pub/player/#{username}")
|
8
|
+
res = Net::HTTP.get_response(uri)
|
9
|
+
handle_response(res)
|
10
|
+
end
|
11
|
+
|
12
|
+
def get_titled_players(title)
|
13
|
+
uri = URI("https://api.chess.com/pub/titled/#{title}")
|
14
|
+
res = Net::HTTP.get_response(uri)
|
15
|
+
handle_response(res)
|
16
|
+
end
|
17
|
+
|
18
|
+
def get_player_stats(username)
|
19
|
+
uri = URI("https://api.chess.com/pub/player/#{username}/stats")
|
20
|
+
res = Net::HTTP.get_response(uri)
|
21
|
+
handle_response(res)
|
22
|
+
end
|
23
|
+
|
24
|
+
def get_player_online_status(username)
|
25
|
+
uri = URI("https://api.chess.com/pub/player/#{username}/is-online")
|
26
|
+
res = Net::HTTP.get_response(uri)
|
27
|
+
handle_response(res)
|
28
|
+
end
|
29
|
+
|
30
|
+
def get_player_current_games(username)
|
31
|
+
uri = URI("https://api.chess.com/pub/player/#{username}/games")
|
32
|
+
res = Net::HTTP.get_response(uri)
|
33
|
+
handle_response(res)
|
34
|
+
end
|
35
|
+
|
36
|
+
def get_player_current_games_to_move(username)
|
37
|
+
uri = URI("https://api.chess.com/pub/player/#{username}/games/to-move")
|
38
|
+
res = Net::HTTP.get_response(uri)
|
39
|
+
handle_response(res)
|
40
|
+
end
|
41
|
+
|
42
|
+
def get_player_games_archives(username, year: nil, month: nil)
|
43
|
+
if year && month
|
44
|
+
uri = URI("https://api.chess.com/pub/player/#{username}/games/#{year}/#{month}")
|
45
|
+
else
|
46
|
+
uri = URI("https://api.chess.com/pub/player/#{username}/games/archives")
|
47
|
+
end
|
48
|
+
res = Net::HTTP.get_response(uri)
|
49
|
+
handle_response(res)
|
50
|
+
end
|
51
|
+
|
52
|
+
def get_player_games_archives_pgn(username, year: nil, month: nil)
|
53
|
+
# TODO: Set appropriate headers required here
|
54
|
+
uri = URI("https://api.chess.com/pub/player/#{username}/games/#{year}/#{month}/pgn")
|
55
|
+
res = Net::HTTP.get_response(uri)
|
56
|
+
case res.code
|
57
|
+
when "200"
|
58
|
+
return res.body
|
59
|
+
else
|
60
|
+
raise StandardError.new("Error. HTTP Status Code: #{res.code}. JSON body: #{res.body}")
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
def get_player_clubs(username)
|
65
|
+
uri = URI("https://api.chess.com/pub/player/#{username}/clubs")
|
66
|
+
res = Net::HTTP.get_response(uri)
|
67
|
+
handle_response(res)
|
68
|
+
end
|
69
|
+
|
70
|
+
def get_player_matches(username)
|
71
|
+
uri = URI("https://api.chess.com/pub/player/#{username}/matches")
|
72
|
+
res = Net::HTTP.get_response(uri)
|
73
|
+
handle_response(res)
|
74
|
+
end
|
75
|
+
|
76
|
+
def get_player_tournaments(username)
|
77
|
+
uri = URI("https://api.chess.com/pub/player/#{username}/tournaments")
|
78
|
+
res = Net::HTTP.get_response(uri)
|
79
|
+
handle_response(res)
|
80
|
+
end
|
81
|
+
|
82
|
+
def get_club(url_id)
|
83
|
+
uri = URI("https://api.chess.com/pub/club/#{url_id}")
|
84
|
+
res = Net::HTTP.get_response(uri)
|
85
|
+
handle_response(res)
|
86
|
+
end
|
87
|
+
|
88
|
+
def get_club_members(url_id)
|
89
|
+
uri = URI("https://api.chess.com/pub/club/#{url_id}/members")
|
90
|
+
res = Net::HTTP.get_response(uri)
|
91
|
+
handle_response(res)
|
92
|
+
end
|
93
|
+
|
94
|
+
def get_club_matches(url_id)
|
95
|
+
uri = URI("https://api.chess.com/pub/club/#{url_id}/matches")
|
96
|
+
res = Net::HTTP.get_response(uri)
|
97
|
+
handle_response(res)
|
98
|
+
end
|
99
|
+
|
100
|
+
def get_tournament(url_id, round: nil, group: nil)
|
101
|
+
if round && group
|
102
|
+
uri = URI("https://api.chess.com/pub/tournament/#{url_id}/#{round}/#{group}")
|
103
|
+
elsif round
|
104
|
+
uri = URI("https://api.chess.com/pub/tournament/#{url_id}/#{round}")
|
105
|
+
else
|
106
|
+
uri = URI("https://api.chess.com/pub/tournament/#{url_id}")
|
107
|
+
end
|
108
|
+
|
109
|
+
res = Net::HTTP.get_response(uri)
|
110
|
+
handle_response(res)
|
111
|
+
end
|
112
|
+
|
113
|
+
def get_team_match(id, board: nil)
|
114
|
+
if board
|
115
|
+
uri = URI("https://api.chess.com/pub/match/#{id}/#{board}")
|
116
|
+
else
|
117
|
+
uri = URI("https://api.chess.com/pub/match/#{id}")
|
118
|
+
end
|
119
|
+
|
120
|
+
res = Net::HTTP.get_response(uri)
|
121
|
+
handle_response(res)
|
122
|
+
end
|
123
|
+
|
124
|
+
def get_team_live_match(id, board: nil)
|
125
|
+
if board
|
126
|
+
uri = URI("https://api.chess.com/pub/match/live/#{id}/#{board}")
|
127
|
+
else
|
128
|
+
uri = URI("https://api.chess.com/pub/match/live/#{id}")
|
129
|
+
end
|
130
|
+
|
131
|
+
res = Net::HTTP.get_response(uri)
|
132
|
+
handle_response(res)
|
133
|
+
end
|
134
|
+
|
135
|
+
def get_country(iso)
|
136
|
+
uri = URI("https://api.chess.com/pub/country/#{iso}")
|
137
|
+
res = Net::HTTP.get_response(uri)
|
138
|
+
handle_response(res)
|
139
|
+
end
|
140
|
+
|
141
|
+
def get_country_players(iso)
|
142
|
+
uri = URI("https://api.chess.com/pub/country/#{iso}/players")
|
143
|
+
res = Net::HTTP.get_response(uri)
|
144
|
+
handle_response(res)
|
145
|
+
end
|
146
|
+
|
147
|
+
def get_country_clubs(iso)
|
148
|
+
uri = URI("https://api.chess.com/pub/country/#{iso}/clubs")
|
149
|
+
res = Net::HTTP.get_response(uri)
|
150
|
+
handle_response(res)
|
151
|
+
end
|
152
|
+
|
153
|
+
def get_daily_puzzle
|
154
|
+
uri = URI("https://api.chess.com/pub/puzzle")
|
155
|
+
res = Net::HTTP.get_response(uri)
|
156
|
+
handle_response(res)
|
157
|
+
end
|
158
|
+
|
159
|
+
def get_daily_puzzle_random
|
160
|
+
uri = URI("https://api.chess.com/pub/puzzle/random")
|
161
|
+
res = Net::HTTP.get_response(uri)
|
162
|
+
handle_response(res)
|
163
|
+
end
|
164
|
+
|
165
|
+
def get_streamers
|
166
|
+
uri = URI("https://api.chess.com/pub/streamers")
|
167
|
+
res = Net::HTTP.get_response(uri)
|
168
|
+
handle_response(res)
|
169
|
+
end
|
170
|
+
|
171
|
+
def get_leaderboards
|
172
|
+
uri = URI("https://api.chess.com/pub/leaderboards")
|
173
|
+
res = Net::HTTP.get_response(uri)
|
174
|
+
handle_response(res)
|
175
|
+
end
|
176
|
+
|
177
|
+
private
|
178
|
+
|
179
|
+
def handle_response(response)
|
180
|
+
case response.code
|
181
|
+
when "200"
|
182
|
+
return JSON.parse(response.body, symbolize_names: true)
|
183
|
+
else
|
184
|
+
raise StandardError.new("Error. HTTP Status Code: #{response.code}. JSON body: #{response.body}")
|
185
|
+
end
|
186
|
+
end
|
187
|
+
end
|
188
|
+
end
|
metadata
ADDED
@@ -0,0 +1,140 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: chess-pub-api-client
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Chris Maltais
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-12-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.17'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.17'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '5.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '5.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
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: vcr
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 6.0.0
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 6.0.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: webmock
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: Unofficial Ruby client for Chess.com's Public Data REST API. Zero dependencies.
|
98
|
+
email:
|
99
|
+
- chris.maltais@hotmail.ca
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- ".gitignore"
|
105
|
+
- ".travis.yml"
|
106
|
+
- Gemfile
|
107
|
+
- Gemfile.lock
|
108
|
+
- LICENSE.txt
|
109
|
+
- README.md
|
110
|
+
- Rakefile
|
111
|
+
- bin/console
|
112
|
+
- bin/setup
|
113
|
+
- chess-pub-api-client.gemspec
|
114
|
+
- lib/chess_pub_api_client.rb
|
115
|
+
- lib/chess_pub_api_client/chess_pub_api_client.rb
|
116
|
+
- lib/chess_pub_api_client/version.rb
|
117
|
+
homepage: https://github.com/chrismaltais/chess-pub-api
|
118
|
+
licenses:
|
119
|
+
- MIT
|
120
|
+
metadata: {}
|
121
|
+
post_install_message:
|
122
|
+
rdoc_options: []
|
123
|
+
require_paths:
|
124
|
+
- lib
|
125
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - ">="
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '0'
|
130
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '0'
|
135
|
+
requirements: []
|
136
|
+
rubygems_version: 3.0.3
|
137
|
+
signing_key:
|
138
|
+
specification_version: 4
|
139
|
+
summary: Unofficial Ruby client for the Chess.com Public Data REST API.
|
140
|
+
test_files: []
|