ruby-lol 0.11.1 → 0.11.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/lol/client.rb +5 -0
- data/lib/lol/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d17056e767536e0f3bfbe371ce621f7191732d01
|
4
|
+
data.tar.gz: fb0af2d30bb2294f97bc9308996f1bb5bf3f7e55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a69f39df570f284ccb11f4267195e4b8c321b6cae0709e9aea8eb01033eefb933a09352f9a2b2eeb3f6ad47de6844517843a066d04aaa43b7bdb022ec66b85b
|
7
|
+
data.tar.gz: d839651ec84a9d04d5a696ba1834ac99195c68a22553f4300fac54602744a375fce466584dad40f6c6b6ec0fd60096dd076b4dcd9530145f3625d5ff5c29d6ac
|
data/lib/lol/client.rb
CHANGED
@@ -28,6 +28,11 @@ module Lol
|
|
28
28
|
@match_request ||= MatchRequest.new(api_key, region, cache_store)
|
29
29
|
end
|
30
30
|
|
31
|
+
# @return [MatchHistoryRequest]
|
32
|
+
def match_history
|
33
|
+
@match_history_request ||= MatchHistoryRequest.new(api_key, region, cache_store)
|
34
|
+
end
|
35
|
+
|
31
36
|
# @return [StatsRequest]
|
32
37
|
def stats
|
33
38
|
@stats_request ||= StatsRequest.new(api_key, region, cache_store)
|
data/lib/lol/version.rb
CHANGED