taric 1.0.0.pre.beta.0 → 1.0.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/.travis.yml +4 -3
- data/README.md +6 -7
- data/lib/taric/client.rb +14 -6
- data/lib/taric/operation/champion.rb +4 -3
- data/lib/taric/operation/champion_mastery.rb +3 -3
- data/lib/taric/operation/league.rb +30 -32
- data/lib/taric/operation/lol_static_data.rb +15 -14
- data/lib/taric/operation/lol_status.rb +2 -1
- data/lib/taric/operation/masteries.rb +2 -1
- data/lib/taric/operation/match.rb +1 -0
- data/lib/taric/operation/runes.rb +2 -1
- data/lib/taric/operation/spectator.rb +1 -0
- data/lib/taric/operation/summoner.rb +5 -4
- data/lib/taric/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1f94f1069841bb455489c42bcca6d841e5ffc8f
|
4
|
+
data.tar.gz: cf3eaa6228e798e76e1ceb7bea026339161a2b19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eafb2cdb0de729cd167c407829431106b5673ce2bf01658091d954c7d78ddcb6e1e41b3b8cad59e3bb92bb6e375003072dca6f6fd8959ac6baa5d3979c11f6ba
|
7
|
+
data.tar.gz: ddc554cf1f823a1e409529db2f54ad4d07b03c4ef908a4699caeb72768d231cedd9a203680d47310748be25d29aa30860262e31141a523e9d8b6d650e3c24553
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -40,7 +40,7 @@ Or install it yourself as:
|
|
40
40
|
|
41
41
|
- [x] CHAMPION-V3
|
42
42
|
- [x] CHAMPION-MASTERY-V3
|
43
|
-
- [x] LEAGUE-
|
43
|
+
- [x] LEAGUE-V3
|
44
44
|
- [x] LOL-STATUS-V3
|
45
45
|
- [x] MASTERIES-V3
|
46
46
|
- [x] MATCH-V3
|
@@ -51,6 +51,7 @@ Or install it yourself as:
|
|
51
51
|
- [x] ~~CURRENT-GAME-V1.0~~ replaced by SPECTATOR-V3
|
52
52
|
- [x] ~~FEATURED-GAMES-V1.0~~ replaced by SPECTATOR-V3
|
53
53
|
- [x] ~~GAME-V1.3~~ replaced by MATCH-V3
|
54
|
+
- [x] ~~LEAGUE-V2.5~~ replaced by LEAGUE-V3
|
54
55
|
- [x] ~~LOL-STATIC-DATA-V1.2~~ replaced by STATIC-DATA-V3
|
55
56
|
- [x] ~~LOL-STATUS-V1.0~~ replaced by LOL-STATUS-V3
|
56
57
|
- [x] ~~MATCH-V2.2~~ replaced by MATCH-V3
|
@@ -127,25 +128,23 @@ responses = parallel_client.execute!
|
|
127
128
|
### Champion
|
128
129
|
|
129
130
|
```ruby
|
130
|
-
# https://developer.riotgames.com/api/methods#!/958/3289
|
131
131
|
client.champion(id: )
|
132
|
+
```
|
132
133
|
|
133
|
-
|
134
|
+
```ruby
|
134
135
|
client.champions
|
135
136
|
```
|
136
137
|
|
137
138
|
### Current Game
|
138
139
|
|
139
140
|
```ruby
|
140
|
-
|
141
|
-
client.current_game(summoner_id: )
|
141
|
+
response = client.current_game(summoner_id: 21066)
|
142
142
|
```
|
143
143
|
|
144
144
|
### Featured Games
|
145
145
|
|
146
146
|
```ruby
|
147
|
-
|
148
|
-
client.featured_games
|
147
|
+
response = client.featured_games
|
149
148
|
```
|
150
149
|
|
151
150
|
TODO: finish writing this crap :p
|
data/lib/taric/client.rb
CHANGED
@@ -57,8 +57,8 @@ module Taric
|
|
57
57
|
# @param api_key [String] rito api key
|
58
58
|
# @param region [Symbol] key for region
|
59
59
|
# @return [Hash] of api_key and region info
|
60
|
-
def operation_values(
|
61
|
-
|
60
|
+
def operation_values(region:)
|
61
|
+
REGION_ENDPOINT_INFO[region]
|
62
62
|
end
|
63
63
|
memoize :operation_values
|
64
64
|
|
@@ -72,8 +72,8 @@ module Taric
|
|
72
72
|
#
|
73
73
|
# @example
|
74
74
|
# Taric::Client.expand_template(api_key: 'ritokey', region: :na, operation: Taric::Operation::Champion::CHAMPIONS)
|
75
|
-
def expand_template(
|
76
|
-
operation.expand(options.merge(operation_values(
|
75
|
+
def expand_template(region:, operation:, options: {})
|
76
|
+
operation.expand(options.merge(operation_values(region: region)))
|
77
77
|
end
|
78
78
|
end
|
79
79
|
|
@@ -81,7 +81,15 @@ module Taric
|
|
81
81
|
def response_for(operation, options = {})
|
82
82
|
-> (method, url, body, headers) {
|
83
83
|
API_CALL.(method, url, body, headers, @config.requestor.(@conn), @config.response_handler)
|
84
|
-
}.(
|
84
|
+
}.(
|
85
|
+
operation.method,
|
86
|
+
self.class.expand_template(
|
87
|
+
region: @region,
|
88
|
+
operation: operation.template_url,
|
89
|
+
options: options
|
90
|
+
),
|
91
|
+
operation.body,
|
92
|
+
operation.headers.merge('X-Riot-Token' => @api_key))
|
85
93
|
end
|
86
94
|
|
87
95
|
class ParallelClient
|
@@ -108,7 +116,7 @@ module Taric
|
|
108
116
|
private
|
109
117
|
|
110
118
|
def response_for(operation, options = {})
|
111
|
-
@operations << {url: @parent.class.expand_template(
|
119
|
+
@operations << {url: @parent.class.expand_template(region: @parent.region, operation: operation.template_url, options: options), method: operation.method, body: operation.body, headers: operation.headers}
|
112
120
|
self
|
113
121
|
end
|
114
122
|
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require_relative 'base'
|
2
3
|
require_relative 'endpoint_template'
|
3
4
|
module Taric
|
@@ -5,10 +6,10 @@ module Taric
|
|
5
6
|
module Champion
|
6
7
|
include Taric::Operation::Base
|
7
8
|
|
8
|
-
CHAMPION_BASE_URL =
|
9
|
+
CHAMPION_BASE_URL = 'https://{host}/lol/platform/v3/champions'
|
9
10
|
|
10
|
-
CHAMPIONS = EndpointTemplate.new(template_url: "#{CHAMPION_BASE_URL}{?
|
11
|
-
CHAMPION_BY_ID = EndpointTemplate.new(template_url: "#{CHAMPION_BASE_URL}/{id}
|
11
|
+
CHAMPIONS = EndpointTemplate.new(template_url: "#{CHAMPION_BASE_URL}{?freeToPlay}")
|
12
|
+
CHAMPION_BY_ID = EndpointTemplate.new(template_url: "#{CHAMPION_BASE_URL}/{id}")
|
12
13
|
|
13
14
|
# Returns champion data.
|
14
15
|
#
|
@@ -5,9 +5,9 @@ module Taric
|
|
5
5
|
include Taric::Operation::Base
|
6
6
|
|
7
7
|
BASE_MASTERY_URL = "https://{host}/lol/champion-mastery/v3"
|
8
|
-
MASTERY_ALL_CHAMPIONS = EndpointTemplate.new(template_url: "#{BASE_MASTERY_URL}/champion-masteries/by-summoner/{summonerId}
|
9
|
-
MASTERY_BY_CHAMPION_ID = EndpointTemplate.new(template_url: "#{BASE_MASTERY_URL}/champion-masteries/by-summoner/{summonerId}/by-champion/{championId}
|
10
|
-
MASTERY_SCORE = EndpointTemplate.new(template_url: "#{BASE_MASTERY_URL}/scores/by-summoner/{summonerId}
|
8
|
+
MASTERY_ALL_CHAMPIONS = EndpointTemplate.new(template_url: "#{BASE_MASTERY_URL}/champion-masteries/by-summoner/{summonerId}")
|
9
|
+
MASTERY_BY_CHAMPION_ID = EndpointTemplate.new(template_url: "#{BASE_MASTERY_URL}/champion-masteries/by-summoner/{summonerId}/by-champion/{championId}")
|
10
|
+
MASTERY_SCORE = EndpointTemplate.new(template_url: "#{BASE_MASTERY_URL}/scores/by-summoner/{summonerId}")
|
11
11
|
|
12
12
|
def champion_mastery(summoner_id: , champion_id:)
|
13
13
|
response_for MASTERY_BY_CHAMPION_ID, {summonerId: summoner_id, championId: champion_id}
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require_relative 'base'
|
2
3
|
require_relative 'endpoint_template'
|
3
4
|
module Taric
|
@@ -5,69 +6,66 @@ module Taric
|
|
5
6
|
module League
|
6
7
|
include Taric::Operation::Base
|
7
8
|
|
8
|
-
|
9
|
-
|
9
|
+
LEAGUES_BY_SUMMONER_ID = EndpointTemplate.new(template_url: 'https://{host}/lol/league/v3/leagues/by-summoner/{summonerId}')
|
10
|
+
POSITION_BY_SUMMONER_ID = EndpointTemplate.new(template_url: 'https://{host}/lol/league/v3/positions/by-summoner/{summonerId}')
|
11
|
+
CHALLENGER = EndpointTemplate.new(template_url: 'https://{host}/lol/league/v3/challengerleagues/by-queue/{queue}')
|
12
|
+
MASTER = EndpointTemplate.new(template_url: 'https://{host}/lol/league/v3/masterleagues/by-queue/{queue}')
|
10
13
|
|
11
|
-
|
12
|
-
ENTRIES_BY_SUMMONER_IDS = EndpointTemplate.new(template_url: "#{BASE_LEAGUE_URL}/by-summoner/{summonerIds}/entry{?api_key}")
|
13
|
-
CHALLENGER = EndpointTemplate.new(template_url: "#{BASE_LEAGUE_URL}/challenger{?api_key,type}")
|
14
|
-
MASTER = EndpointTemplate.new(template_url: "#{BASE_LEAGUE_URL}/master{?api_key,type}")
|
15
|
-
|
16
|
-
CHALLENGER_QUEUE_TYPES = ['RANKED_FLEX_SR'.freeze, 'RANKED_FLEX_TT'.freeze, 'RANKED_SOLO_5x5'.freeze, 'RANKED_TEAM_3x3'.freeze, 'RANKED_TEAM_5x5'.freeze].freeze
|
14
|
+
CHALLENGER_QUEUE_TYPES = %w(RANKED_FLEX_SR, RANKED_FLEX_TT, RANKED_SOLO_5x5).freeze
|
17
15
|
MASTER_QUEUE_TYPES = CHALLENGER_QUEUE_TYPES
|
18
16
|
|
19
|
-
# Leagues by summoner
|
17
|
+
# Leagues by summoner ID.
|
20
18
|
#
|
21
|
-
# @see https://developer.riotgames.com/api
|
22
|
-
# @param
|
23
|
-
# @return [Hash] leagues keyed by summoner
|
19
|
+
# @see https://developer.riotgames.com/api-methods/#league-v3/GET_getAllLeaguesForSummoner
|
20
|
+
# @param summoner_id [String] player's summoner ID
|
21
|
+
# @return [Hash] leagues keyed by summoner ID
|
24
22
|
#
|
25
23
|
# @example
|
26
24
|
# result = client.leagues_by_summoner_ids(summoner_ids: '21066,38877656')
|
27
25
|
# leagues = result['21066']
|
28
26
|
# entries = first_summoner_leagues.first['entries']
|
29
|
-
def
|
30
|
-
response_for
|
27
|
+
def leagues(summoner_id:)
|
28
|
+
response_for LEAGUES_BY_SUMMONER_ID, {summonerId: summoner_id}
|
31
29
|
end
|
32
30
|
|
33
31
|
# League entries by summoner IDs.
|
34
32
|
#
|
35
|
-
# @see https://developer.riotgames.com/api
|
33
|
+
# @see https://developer.riotgames.com/api-methods/#league-v3/GET_getAllLeaguePositionsForSummoner
|
36
34
|
# @param summoner_ids summoner_ids [String] comma separated list of summoner ids
|
37
35
|
# @return [Hash] league entries keyed by summoner_ids
|
38
36
|
#
|
39
37
|
# @example
|
40
|
-
# result = client.
|
41
|
-
#
|
42
|
-
#
|
43
|
-
#
|
44
|
-
#
|
45
|
-
def
|
46
|
-
response_for
|
38
|
+
# result = client.league_positions(summoner_id: '21066').body
|
39
|
+
# mapped_by_queue = result.map{ |h| [h['queueType'], h] }.to_h # {'RANKED_SOLO_5x5' => {...}}
|
40
|
+
# solo_queue = mapped_by_queue['RANKED_SOLO_5x5']
|
41
|
+
# wins = solo_queue['wins']
|
42
|
+
# losses = solo_queue['losses']
|
43
|
+
def league_positions(summoner_id:)
|
44
|
+
response_for POSITION_BY_SUMMONER_ID, {summonerId: summoner_id}
|
47
45
|
end
|
48
46
|
|
49
47
|
# Challenger league data for queue type.
|
50
48
|
#
|
51
|
-
# @param type [String] required, must be RANKED_FLEX_SR, RANKED_FLEX_TT,
|
49
|
+
# @param type [String] required, must be RANKED_FLEX_SR, RANKED_FLEX_TT, or RANKED_SOLO_5x5
|
52
50
|
# @return [Hash] challenger league data
|
53
|
-
# @see https://developer.riotgames.com/api
|
54
|
-
def
|
51
|
+
# @see https://developer.riotgames.com/api-methods/#league-v3/GET_getChallengerLeague
|
52
|
+
def challenger_leagues(queue: )
|
55
53
|
raise ArgumentError,
|
56
|
-
"Invalid argument: #{
|
54
|
+
"Invalid argument: #{queue}, arg must be in #{CHALLENGER_QUEUE_TYPES}" unless CHALLENGER_QUEUE_TYPES.include?(queue)
|
57
55
|
|
58
|
-
response_for CHALLENGER, {
|
56
|
+
response_for CHALLENGER, {queue: queue}
|
59
57
|
end
|
60
58
|
|
61
59
|
# Master league data for queue type.
|
62
60
|
#
|
63
|
-
# @param type [String] required, must be RANKED_FLEX_SR, RANKED_FLEX_TT,
|
61
|
+
# @param type [String] required, must be RANKED_FLEX_SR, RANKED_FLEX_TT, or RANKED_SOLO_5x5
|
64
62
|
# @return [Hash] master league data
|
65
|
-
# https://developer.riotgames.com/api
|
66
|
-
def
|
63
|
+
# @see https://developer.riotgames.com/api-methods/#league-v3/GET_getMasterLeague
|
64
|
+
def master_leagues(queue: )
|
67
65
|
raise ArgumentError,
|
68
|
-
"Invalid argument: #{
|
66
|
+
"Invalid argument: #{queue}, arg must be in #{MASTER_QUEUE_TYPES}" unless MASTER_QUEUE_TYPES.include?(queue)
|
69
67
|
|
70
|
-
response_for MASTER, {
|
68
|
+
response_for MASTER, {queue: queue}
|
71
69
|
end
|
72
70
|
end
|
73
71
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require_relative 'base'
|
2
3
|
require_relative 'endpoint_template'
|
3
4
|
module Taric
|
@@ -7,22 +8,22 @@ module Taric
|
|
7
8
|
|
8
9
|
BASE_STATIC_URL = "https://{host}/lol/static-data/v3"
|
9
10
|
|
10
|
-
STATIC_CHAMPIONS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/champions{?
|
11
|
-
STATIC_CHAMPION = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/champions/{id}{?
|
12
|
-
STATIC_ITEMS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/items{?
|
13
|
-
STATIC_ITEM = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/items/{id}{?
|
14
|
-
STATIC_LANGUAGE_STRINGS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/language-strings{
|
11
|
+
STATIC_CHAMPIONS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/champions{?dataById,champListData,locale,version}")
|
12
|
+
STATIC_CHAMPION = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/champions/{id}{?champData,locale,version}")
|
13
|
+
STATIC_ITEMS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/items{?itemListData,locale,version}")
|
14
|
+
STATIC_ITEM = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/items/{id}{?itemData,locale,version}")
|
15
|
+
STATIC_LANGUAGE_STRINGS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/language-strings{locale,version}")
|
15
16
|
STATIC_LANGUAGES = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/languages{?api_key}")
|
16
|
-
STATIC_MAP = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/maps{
|
17
|
-
STATIC_MASTERIES = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/masteries{
|
18
|
-
STATIC_MASTERY = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/masteries/{id}{
|
19
|
-
STATIC_PROFILE_ICONS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/profile-icons{
|
17
|
+
STATIC_MAP = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/maps{locale,version}")
|
18
|
+
STATIC_MASTERIES = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/masteries{masteryListData,locale,version}")
|
19
|
+
STATIC_MASTERY = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/masteries/{id}{masteryData,locale,version}")
|
20
|
+
STATIC_PROFILE_ICONS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/profile-icons{locale,version}")
|
20
21
|
STATIC_REALM = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/realms{?api_key}")
|
21
|
-
STATIC_RUNES = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/runes{
|
22
|
-
STATIC_RUNE = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/runes/{id}{
|
23
|
-
STATIC_SUMMONER_SPELLS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/summoner-spells{
|
24
|
-
STATIC_SUMMONER_SPELL = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/summoner-spells/{id}{
|
25
|
-
STATIC_VERSIONS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/versions
|
22
|
+
STATIC_RUNES = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/runes{runeListData,locale,version}")
|
23
|
+
STATIC_RUNE = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/runes/{id}{runeData,locale,version}")
|
24
|
+
STATIC_SUMMONER_SPELLS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/summoner-spells{spellData,locale,version}")
|
25
|
+
STATIC_SUMMONER_SPELL = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/summoner-spells/{id}{spellData,locale,version}")
|
26
|
+
STATIC_VERSIONS = EndpointTemplate.new(template_url: "#{BASE_STATIC_URL}/versions")
|
26
27
|
|
27
28
|
CHAMP_DATA_OPTIONS = [
|
28
29
|
'all'.freeze,
|
@@ -1,8 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require_relative 'endpoint_template'
|
2
3
|
module Taric
|
3
4
|
module Operation
|
4
5
|
module LolStatus
|
5
|
-
SHARD = EndpointTemplate.new(template_url: 'https://{host}/lol/status/v3/shard-data
|
6
|
+
SHARD = EndpointTemplate.new(template_url: 'https://{host}/lol/status/v3/shard-data')
|
6
7
|
|
7
8
|
# Region metadata, implicitly uses endpoint host to determine which region.
|
8
9
|
#
|
@@ -1,9 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require_relative 'endpoint_template'
|
2
3
|
module Taric
|
3
4
|
module Operation
|
4
5
|
module Masteries
|
5
6
|
|
6
|
-
MASTERIES = EndpointTemplate.new(template_url:
|
7
|
+
MASTERIES = EndpointTemplate.new(template_url: 'https://{host}/lol/platform/v3/masteries/by-summoner/{summonerId}')
|
7
8
|
|
8
9
|
# Masteries by summoner ID.
|
9
10
|
#
|
@@ -1,9 +1,10 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require_relative 'endpoint_template'
|
2
3
|
module Taric
|
3
4
|
module Operation
|
4
5
|
module Runes
|
5
6
|
|
6
|
-
RUNES_V3 = EndpointTemplate.new(template_url:
|
7
|
+
RUNES_V3 = EndpointTemplate.new(template_url: 'https://{host}/lol/platform/v3/runes/by-summoner/{summonerId}')
|
7
8
|
|
8
9
|
# Runes by summoner ID.
|
9
10
|
#
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
require_relative 'base'
|
2
3
|
require_relative 'endpoint_template'
|
3
4
|
module Taric
|
@@ -5,10 +6,10 @@ module Taric
|
|
5
6
|
module Summoner
|
6
7
|
include Taric::Operation::Base
|
7
8
|
|
8
|
-
BASE_SUMMONER_URL =
|
9
|
-
SUMMONER_BY_ID = EndpointTemplate.new(template_url: "#{BASE_SUMMONER_URL}/{summonerId}
|
10
|
-
SUMMONER_BY_NAME = EndpointTemplate.new(template_url: "#{BASE_SUMMONER_URL}/by-name/{summonerName}
|
11
|
-
SUMMONER_BY_ACCOUNT_ID = EndpointTemplate.new(template_url: "#{BASE_SUMMONER_URL}/by-account/{accountId}
|
9
|
+
BASE_SUMMONER_URL = 'https://{host}/lol/summoner/v3/summoners'
|
10
|
+
SUMMONER_BY_ID = EndpointTemplate.new(template_url: "#{BASE_SUMMONER_URL}/{summonerId}")
|
11
|
+
SUMMONER_BY_NAME = EndpointTemplate.new(template_url: "#{BASE_SUMMONER_URL}/by-name/{summonerName}")
|
12
|
+
SUMMONER_BY_ACCOUNT_ID = EndpointTemplate.new(template_url: "#{BASE_SUMMONER_URL}/by-account/{accountId}")
|
12
13
|
|
13
14
|
def summoner_by_id(summoner_id:)
|
14
15
|
response_for SUMMONER_BY_ID, {summonerId: summoner_id}
|
data/lib/taric/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: taric
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joseph Yi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -253,9 +253,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
253
253
|
version: 2.1.0
|
254
254
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
255
255
|
requirements:
|
256
|
-
- - "
|
256
|
+
- - ">="
|
257
257
|
- !ruby/object:Gem::Version
|
258
|
-
version:
|
258
|
+
version: '0'
|
259
259
|
requirements: []
|
260
260
|
rubyforge_project:
|
261
261
|
rubygems_version: 2.5.1
|