riot_games_api 0.0.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 +7 -0
- data/.gitignore +18 -0
- data/.rubocop.yml +28 -0
- data/.travis.yml +8 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +192 -0
- data/Rakefile +5 -0
- data/lib/riot_games_api/lol/client.rb +57 -0
- data/lib/riot_games_api/lol/constant/champions.rb +125 -0
- data/lib/riot_games_api/lol/constant/items.rb +186 -0
- data/lib/riot_games_api/lol/model/champion/champion.rb +18 -0
- data/lib/riot_games_api/lol/model/champion.rb +10 -0
- data/lib/riot_games_api/lol/model/corecion/time.rb +16 -0
- data/lib/riot_games_api/lol/model/game/game.rb +27 -0
- data/lib/riot_games_api/lol/model/game/player.rb +15 -0
- data/lib/riot_games_api/lol/model/game/raw_stats.rb +88 -0
- data/lib/riot_games_api/lol/model/game/recent_game.rb +14 -0
- data/lib/riot_games_api/lol/model/game.rb +13 -0
- data/lib/riot_games_api/lol/model/league/league.rb +17 -0
- data/lib/riot_games_api/lol/model/league/league_item.rb +35 -0
- data/lib/riot_games_api/lol/model/league/mini_series.rb +17 -0
- data/lib/riot_games_api/lol/model/league.rb +12 -0
- data/lib/riot_games_api/lol/model/static_data/basic_data.rb +35 -0
- data/lib/riot_games_api/lol/model/static_data/basic_data_stats.rb +77 -0
- data/lib/riot_games_api/lol/model/static_data/block.rb +14 -0
- data/lib/riot_games_api/lol/model/static_data/block_item.rb +14 -0
- data/lib/riot_games_api/lol/model/static_data/champion.rb +29 -0
- data/lib/riot_games_api/lol/model/static_data/champion_list.rb +17 -0
- data/lib/riot_games_api/lol/model/static_data/champion_list_data_by_id.rb +11 -0
- data/lib/riot_games_api/lol/model/static_data/champion_spell.rb +32 -0
- data/lib/riot_games_api/lol/model/static_data/gold.rb +16 -0
- data/lib/riot_games_api/lol/model/static_data/group.rb +14 -0
- data/lib/riot_games_api/lol/model/static_data/image.rb +19 -0
- data/lib/riot_games_api/lol/model/static_data/info.rb +16 -0
- data/lib/riot_games_api/lol/model/static_data/item.rb +35 -0
- data/lib/riot_games_api/lol/model/static_data/item_list.rb +18 -0
- data/lib/riot_games_api/lol/model/static_data/item_tree.rb +14 -0
- data/lib/riot_games_api/lol/model/static_data/level_tip.rb +14 -0
- data/lib/riot_games_api/lol/model/static_data/mastery.rb +19 -0
- data/lib/riot_games_api/lol/model/static_data/mastery_list.rb +16 -0
- data/lib/riot_games_api/lol/model/static_data/mastery_tree.rb +15 -0
- data/lib/riot_games_api/lol/model/static_data/mastery_tree_item.rb +14 -0
- data/lib/riot_games_api/lol/model/static_data/mastery_tree_list.rb +13 -0
- data/lib/riot_games_api/lol/model/static_data/meta_data.rb +18 -0
- data/lib/riot_games_api/lol/model/static_data/passive.rb +16 -0
- data/lib/riot_games_api/lol/model/static_data/realm.rb +21 -0
- data/lib/riot_games_api/lol/model/static_data/recommended.rb +19 -0
- data/lib/riot_games_api/lol/model/static_data/rune.rb +35 -0
- data/lib/riot_games_api/lol/model/static_data/rune_list.rb +16 -0
- data/lib/riot_games_api/lol/model/static_data/skin.rb +15 -0
- data/lib/riot_games_api/lol/model/static_data/spell_vars.rb +16 -0
- data/lib/riot_games_api/lol/model/static_data/stats.rb +32 -0
- data/lib/riot_games_api/lol/model/static_data/summoner_spell.rb +35 -0
- data/lib/riot_games_api/lol/model/static_data/summoner_spell_list.rb +15 -0
- data/lib/riot_games_api/lol/model/static_data/summoner_spell_list_data_by_id.rb +11 -0
- data/lib/riot_games_api/lol/model/static_data.rb +47 -0
- data/lib/riot_games_api/lol/model/stats/aggregated_stats.rb +68 -0
- data/lib/riot_games_api/lol/model/stats/champion_stats.rb +14 -0
- data/lib/riot_games_api/lol/model/stats/player_stats_summary.rb +17 -0
- data/lib/riot_games_api/lol/model/stats/player_stats_summary_list.rb +14 -0
- data/lib/riot_games_api/lol/model/stats/ranked_stats.rb +15 -0
- data/lib/riot_games_api/lol/model/stats.rb +15 -0
- data/lib/riot_games_api/lol/model/summoner/mastery.rb +14 -0
- data/lib/riot_games_api/lol/model/summoner/mastery_page.rb +16 -0
- data/lib/riot_games_api/lol/model/summoner/mastery_page_list.rb +14 -0
- data/lib/riot_games_api/lol/model/summoner/rune_page.rb +16 -0
- data/lib/riot_games_api/lol/model/summoner/rune_page_list.rb +14 -0
- data/lib/riot_games_api/lol/model/summoner/rune_slot.rb +14 -0
- data/lib/riot_games_api/lol/model/summoner/summoner.rb +17 -0
- data/lib/riot_games_api/lol/model/summoner.rb +16 -0
- data/lib/riot_games_api/lol/model/team/match_history_summary.rb +23 -0
- data/lib/riot_games_api/lol/model/team/message_of_day.rb +15 -0
- data/lib/riot_games_api/lol/model/team/roster.rb +14 -0
- data/lib/riot_games_api/lol/model/team/team.rb +27 -0
- data/lib/riot_games_api/lol/model/team/team_member_info.rb +16 -0
- data/lib/riot_games_api/lol/model/team/team_stat_detail.rb +17 -0
- data/lib/riot_games_api/lol/model/team/team_stat_summary.rb +14 -0
- data/lib/riot_games_api/lol/model/team.rb +16 -0
- data/lib/riot_games_api/lol/model.rb +16 -0
- data/lib/riot_games_api/lol/resource/base.rb +22 -0
- data/lib/riot_games_api/lol/resource/champion.rb +39 -0
- data/lib/riot_games_api/lol/resource/game.rb +23 -0
- data/lib/riot_games_api/lol/resource/league.rb +65 -0
- data/lib/riot_games_api/lol/resource/static_data.rb +91 -0
- data/lib/riot_games_api/lol/resource/stats.rb +28 -0
- data/lib/riot_games_api/lol/resource/summoner.rb +52 -0
- data/lib/riot_games_api/lol/resource/team.rb +34 -0
- data/lib/riot_games_api/lol/resource.rb +15 -0
- data/lib/riot_games_api/version.rb +3 -0
- data/lib/riot_games_api.rb +15 -0
- data/riot_games_api.gemspec +34 -0
- data/spec/lol/resource/champion_spec.rb +27 -0
- data/spec/lol/resource/game_spec.rb +40 -0
- data/spec/lol/resource/league_spec.rb +93 -0
- data/spec/lol/resource/static_data_spec.rb +215 -0
- data/spec/lol/resource/stats_spec.rb +57 -0
- data/spec/lol/resource/summoner_spec.rb +80 -0
- data/spec/lol/resource/team_spec.rb +31 -0
- data/spec/spec_helper.rb +21 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_all/should_first_record_is_Aatrox.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_by_champion_id/should_be_Teemo.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_free/should_be_only_free_champions.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_champinons_is_Talon_in_first_game_record.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_first_fellow_player_s_team_is_blue.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_first_game_is_win.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_record_have_player_model.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_record_have_raw_stats_model.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_records_count_is_10.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_have_summoner_id.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id/should_have_league_item_entries.yml +1497 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id/should_phantoml0ad_is_in_league_which_name_is_Nasus_s_Agents.yml +1497 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id_only_own_entry/should_ojarusang_is_in_series.yml +43 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id_only_own_entry/should_ojarusang_s_tier_is_platinum.yml +43 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id/should_have_league_item_entries.yml +864 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id/should_rascal_jester_is_in_league_which_name_is_Nunu_s_Outriders.yml +864 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id_only_own_entry/should_ffg_practice_is_not_in_series.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id_only_own_entry/should_ffg_practice_tier_is_challenger.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_solo_5v5/should_queue_is_ranked_solo_5v5.yml +1281 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_solo_5v5/should_tier_is_challenger.yml +1281 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_3v3/should_queue_is_ranked_team_3v3.yml +123 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_3v3/should_tier_is_challenger.yml +123 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_5v5/should_queue_is_ranked_team_5v5.yml +61 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_5v5/should_tier_is_challenger.yml +61 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/_realm/should_have_data_cdn_is_cdn_url.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/_realm/should_have_static_data_of_realm.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_inputed_data_version.yml +38011 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_static_data_key_with_champion_name.yml +38011 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_static_data_of_champions.yml +38011 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_true/should_have_static_data_keys_is_champion_id.yml +38000 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_true/should_have_static_data_of_champion.yml +38000 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_by_id/should_have_data_key_is_shaco.yml +151 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_by_id/should_have_static_data_of_champion.yml +151 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_inputed_data_version.yml +2388 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_static_data_of_items.yml +2388 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_static_data_with_item_name.yml +2388 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_by_id/should_have_data_name_is_biscuit.yml +46 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_by_id/should_have_static_data_of_item.yml +46 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_inputed_data_version.yml +240 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_static_data_of_masterys.yml +240 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_static_data_with_mastery_name.yml +240 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_by_id/should_have_data_name_is_sorcery.yml +47 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_by_id/should_have_static_data_of_mastery.yml +47 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_inputed_data_version.yml +733 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_static_data_of_runes.yml +733 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_static_data_with_rune_name.yml +733 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_by_id/should_have_data_name_is_rune_name.yml +45 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_by_id/should_have_static_data_of_rune.yml +45 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_inputed_data_version.yml +156 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_static_data_key_with_summoner_spell_name.yml +156 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_static_data_of_summoner_spell.yml +156 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_true/should_have_static_data_keys_is_sumoner_spell_id.yml +156 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_true/should_have_static_data_of_summoner_spell.yml +156 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_by_id/should_have_data_name_is_teleport.yml +55 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_by_id/should_have_static_data_of_summoner_spell.yml +55 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/latest_season/should_not_found_ranked_stats.yml +57 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/season3/should_have_champion_stats.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/season3/should_have_modify_data_which_unixtime_milliseconds.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/latest_season/should_have_player_stat_summaries.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/latest_season/should_have_summoner_id_inputed.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/season3/should_have_player_stat_summaries.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/season3/should_have_summoner_id_inputed.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_have_key_which_is_summoner_id.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_have_summoner_model.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_summoner_model_have_summoner_level.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_have_key_which_is_summoner_name.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_have_summoner_model.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_summoner_model_have_summoner_level.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_key_which_is_summoner_id.yml +52 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_mastery_page_list_model.yml +52 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_mastery_page_model.yml +52 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_name/should_have_summoner_name.yml +44 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_key_which_is_summoner_id.yml +56 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_list_model.yml +56 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_model.yml +56 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_summoner_id/should_have_focus_me_s_full_id.yml +314 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_summoner_id/should_have_team_model.yml +314 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_team_id/should_have_key_which_is_team_id.yml +165 -0
- data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_team_id/should_have_team_model.yml +165 -0
- metadata +484 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://prod.api.pvp.net/api/lol/static-data/na/v1.2/mastery/4113?api_key=test_key&locale=en_US&masteryData=all&version
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
User-Agent:
|
|
11
|
+
- Faraday v0.8.9
|
|
12
|
+
Accept-Encoding:
|
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
14
|
+
Accept:
|
|
15
|
+
- "*/*"
|
|
16
|
+
response:
|
|
17
|
+
status:
|
|
18
|
+
code: 200
|
|
19
|
+
message: OK
|
|
20
|
+
headers:
|
|
21
|
+
Access-Control-Allow-Headers:
|
|
22
|
+
- Content-Type
|
|
23
|
+
Access-Control-Allow-Methods:
|
|
24
|
+
- GET, POST, DELETE, PUT
|
|
25
|
+
Access-Control-Allow-Origin:
|
|
26
|
+
- "*"
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=UTF-8
|
|
29
|
+
Date:
|
|
30
|
+
- Thu, 17 Apr 2014 19:08:10 GMT
|
|
31
|
+
Server:
|
|
32
|
+
- Jetty(9.1.1.v20140108)
|
|
33
|
+
Vary:
|
|
34
|
+
- Accept-Encoding, User-Agent
|
|
35
|
+
Transfer-Encoding:
|
|
36
|
+
- chunked
|
|
37
|
+
Connection:
|
|
38
|
+
- keep-alive
|
|
39
|
+
body:
|
|
40
|
+
encoding: UTF-8
|
|
41
|
+
string: "{\"id\":4113,\"name\":\"Sorcery\",\"description\":[\"+1.25% Cooldown
|
|
42
|
+
Reduction\",\"+2.5% Cooldown Reduction\",\"+3.75% Cooldown Reduction\",\"+5%
|
|
43
|
+
Cooldown Reduction\"],\"sanitizedDescription\":[\"+1.25% Cooldown Reduction\",\"+2.5%
|
|
44
|
+
Cooldown Reduction\",\"+3.75% Cooldown Reduction\",\"+5% Cooldown Reduction\"],\"ranks\":4,\"prereq\":\"0\",\"image\":{\"full\":\"4113.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":0,\"w\":48,\"h\":48}}"
|
|
45
|
+
http_version:
|
|
46
|
+
recorded_at: Thu, 17 Apr 2014 19:08:44 GMT
|
|
47
|
+
recorded_with: VCR 2.9.0
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://prod.api.pvp.net/api/lol/static-data/na/v1.2/mastery/4113?api_key=test_key&locale=en_US&masteryData=all&version
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
User-Agent:
|
|
11
|
+
- Faraday v0.8.9
|
|
12
|
+
Accept-Encoding:
|
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
14
|
+
Accept:
|
|
15
|
+
- "*/*"
|
|
16
|
+
response:
|
|
17
|
+
status:
|
|
18
|
+
code: 200
|
|
19
|
+
message: OK
|
|
20
|
+
headers:
|
|
21
|
+
Access-Control-Allow-Headers:
|
|
22
|
+
- Content-Type
|
|
23
|
+
Access-Control-Allow-Methods:
|
|
24
|
+
- GET, POST, DELETE, PUT
|
|
25
|
+
Access-Control-Allow-Origin:
|
|
26
|
+
- "*"
|
|
27
|
+
Content-Type:
|
|
28
|
+
- application/json; charset=UTF-8
|
|
29
|
+
Date:
|
|
30
|
+
- Thu, 17 Apr 2014 19:08:10 GMT
|
|
31
|
+
Server:
|
|
32
|
+
- Jetty(9.1.1.v20140108)
|
|
33
|
+
Vary:
|
|
34
|
+
- Accept-Encoding, User-Agent
|
|
35
|
+
Transfer-Encoding:
|
|
36
|
+
- chunked
|
|
37
|
+
Connection:
|
|
38
|
+
- keep-alive
|
|
39
|
+
body:
|
|
40
|
+
encoding: UTF-8
|
|
41
|
+
string: "{\"id\":4113,\"name\":\"Sorcery\",\"description\":[\"+1.25% Cooldown
|
|
42
|
+
Reduction\",\"+2.5% Cooldown Reduction\",\"+3.75% Cooldown Reduction\",\"+5%
|
|
43
|
+
Cooldown Reduction\"],\"sanitizedDescription\":[\"+1.25% Cooldown Reduction\",\"+2.5%
|
|
44
|
+
Cooldown Reduction\",\"+3.75% Cooldown Reduction\",\"+5% Cooldown Reduction\"],\"ranks\":4,\"prereq\":\"0\",\"image\":{\"full\":\"4113.png\",\"sprite\":\"mastery0.png\",\"group\":\"gray_mastery\",\"x\":96,\"y\":0,\"w\":48,\"h\":48}}"
|
|
45
|
+
http_version:
|
|
46
|
+
recorded_at: Thu, 17 Apr 2014 19:08:44 GMT
|
|
47
|
+
recorded_with: VCR 2.9.0
|