taric 1.0.0.pre.alpha.1 → 1.0.0.pre.alpha.2
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 +10 -10
- data/lib/taric/operation/champion.rb +1 -2
- data/lib/taric/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: cbddd837a48f9422c011cb70394ccedc4830cb8f
|
|
4
|
+
data.tar.gz: 08ba73d7dc772703972336cac487b22e214daf13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f8b9f42ab88163772a439b7ae23a3619595f8e73e8afa3f0698c5ed837638baa533b66d4e8f6a85392077d4b0283177307b8848566e4b49be1b74afab4a2783
|
|
7
|
+
data.tar.gz: ee133795fbee34886ce9922419839d52b8201f3437e211eafc7911885c8f40828b360b8bf68e85107fa4517a6aea4e1564796ef718069835044b9e67f5ac13fc
|
data/README.md
CHANGED
|
@@ -38,27 +38,27 @@ Or install it yourself as:
|
|
|
38
38
|
|
|
39
39
|
> "What did I see upon the mountain? Rocks. Lots of rocks."
|
|
40
40
|
|
|
41
|
-
- [x]
|
|
42
|
-
- [ ] CHAMPION-V3
|
|
43
|
-
- [x] ~~CHAMPIONMASTERY~~ replaced by CHAMPION-MASTERY-V3
|
|
41
|
+
- [x] CHAMPION-V3
|
|
44
42
|
- [x] CHAMPION-MASTERY-V3
|
|
43
|
+
- [x] LEAGUE-V2.5
|
|
44
|
+
- [ ] LOL-STATUS-V3
|
|
45
|
+
- [ ] MASTERIES-V3
|
|
46
|
+
- [ ] RUNES-V3
|
|
47
|
+
- [ ] SPECTATOR-V3
|
|
48
|
+
- [ ] STATIC-DATA-V3
|
|
49
|
+
- [x] SUMMONER-V3
|
|
45
50
|
- [x] ~~CURRENT-GAME-V1.0~~ replaced by SPECTATOR-V3
|
|
46
51
|
- [x] ~~FEATURED-GAMES-V1.0~~ replaced by SPECTATOR-V3
|
|
47
52
|
- [x] ~~GAME-V1.3~~ replaced by MATCH-V3
|
|
48
|
-
- [x] LEAGUE-V2.5
|
|
49
53
|
- [x] ~~LOL-STATIC-DATA-V1.2~~ replaced by STATIC-DATA-V3
|
|
50
54
|
- [x] ~~LOL-STATUS-V1.0~~ replaced by LOL-STATUS-V3
|
|
51
|
-
- [ ] LOL-STATUS-V3
|
|
52
|
-
- [ ] MASTERIES-V3
|
|
53
55
|
- [x] ~~MATCH-V2.2~~ replaced by MATCH-V3
|
|
54
56
|
- [x] ~~MATCHLIST-V2.2~~ replaced by MATCH-V3
|
|
55
57
|
- [x] ~~RUNES-MASTERIES-V1.4~~ replaced by RUNES-V3 AND MASTERIES-V3
|
|
56
|
-
- [
|
|
57
|
-
- [
|
|
58
|
-
- [ ] STATIC-DATA-V3
|
|
58
|
+
- [x] ~~CHAMPION-V1.2~~ replaced by CHAMPION-V3
|
|
59
|
+
- [x] ~~CHAMPIONMASTERY~~ replaced by CHAMPION-MASTERY-V3
|
|
59
60
|
- [x] ~~STATS-V1.3~~ no replacement
|
|
60
61
|
- [x] ~~SUMMONER-V1.4~~ replaced by SUMMONER-V3
|
|
61
|
-
- [x] SUMMONER-V3
|
|
62
62
|
|
|
63
63
|
## Configuration
|
|
64
64
|
|
|
@@ -5,8 +5,7 @@ module Taric
|
|
|
5
5
|
module Champion
|
|
6
6
|
include Taric::Operation::Base
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
CHAMPION_BASE_URL = "#{BASE_URL_FN.(CHAMPION_VERSION)}/champion"
|
|
8
|
+
CHAMPION_BASE_URL = "https://{host}/lol/platform/v3/champions"
|
|
10
9
|
|
|
11
10
|
CHAMPIONS = EndpointTemplate.new(template_url: "#{CHAMPION_BASE_URL}{?api_key,freeToPlay}")
|
|
12
11
|
CHAMPION_BY_ID = EndpointTemplate.new(template_url: "#{CHAMPION_BASE_URL}/{id}{?api_key}")
|
data/lib/taric/version.rb
CHANGED