ruby-lol 0.9.9 → 0.9.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +33 -0
- data/lib/lol/client.rb +5 -0
- data/lib/lol/league_request.rb +1 -1
- data/lib/lol/request.rb +1 -2
- data/lib/lol/static_request.rb +66 -0
- data/lib/lol/version.rb +1 -1
- data/spec/fixtures/v1/get-champion-by-id.json +952 -0
- data/spec/fixtures/v1/get-champion.json +708 -0
- data/spec/fixtures/v1/get-item-by-id.json +5 -0
- data/spec/fixtures/v1/get-item.json +982 -0
- data/spec/fixtures/v1/get-mastery-by-id.json +9 -0
- data/spec/fixtures/v1/get-mastery.json +1359 -0
- data/spec/fixtures/v1/get-realm.json +18 -0
- data/spec/fixtures/v1/get-rune-by-id.json +22 -0
- data/spec/fixtures/v1/get-rune.json +6465 -0
- data/spec/fixtures/v1/get-summoner-spell-by-id.json +64 -0
- data/spec/fixtures/v1/get-summoner-spell.json +657 -0
- data/spec/fixtures/v1.1/get-champion.json +1512 -1
- data/spec/fixtures/v1.2/get-ranked_stats.json +1448 -1
- data/spec/fixtures/v1.2/get-stats.json +115 -1
- data/spec/fixtures/v1.3/get-game.json +1040 -1
- data/spec/fixtures/v1.3/get-summoner-by-name.json +16 -1
- data/spec/fixtures/v1.3/get-summoner-masteries.json +2316 -1
- data/spec/fixtures/v1.3/get-summoner-name.json +4 -1
- data/spec/fixtures/v1.3/get-summoner-runes.json +6374 -1
- data/spec/fixtures/v1.3/get-summoner.json +16 -1
- data/spec/lol/client_spec.rb +12 -0
- data/spec/lol/request_spec.rb +0 -9
- data/spec/lol/static_request_spec.rb +93 -0
- metadata +27 -2
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"css": "0.152.55",
|
3
|
+
"dd": "4.1.13",
|
4
|
+
"l": "en_US",
|
5
|
+
"n": {
|
6
|
+
"item": "4.1.13",
|
7
|
+
"rune": "4.1.13",
|
8
|
+
"mastery": "4.1.2",
|
9
|
+
"summoner": "4.1.13",
|
10
|
+
"champion": "4.1.13",
|
11
|
+
"profileicon": "4.1.2",
|
12
|
+
"language": "3.14.41"
|
13
|
+
},
|
14
|
+
"profileiconmax": 28,
|
15
|
+
"v": "4.1.13",
|
16
|
+
"lg": "0.152.55",
|
17
|
+
"cdn": "http://ddragon.leagueoflegends.com/cdn"
|
18
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"name": "Greater Quintessence of Studio Rumble",
|
3
|
+
"description": "+1.5% movement speed",
|
4
|
+
"image": {
|
5
|
+
"full": "8035.png",
|
6
|
+
"sprite": "rune0.png",
|
7
|
+
"group": "rune",
|
8
|
+
"x": 0,
|
9
|
+
"y": 384,
|
10
|
+
"w": 48,
|
11
|
+
"h": 48
|
12
|
+
},
|
13
|
+
"stats": {
|
14
|
+
"PercentMovementSpeedMod": 0.015
|
15
|
+
},
|
16
|
+
"tags": [
|
17
|
+
"utility",
|
18
|
+
"percent",
|
19
|
+
"quintessence"
|
20
|
+
],
|
21
|
+
"colloq": ";"
|
22
|
+
}
|