rating-chgk-v2 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (156) hide show
  1. checksums.yaml +7 -0
  2. data/.github/CODE_OF_CONDUCT.md +46 -0
  3. data/.github/CONTRIBUTING.md +14 -0
  4. data/.github/PULL_REQUEST_TEMPLATE.md +11 -0
  5. data/CHANGELOG.md +5 -0
  6. data/Gemfile +5 -0
  7. data/README.md +60 -0
  8. data/Rakefile +21 -0
  9. data/lib/rating_chgk_v2/client.rb +16 -0
  10. data/lib/rating_chgk_v2/collections/base_collection.rb +48 -0
  11. data/lib/rating_chgk_v2/collections/countries_collection.rb +11 -0
  12. data/lib/rating_chgk_v2/collections/player_seasons_collection.rb +11 -0
  13. data/lib/rating_chgk_v2/collections/player_tournaments_collection.rb +11 -0
  14. data/lib/rating_chgk_v2/collections/players_collection.rb +11 -0
  15. data/lib/rating_chgk_v2/collections/regions_collection.rb +11 -0
  16. data/lib/rating_chgk_v2/collections/releases_collection.rb +11 -0
  17. data/lib/rating_chgk_v2/collections/seasons_collection.rb +11 -0
  18. data/lib/rating_chgk_v2/collections/team_tournaments_collection.rb +11 -0
  19. data/lib/rating_chgk_v2/collections/teams_collection.rb +11 -0
  20. data/lib/rating_chgk_v2/collections/tournament_appeals_collection.rb +9 -0
  21. data/lib/rating_chgk_v2/collections/tournament_flags_collection.rb +9 -0
  22. data/lib/rating_chgk_v2/collections/tournament_requests_collection.rb +9 -0
  23. data/lib/rating_chgk_v2/collections/tournament_results_collection.rb +9 -0
  24. data/lib/rating_chgk_v2/collections/tournament_types_collection.rb +9 -0
  25. data/lib/rating_chgk_v2/collections/tournaments_collection.rb +11 -0
  26. data/lib/rating_chgk_v2/collections/towns_collection.rb +11 -0
  27. data/lib/rating_chgk_v2/collections/venue_types_collection.rb +11 -0
  28. data/lib/rating_chgk_v2/collections/venues_collection.rb +11 -0
  29. data/lib/rating_chgk_v2/concerns/paginated.rb +31 -0
  30. data/lib/rating_chgk_v2/connection.rb +33 -0
  31. data/lib/rating_chgk_v2/data/authentication_token.yml +1 -0
  32. data/lib/rating_chgk_v2/data/country.yml +2 -0
  33. data/lib/rating_chgk_v2/data/player.yml +4 -0
  34. data/lib/rating_chgk_v2/data/player_season.yml +6 -0
  35. data/lib/rating_chgk_v2/data/player_tournament.yml +3 -0
  36. data/lib/rating_chgk_v2/data/region.yml +3 -0
  37. data/lib/rating_chgk_v2/data/release.yml +4 -0
  38. data/lib/rating_chgk_v2/data/season.yml +3 -0
  39. data/lib/rating_chgk_v2/data/team.yml +3 -0
  40. data/lib/rating_chgk_v2/data/team_tournament.yml +2 -0
  41. data/lib/rating_chgk_v2/data/tournament.yml +20 -0
  42. data/lib/rating_chgk_v2/data/tournament_flag.yml +3 -0
  43. data/lib/rating_chgk_v2/data/tournament_result.yml +10 -0
  44. data/lib/rating_chgk_v2/data/tournament_synch_appeal.yml +10 -0
  45. data/lib/rating_chgk_v2/data/tournament_synch_controversial.yml +8 -0
  46. data/lib/rating_chgk_v2/data/tournament_synch_request.yml +8 -0
  47. data/lib/rating_chgk_v2/data/tournament_type.yml +2 -0
  48. data/lib/rating_chgk_v2/data/town.yml +4 -0
  49. data/lib/rating_chgk_v2/data/venue.yml +6 -0
  50. data/lib/rating_chgk_v2/data/venue_type.yml +2 -0
  51. data/lib/rating_chgk_v2/endpoints/authentication_token_endpoint.rb +13 -0
  52. data/lib/rating_chgk_v2/endpoints/base_endpoint.rb +58 -0
  53. data/lib/rating_chgk_v2/endpoints/countries_endpoint.rb +13 -0
  54. data/lib/rating_chgk_v2/endpoints/players_endpoint.rb +13 -0
  55. data/lib/rating_chgk_v2/endpoints/regions_endpoint.rb +13 -0
  56. data/lib/rating_chgk_v2/endpoints/releases_endpoint.rb +13 -0
  57. data/lib/rating_chgk_v2/endpoints/seasons_endpoint.rb +13 -0
  58. data/lib/rating_chgk_v2/endpoints/teams_endpoint.rb +13 -0
  59. data/lib/rating_chgk_v2/endpoints/tournament_flags_endpoint.rb +13 -0
  60. data/lib/rating_chgk_v2/endpoints/tournament_synch_appeals_endpoint.rb +13 -0
  61. data/lib/rating_chgk_v2/endpoints/tournament_synch_controversials_endpoint.rb +13 -0
  62. data/lib/rating_chgk_v2/endpoints/tournament_synch_requests_endpoint.rb +13 -0
  63. data/lib/rating_chgk_v2/endpoints/tournament_types_endpoint.rb +13 -0
  64. data/lib/rating_chgk_v2/endpoints/tournaments_endpoint.rb +13 -0
  65. data/lib/rating_chgk_v2/endpoints/towns_endpoint.rb +13 -0
  66. data/lib/rating_chgk_v2/endpoints/venue_types_endpoint.rb +13 -0
  67. data/lib/rating_chgk_v2/endpoints/venues_endpoint.rb +13 -0
  68. data/lib/rating_chgk_v2/error.rb +52 -0
  69. data/lib/rating_chgk_v2/json_handler.rb +19 -0
  70. data/lib/rating_chgk_v2/models/authentication_token_model.rb +8 -0
  71. data/lib/rating_chgk_v2/models/base_model.rb +38 -0
  72. data/lib/rating_chgk_v2/models/country_model.rb +16 -0
  73. data/lib/rating_chgk_v2/models/player_model.rb +17 -0
  74. data/lib/rating_chgk_v2/models/player_season_model.rb +8 -0
  75. data/lib/rating_chgk_v2/models/player_tournament_model.rb +8 -0
  76. data/lib/rating_chgk_v2/models/region_model.rb +8 -0
  77. data/lib/rating_chgk_v2/models/release_model.rb +8 -0
  78. data/lib/rating_chgk_v2/models/season_model.rb +16 -0
  79. data/lib/rating_chgk_v2/models/team_model.rb +17 -0
  80. data/lib/rating_chgk_v2/models/team_tournament_model.rb +8 -0
  81. data/lib/rating_chgk_v2/models/tournament_flag_model.rb +8 -0
  82. data/lib/rating_chgk_v2/models/tournament_model.rb +22 -0
  83. data/lib/rating_chgk_v2/models/tournament_result_model.rb +8 -0
  84. data/lib/rating_chgk_v2/models/tournament_synch_appeal_model.rb +8 -0
  85. data/lib/rating_chgk_v2/models/tournament_synch_controversial_model.rb +8 -0
  86. data/lib/rating_chgk_v2/models/tournament_synch_request_model.rb +8 -0
  87. data/lib/rating_chgk_v2/models/tournament_type_model.rb +8 -0
  88. data/lib/rating_chgk_v2/models/town_model.rb +8 -0
  89. data/lib/rating_chgk_v2/models/venue_model.rb +16 -0
  90. data/lib/rating_chgk_v2/models/venue_type_model.rb +8 -0
  91. data/lib/rating_chgk_v2/request.rb +58 -0
  92. data/lib/rating_chgk_v2/rest/authentication_token.rb +11 -0
  93. data/lib/rating_chgk_v2/rest/countries.rb +27 -0
  94. data/lib/rating_chgk_v2/rest/players.rb +23 -0
  95. data/lib/rating_chgk_v2/rest/regions.rb +15 -0
  96. data/lib/rating_chgk_v2/rest/releases.rb +15 -0
  97. data/lib/rating_chgk_v2/rest/seasons.rb +27 -0
  98. data/lib/rating_chgk_v2/rest/teams.rb +23 -0
  99. data/lib/rating_chgk_v2/rest/tournament_flags.rb +15 -0
  100. data/lib/rating_chgk_v2/rest/tournament_synch_appeals.rb +11 -0
  101. data/lib/rating_chgk_v2/rest/tournament_synch_controversials.rb +11 -0
  102. data/lib/rating_chgk_v2/rest/tournament_synch_requests.rb +11 -0
  103. data/lib/rating_chgk_v2/rest/tournament_types.rb +15 -0
  104. data/lib/rating_chgk_v2/rest/tournaments.rb +27 -0
  105. data/lib/rating_chgk_v2/rest/towns.rb +15 -0
  106. data/lib/rating_chgk_v2/rest/venue_types.rb +19 -0
  107. data/lib/rating_chgk_v2/rest/venues.rb +27 -0
  108. data/lib/rating_chgk_v2/rest.rb +45 -0
  109. data/lib/rating_chgk_v2/utils/string_utils.rb +28 -0
  110. data/lib/rating_chgk_v2/version.rb +5 -0
  111. data/lib/rating_chgk_v2.rb +22 -0
  112. data/rating-chgk-v2.gemspec +47 -0
  113. data/spec/lib/rating_chgk_v2/collections/base_collection_spec.rb +53 -0
  114. data/spec/lib/rating_chgk_v2/collections/countries_collection_spec.rb +5 -0
  115. data/spec/lib/rating_chgk_v2/collections/player_seasons_collection_spec.rb +5 -0
  116. data/spec/lib/rating_chgk_v2/collections/player_tournaments_collection_spec.rb +5 -0
  117. data/spec/lib/rating_chgk_v2/collections/players_collection_spec.rb +5 -0
  118. data/spec/lib/rating_chgk_v2/collections/regions_collection_spec.rb +5 -0
  119. data/spec/lib/rating_chgk_v2/collections/releases_collection_spec.rb +5 -0
  120. data/spec/lib/rating_chgk_v2/collections/seasons_collection_spec.rb +5 -0
  121. data/spec/lib/rating_chgk_v2/collections/teams_collection_spec.rb +5 -0
  122. data/spec/lib/rating_chgk_v2/collections/tournaments_collection_spec.rb +5 -0
  123. data/spec/lib/rating_chgk_v2/collections/towns_collection_spec.rb +5 -0
  124. data/spec/lib/rating_chgk_v2/collections/venue_types_collection_spec.rb +5 -0
  125. data/spec/lib/rating_chgk_v2/collections/venues_collection_spec.rb +5 -0
  126. data/spec/lib/rating_chgk_v2/connection_spec.rb +22 -0
  127. data/spec/lib/rating_chgk_v2/endpoints/base_endpoint_spec.rb +15 -0
  128. data/spec/lib/rating_chgk_v2/error_spec.rb +11 -0
  129. data/spec/lib/rating_chgk_v2/models/country_model_spec.rb +30 -0
  130. data/spec/lib/rating_chgk_v2/models/player_model_spec.rb +59 -0
  131. data/spec/lib/rating_chgk_v2/models/season_model_spec.rb +36 -0
  132. data/spec/lib/rating_chgk_v2/models/team_model_spec.rb +35 -0
  133. data/spec/lib/rating_chgk_v2/models/tournament_model_spec.rb +38 -0
  134. data/spec/lib/rating_chgk_v2/models/venue_model_spec.rb +30 -0
  135. data/spec/lib/rating_chgk_v2/rest/authentication_token_spec.rb +19 -0
  136. data/spec/lib/rating_chgk_v2/rest/countries_spec.rb +94 -0
  137. data/spec/lib/rating_chgk_v2/rest/players_spec.rb +126 -0
  138. data/spec/lib/rating_chgk_v2/rest/regions_spec.rb +37 -0
  139. data/spec/lib/rating_chgk_v2/rest/releases_spec.rb +34 -0
  140. data/spec/lib/rating_chgk_v2/rest/seasons_spec.rb +71 -0
  141. data/spec/lib/rating_chgk_v2/rest/teams_spec.rb +66 -0
  142. data/spec/lib/rating_chgk_v2/rest/tournament_flags_spec.rb +27 -0
  143. data/spec/lib/rating_chgk_v2/rest/tournament_synch_appeals_spec.rb +22 -0
  144. data/spec/lib/rating_chgk_v2/rest/tournament_synch_controversials_spec.rb +20 -0
  145. data/spec/lib/rating_chgk_v2/rest/tournament_synch_requests_spec.rb +20 -0
  146. data/spec/lib/rating_chgk_v2/rest/tournament_types_spec.rb +23 -0
  147. data/spec/lib/rating_chgk_v2/rest/tournaments_spec.rb +89 -0
  148. data/spec/lib/rating_chgk_v2/rest/towns_spec.rb +35 -0
  149. data/spec/lib/rating_chgk_v2/rest/venue_types_spec.rb +46 -0
  150. data/spec/lib/rating_chgk_v2/rest/venues_spec.rb +71 -0
  151. data/spec/lib/rating_chgk_v2_spec.rb +9 -0
  152. data/spec/spec_helper.rb +37 -0
  153. data/spec/support/shared/paginated.rb +41 -0
  154. data/spec/support/test_client.rb +7 -0
  155. data/spec/support/vcr.rb +15 -0
  156. metadata +455 -0
