srl-api 0.2.0 → 0.3.0
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 +4 -4
- data/README.md +1 -1
- data/lib/srl.rb +1 -1
- data/lib/srl/api.rb +0 -1
- data/test/wee.rb +3 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4da23cb31feb7083ce77cb3afd79a93154f3b30
|
4
|
+
data.tar.gz: e45f36d4d1fc5324913bdad7f0517387de00d83a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47b4aa6679595154f2593e2b79c6590052473658efd2c623a9670d15541ef6dcdb7bfc052ac9a6e1ee456b3ba2c33eb77a5f74329bfb770671bfe17c3e88bc55
|
7
|
+
data.tar.gz: c09a2ed104465fd14c8de71aef974545b7de6543cd94e058a785bb5e8b1af6cc14d3e8ae8d2e0b05529fa2f3fa58ab15a803be1055cb844736a5e261c2d9e29a
|
data/README.md
CHANGED
@@ -21,7 +21,7 @@ Short version:
|
|
21
21
|
|
22
22
|
require 'srl'
|
23
23
|
|
24
|
-
puts SRL.past_races(player: 'Artea', game: 'ffhacks').size # => Some number probably in the low 20s.
|
24
|
+
puts SRL.past_races(player: 'Artea', game: 'ffhacks').records.size # => Some number probably in the low 20s.
|
25
25
|
|
26
26
|
The `examples/` directory should provide you with an adequate amount
|
27
27
|
of usable, real-world examples.
|
data/lib/srl.rb
CHANGED
data/lib/srl/api.rb
CHANGED
data/test/wee.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: srl-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian 'Artea' Edmonds
|
@@ -26,6 +26,7 @@ files:
|
|
26
26
|
- lib/srl/typedefs.rb
|
27
27
|
- lib/srl/unmarshalable.rb
|
28
28
|
- lib/srl/utils.rb
|
29
|
+
- test/wee.rb
|
29
30
|
homepage: https://github.com/bedmonds/srl-api/
|
30
31
|
licenses:
|
31
32
|
- MIT
|
@@ -52,4 +53,5 @@ rubygems_version: 2.6.11
|
|
52
53
|
signing_key:
|
53
54
|
specification_version: 4
|
54
55
|
summary: Ruby Client for the SpeedRunsLive.com API
|
55
|
-
test_files:
|
56
|
+
test_files:
|
57
|
+
- test/wee.rb
|