metadata ADDED
@@ -0,0 +1,455 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rating-chgk-v2
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.rc1
5
+ platform: ruby
6
+ authors:
7
+ - Ilya Bodrov-Krukowski
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-04-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: addressable
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: faraday
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: json
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: zeitwerk
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.4'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.4'
69
+ - !ruby/object:Gem::Dependency
70
+ name: codecov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.1'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.1'
83
+ - !ruby/object:Gem::Dependency
84
+ name: dotenv
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '2.5'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '2.5'
97
+ - !ruby/object:Gem::Dependency
98
+ name: oj
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3.10'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3.10'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rake
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '13.0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '13.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rspec
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '3.6'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '3.6'
139
+ - !ruby/object:Gem::Dependency
140
+ name: rubocop
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '1.6'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '1.6'
153
+ - !ruby/object:Gem::Dependency
154
+ name: rubocop-performance
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '1.5'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '1.5'
167
+ - !ruby/object:Gem::Dependency
168
+ name: rubocop-rspec
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: '2.0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: '2.0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: simplecov
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - "~>"
186
+ - !ruby/object:Gem::Version
187
+ version: '0.16'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: '0.16'
195
+ - !ruby/object:Gem::Dependency
196
+ name: vcr
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - "~>"
200
+ - !ruby/object:Gem::Version
201
+ version: '6.0'
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - "~>"
207
+ - !ruby/object:Gem::Version
208
+ version: '6.0'
209
+ - !ruby/object:Gem::Dependency
210
+ name: webmock
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - "~>"
214
+ - !ruby/object:Gem::Version
215
+ version: '3.14'
216
+ type: :development
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - "~>"
221
+ - !ruby/object:Gem::Version
222
+ version: '3.14'
223
+ description: Ruby client for the new CHGK rating API (api.rating.chgk.net).
224
+ email:
225
+ - golosizpru@gmail.com
226
+ executables: []
227
+ extensions: []
228
+ extra_rdoc_files:
229
+ - README.md
230
+ files:
231
+ - ".github/CODE_OF_CONDUCT.md"
232
+ - ".github/CONTRIBUTING.md"
233
+ - ".github/PULL_REQUEST_TEMPLATE.md"
234
+ - CHANGELOG.md
235
+ - Gemfile
236
+ - README.md
237
+ - Rakefile
238
+ - lib/rating_chgk_v2.rb
239
+ - lib/rating_chgk_v2/client.rb
240
+ - lib/rating_chgk_v2/collections/base_collection.rb
241
+ - lib/rating_chgk_v2/collections/countries_collection.rb
242
+ - lib/rating_chgk_v2/collections/player_seasons_collection.rb
243
+ - lib/rating_chgk_v2/collections/player_tournaments_collection.rb
244
+ - lib/rating_chgk_v2/collections/players_collection.rb
245
+ - lib/rating_chgk_v2/collections/regions_collection.rb
246
+ - lib/rating_chgk_v2/collections/releases_collection.rb
247
+ - lib/rating_chgk_v2/collections/seasons_collection.rb
248
+ - lib/rating_chgk_v2/collections/team_tournaments_collection.rb
249
+ - lib/rating_chgk_v2/collections/teams_collection.rb
250
+ - lib/rating_chgk_v2/collections/tournament_appeals_collection.rb
251
+ - lib/rating_chgk_v2/collections/tournament_flags_collection.rb
252
+ - lib/rating_chgk_v2/collections/tournament_requests_collection.rb
253
+ - lib/rating_chgk_v2/collections/tournament_results_collection.rb
254
+ - lib/rating_chgk_v2/collections/tournament_types_collection.rb
255
+ - lib/rating_chgk_v2/collections/tournaments_collection.rb
256
+ - lib/rating_chgk_v2/collections/towns_collection.rb
257
+ - lib/rating_chgk_v2/collections/venue_types_collection.rb
258
+ - lib/rating_chgk_v2/collections/venues_collection.rb
259
+ - lib/rating_chgk_v2/concerns/paginated.rb
260
+ - lib/rating_chgk_v2/connection.rb
261
+ - lib/rating_chgk_v2/data/authentication_token.yml
262
+ - lib/rating_chgk_v2/data/country.yml
263
+ - lib/rating_chgk_v2/data/player.yml
264
+ - lib/rating_chgk_v2/data/player_season.yml
265
+ - lib/rating_chgk_v2/data/player_tournament.yml
266
+ - lib/rating_chgk_v2/data/region.yml
267
+ - lib/rating_chgk_v2/data/release.yml
268
+ - lib/rating_chgk_v2/data/season.yml
269
+ - lib/rating_chgk_v2/data/team.yml
270
+ - lib/rating_chgk_v2/data/team_tournament.yml
271
+ - lib/rating_chgk_v2/data/tournament.yml
272
+ - lib/rating_chgk_v2/data/tournament_flag.yml
273
+ - lib/rating_chgk_v2/data/tournament_result.yml
274
+ - lib/rating_chgk_v2/data/tournament_synch_appeal.yml
275
+ - lib/rating_chgk_v2/data/tournament_synch_controversial.yml
276
+ - lib/rating_chgk_v2/data/tournament_synch_request.yml
277
+ - lib/rating_chgk_v2/data/tournament_type.yml
278
+ - lib/rating_chgk_v2/data/town.yml
279
+ - lib/rating_chgk_v2/data/venue.yml
280
+ - lib/rating_chgk_v2/data/venue_type.yml
281
+ - lib/rating_chgk_v2/endpoints/authentication_token_endpoint.rb
282
+ - lib/rating_chgk_v2/endpoints/base_endpoint.rb
283
+ - lib/rating_chgk_v2/endpoints/countries_endpoint.rb
284
+ - lib/rating_chgk_v2/endpoints/players_endpoint.rb
285
+ - lib/rating_chgk_v2/endpoints/regions_endpoint.rb
286
+ - lib/rating_chgk_v2/endpoints/releases_endpoint.rb
287
+ - lib/rating_chgk_v2/endpoints/seasons_endpoint.rb
288
+ - lib/rating_chgk_v2/endpoints/teams_endpoint.rb
289
+ - lib/rating_chgk_v2/endpoints/tournament_flags_endpoint.rb
290
+ - lib/rating_chgk_v2/endpoints/tournament_synch_appeals_endpoint.rb
291
+ - lib/rating_chgk_v2/endpoints/tournament_synch_controversials_endpoint.rb
292
+ - lib/rating_chgk_v2/endpoints/tournament_synch_requests_endpoint.rb
293
+ - lib/rating_chgk_v2/endpoints/tournament_types_endpoint.rb
294
+ - lib/rating_chgk_v2/endpoints/tournaments_endpoint.rb
295
+ - lib/rating_chgk_v2/endpoints/towns_endpoint.rb
296
+ - lib/rating_chgk_v2/endpoints/venue_types_endpoint.rb
297
+ - lib/rating_chgk_v2/endpoints/venues_endpoint.rb
298
+ - lib/rating_chgk_v2/error.rb
299
+ - lib/rating_chgk_v2/json_handler.rb
300
+ - lib/rating_chgk_v2/models/authentication_token_model.rb
301
+ - lib/rating_chgk_v2/models/base_model.rb
302
+ - lib/rating_chgk_v2/models/country_model.rb
303
+ - lib/rating_chgk_v2/models/player_model.rb
304
+ - lib/rating_chgk_v2/models/player_season_model.rb
305
+ - lib/rating_chgk_v2/models/player_tournament_model.rb
306
+ - lib/rating_chgk_v2/models/region_model.rb
307
+ - lib/rating_chgk_v2/models/release_model.rb
308
+ - lib/rating_chgk_v2/models/season_model.rb
309
+ - lib/rating_chgk_v2/models/team_model.rb
310
+ - lib/rating_chgk_v2/models/team_tournament_model.rb
311
+ - lib/rating_chgk_v2/models/tournament_flag_model.rb
312
+ - lib/rating_chgk_v2/models/tournament_model.rb
313
+ - lib/rating_chgk_v2/models/tournament_result_model.rb
314
+ - lib/rating_chgk_v2/models/tournament_synch_appeal_model.rb
315
+ - lib/rating_chgk_v2/models/tournament_synch_controversial_model.rb
316
+ - lib/rating_chgk_v2/models/tournament_synch_request_model.rb
317
+ - lib/rating_chgk_v2/models/tournament_type_model.rb
318
+ - lib/rating_chgk_v2/models/town_model.rb
319
+ - lib/rating_chgk_v2/models/venue_model.rb
320
+ - lib/rating_chgk_v2/models/venue_type_model.rb
321
+ - lib/rating_chgk_v2/request.rb
322
+ - lib/rating_chgk_v2/rest.rb
323
+ - lib/rating_chgk_v2/rest/authentication_token.rb
324
+ - lib/rating_chgk_v2/rest/countries.rb
325
+ - lib/rating_chgk_v2/rest/players.rb
326
+ - lib/rating_chgk_v2/rest/regions.rb
327
+ - lib/rating_chgk_v2/rest/releases.rb
328
+ - lib/rating_chgk_v2/rest/seasons.rb
329
+ - lib/rating_chgk_v2/rest/teams.rb
330
+ - lib/rating_chgk_v2/rest/tournament_flags.rb
331
+ - lib/rating_chgk_v2/rest/tournament_synch_appeals.rb
332
+ - lib/rating_chgk_v2/rest/tournament_synch_controversials.rb
333
+ - lib/rating_chgk_v2/rest/tournament_synch_requests.rb
334
+ - lib/rating_chgk_v2/rest/tournament_types.rb
335
+ - lib/rating_chgk_v2/rest/tournaments.rb
336
+ - lib/rating_chgk_v2/rest/towns.rb
337
+ - lib/rating_chgk_v2/rest/venue_types.rb
338
+ - lib/rating_chgk_v2/rest/venues.rb
339
+ - lib/rating_chgk_v2/utils/string_utils.rb
340
+ - lib/rating_chgk_v2/version.rb
341
+ - rating-chgk-v2.gemspec
342
+ - spec/lib/rating_chgk_v2/collections/base_collection_spec.rb
343
+ - spec/lib/rating_chgk_v2/collections/countries_collection_spec.rb
344
+ - spec/lib/rating_chgk_v2/collections/player_seasons_collection_spec.rb
345
+ - spec/lib/rating_chgk_v2/collections/player_tournaments_collection_spec.rb
346
+ - spec/lib/rating_chgk_v2/collections/players_collection_spec.rb
347
+ - spec/lib/rating_chgk_v2/collections/regions_collection_spec.rb
348
+ - spec/lib/rating_chgk_v2/collections/releases_collection_spec.rb
349
+ - spec/lib/rating_chgk_v2/collections/seasons_collection_spec.rb
350
+ - spec/lib/rating_chgk_v2/collections/teams_collection_spec.rb
351
+ - spec/lib/rating_chgk_v2/collections/tournaments_collection_spec.rb
352
+ - spec/lib/rating_chgk_v2/collections/towns_collection_spec.rb
353
+ - spec/lib/rating_chgk_v2/collections/venue_types_collection_spec.rb
354
+ - spec/lib/rating_chgk_v2/collections/venues_collection_spec.rb
355
+ - spec/lib/rating_chgk_v2/connection_spec.rb
356
+ - spec/lib/rating_chgk_v2/endpoints/base_endpoint_spec.rb
357
+ - spec/lib/rating_chgk_v2/error_spec.rb
358
+ - spec/lib/rating_chgk_v2/models/country_model_spec.rb
359
+ - spec/lib/rating_chgk_v2/models/player_model_spec.rb
360
+ - spec/lib/rating_chgk_v2/models/season_model_spec.rb
361
+ - spec/lib/rating_chgk_v2/models/team_model_spec.rb
362
+ - spec/lib/rating_chgk_v2/models/tournament_model_spec.rb
363
+ - spec/lib/rating_chgk_v2/models/venue_model_spec.rb
364
+ - spec/lib/rating_chgk_v2/rest/authentication_token_spec.rb
365
+ - spec/lib/rating_chgk_v2/rest/countries_spec.rb
366
+ - spec/lib/rating_chgk_v2/rest/players_spec.rb
367
+ - spec/lib/rating_chgk_v2/rest/regions_spec.rb
368
+ - spec/lib/rating_chgk_v2/rest/releases_spec.rb
369
+ - spec/lib/rating_chgk_v2/rest/seasons_spec.rb
370
+ - spec/lib/rating_chgk_v2/rest/teams_spec.rb
371
+ - spec/lib/rating_chgk_v2/rest/tournament_flags_spec.rb
372
+ - spec/lib/rating_chgk_v2/rest/tournament_synch_appeals_spec.rb
373
+ - spec/lib/rating_chgk_v2/rest/tournament_synch_controversials_spec.rb
374
+ - spec/lib/rating_chgk_v2/rest/tournament_synch_requests_spec.rb
375
+ - spec/lib/rating_chgk_v2/rest/tournament_types_spec.rb
376
+ - spec/lib/rating_chgk_v2/rest/tournaments_spec.rb
377
+ - spec/lib/rating_chgk_v2/rest/towns_spec.rb
378
+ - spec/lib/rating_chgk_v2/rest/venue_types_spec.rb
379
+ - spec/lib/rating_chgk_v2/rest/venues_spec.rb
380
+ - spec/lib/rating_chgk_v2_spec.rb
381
+ - spec/spec_helper.rb
382
+ - spec/support/shared/paginated.rb
383
+ - spec/support/test_client.rb
384
+ - spec/support/vcr.rb
385
+ homepage: https://github.com/bodrovis/rating-chgk-v2
386
+ licenses:
387
+ - MIT
388
+ metadata:
389
+ rubygems_mfa_required: 'true'
390
+ wiki_uri: https://github.com/bodrovis/rating-chgk-v2/wiki
391
+ changelog_uri: https://github.com/bodrovis/rating-chgk-v2/blob/master/CHANGELOG.md
392
+ bug_tracker_uri: https://github.com/bodrovis/rating-chgk-v2/issues
393
+ post_install_message:
394
+ rdoc_options: []
395
+ require_paths:
396
+ - lib
397
+ required_ruby_version: !ruby/object:Gem::Requirement
398
+ requirements:
399
+ - - ">="
400
+ - !ruby/object:Gem::Version
401
+ version: 2.7.0
402
+ required_rubygems_version: !ruby/object:Gem::Requirement
403
+ requirements:
404
+ - - ">"
405
+ - !ruby/object:Gem::Version
406
+ version: 1.3.1
407
+ requirements: []
408
+ rubygems_version: 3.3.10
409
+ signing_key:
410
+ specification_version: 4
411
+ summary: Ruby interface for the new CHGK rating API
412
+ test_files:
413
+ - spec/lib/rating_chgk_v2/collections/base_collection_spec.rb
414
+ - spec/lib/rating_chgk_v2/collections/countries_collection_spec.rb
415
+ - spec/lib/rating_chgk_v2/collections/player_seasons_collection_spec.rb
416
+ - spec/lib/rating_chgk_v2/collections/player_tournaments_collection_spec.rb
417
+ - spec/lib/rating_chgk_v2/collections/players_collection_spec.rb
418
+ - spec/lib/rating_chgk_v2/collections/regions_collection_spec.rb
419
+ - spec/lib/rating_chgk_v2/collections/releases_collection_spec.rb
420
+ - spec/lib/rating_chgk_v2/collections/seasons_collection_spec.rb
421
+ - spec/lib/rating_chgk_v2/collections/teams_collection_spec.rb
422
+ - spec/lib/rating_chgk_v2/collections/tournaments_collection_spec.rb
423
+ - spec/lib/rating_chgk_v2/collections/towns_collection_spec.rb
424
+ - spec/lib/rating_chgk_v2/collections/venue_types_collection_spec.rb
425
+ - spec/lib/rating_chgk_v2/collections/venues_collection_spec.rb
426
+ - spec/lib/rating_chgk_v2/connection_spec.rb
427
+ - spec/lib/rating_chgk_v2/endpoints/base_endpoint_spec.rb
428
+ - spec/lib/rating_chgk_v2/error_spec.rb
429
+ - spec/lib/rating_chgk_v2/models/country_model_spec.rb
430
+ - spec/lib/rating_chgk_v2/models/player_model_spec.rb
431
+ - spec/lib/rating_chgk_v2/models/season_model_spec.rb
432
+ - spec/lib/rating_chgk_v2/models/team_model_spec.rb
433
+ - spec/lib/rating_chgk_v2/models/tournament_model_spec.rb
434
+ - spec/lib/rating_chgk_v2/models/venue_model_spec.rb
435
+ - spec/lib/rating_chgk_v2/rest/authentication_token_spec.rb
436
+ - spec/lib/rating_chgk_v2/rest/countries_spec.rb
437
+ - spec/lib/rating_chgk_v2/rest/players_spec.rb
438
+ - spec/lib/rating_chgk_v2/rest/regions_spec.rb
439
+ - spec/lib/rating_chgk_v2/rest/releases_spec.rb
440
+ - spec/lib/rating_chgk_v2/rest/seasons_spec.rb
441
+ - spec/lib/rating_chgk_v2/rest/teams_spec.rb
442
+ - spec/lib/rating_chgk_v2/rest/tournament_flags_spec.rb
443
+ - spec/lib/rating_chgk_v2/rest/tournament_synch_appeals_spec.rb
444
+ - spec/lib/rating_chgk_v2/rest/tournament_synch_controversials_spec.rb
445
+ - spec/lib/rating_chgk_v2/rest/tournament_synch_requests_spec.rb
446
+ - spec/lib/rating_chgk_v2/rest/tournament_types_spec.rb
447
+ - spec/lib/rating_chgk_v2/rest/tournaments_spec.rb
448
+ - spec/lib/rating_chgk_v2/rest/towns_spec.rb
449
+ - spec/lib/rating_chgk_v2/rest/venue_types_spec.rb
450
+ - spec/lib/rating_chgk_v2/rest/venues_spec.rb
451
+ - spec/lib/rating_chgk_v2_spec.rb
452
+ - spec/spec_helper.rb
453
+ - spec/support/shared/paginated.rb
454
+ - spec/support/test_client.rb
455
+ - spec/support/vcr.rb