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,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://prod.api.pvp.net/api/lol/na/v1.4/summoner/by-name/shishisn?api_key=test_key&locale=en_US
|
|
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
|
+
- Fri, 18 Apr 2014 18:23:43 GMT
|
|
31
|
+
Server:
|
|
32
|
+
- Jetty(9.1.1.v20140108)
|
|
33
|
+
Vary:
|
|
34
|
+
- Accept-Encoding, User-Agent
|
|
35
|
+
Content-Length:
|
|
36
|
+
- '119'
|
|
37
|
+
Connection:
|
|
38
|
+
- keep-alive
|
|
39
|
+
body:
|
|
40
|
+
encoding: UTF-8
|
|
41
|
+
string: "{\"shishisn\":{\"id\":42139310,\"name\":\"shishisn\",\"profileIconId\":568,\"summonerLevel\":30,\"revisionDate\":1397723087000}}"
|
|
42
|
+
http_version:
|
|
43
|
+
recorded_at: Fri, 18 Apr 2014 18:24:19 GMT
|
|
44
|
+
recorded_with: VCR 2.9.0
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://prod.api.pvp.net/api/lol/na/v1.4/summoner/42139310/masteries?api_key=test_key&locale=en_US
|
|
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
|
+
- Fri, 18 Apr 2014 18:23:44 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: "{\"42139310\":{\"summonerId\":42139310,\"pages\":[{\"id\":35861253,\"name\":\"AD\",\"current\":true,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4112,\"rank\":4},{\"id\":4222,\"rank\":3},{\"id\":4221,\"rank\":1},{\"id\":4122,\"rank\":3},{\"id\":4152,\"rank\":3},{\"id\":4113,\"rank\":2},{\"id\":4134,\"rank\":2},{\"id\":4132,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4162,\"rank\":1},{\"id\":4131,\"rank\":1}]},{\"id\":35861254,\"name\":\"AP\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4154,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4133,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4131,\"rank\":1}]},{\"id\":35861255,\"name\":\"AD
|
|
42
|
+
With ManaReg\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4222,\"rank\":2},{\"id\":4122,\"rank\":3},{\"id\":4152,\"rank\":3},{\"id\":4113,\"rank\":2},{\"id\":4313,\"rank\":3},{\"id\":4132,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4112,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861256,\"name\":\"AP
|
|
43
|
+
With ManaReg\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4154,\"rank\":1},{\"id\":4222,\"rank\":2},{\"id\":4112,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4141,\"rank\":1},{\"id\":4313,\"rank\":3},{\"id\":4134,\"rank\":2},{\"id\":4133,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4113,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861257,\"name\":\"AD
|
|
44
|
+
Jungle\",\"current\":false,\"masteries\":[{\"id\":4211,\"rank\":2},{\"id\":4214,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4113,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4221,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4122,\"rank\":3},{\"id\":4141,\"rank\":1},{\"id\":4132,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4162,\"rank\":1},{\"id\":4112,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861258,\"name\":\"AP
|
|
45
|
+
Jungle\",\"current\":false,\"masteries\":[{\"id\":4211,\"rank\":2},{\"id\":4214,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4154,\"rank\":1},{\"id\":4113,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4221,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4133,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4112,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861259,\"name\":\"Tanky
|
|
46
|
+
Jungle\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4214,\"rank\":2},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4114,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4112,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4262,\"rank\":1},{\"id\":4252,\"rank\":3},{\"id\":4234,\"rank\":1},{\"id\":4233,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4113,\"rank\":3}]},{\"id\":35861260,\"name\":\"Support\",\"current\":false,\"masteries\":[{\"id\":4313,\"rank\":2},{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4334,\"rank\":1},{\"id\":4322,\"rank\":3},{\"id\":4222,\"rank\":3},{\"id\":4314,\"rank\":1},{\"id\":4221,\"rank\":1},{\"id\":4331,\"rank\":3},{\"id\":4324,\"rank\":1},{\"id\":4312,\"rank\":3},{\"id\":4234,\"rank\":1},{\"id\":4241,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4341,\"rank\":1}]},{\"id\":35861261,\"name\":\"Tank\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4233,\"rank\":3},{\"id\":4211,\"rank\":2},{\"id\":4243,\"rank\":1},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4244,\"rank\":1},{\"id\":4234,\"rank\":3},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4252,\"rank\":4},{\"id\":4262,\"rank\":1},{\"id\":4232,\"rank\":1}]},{\"id\":35861262,\"name\":\"Vlad\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4241,\"rank\":2},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4123,\"rank\":3},{\"id\":4111,\"rank\":1},{\"id\":4134,\"rank\":2},{\"id\":4234,\"rank\":1},{\"id\":4133,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4131,\"rank\":1}]},{\"id\":35861263,\"name\":\"AD
|
|
47
|
+
Tanky\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4122,\"rank\":3},{\"id\":4262,\"rank\":1},{\"id\":4252,\"rank\":3},{\"id\":4132,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4234,\"rank\":2}]},{\"id\":35861264,\"name\":\"AP
|
|
48
|
+
Tanky\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4123,\"rank\":3},{\"id\":4262,\"rank\":1},{\"id\":4252,\"rank\":3},{\"id\":4133,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4234,\"rank\":2}]},{\"id\":35861265,\"name\":\"AD/AP
|
|
49
|
+
Full\",\"current\":false,\"masteries\":[{\"id\":4134,\"rank\":3},{\"id\":4154,\"rank\":1},{\"id\":4113,\"rank\":4},{\"id\":4312,\"rank\":1},{\"id\":4122,\"rank\":3},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4313,\"rank\":3},{\"id\":4132,\"rank\":1},{\"id\":4133,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1}]}]}}"
|
|
50
|
+
http_version:
|
|
51
|
+
recorded_at: Fri, 18 Apr 2014 18:24:20 GMT
|
|
52
|
+
recorded_with: VCR 2.9.0
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://prod.api.pvp.net/api/lol/na/v1.4/summoner/42139310/masteries?api_key=test_key&locale=en_US
|
|
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
|
+
- Fri, 18 Apr 2014 18:23:44 GMT
|
|
31
|
+
Server:
|
|
32
|
+
- Jetty(9.1.1.v20140108)
|
|
33
|
+
Vary:
|
|
34
|
+
- Accept-Encoding, User-Agent
|
|
35
|
+
Content-Length:
|
|
36
|
+
- '583'
|
|
37
|
+
Connection:
|
|
38
|
+
- keep-alive
|
|
39
|
+
body:
|
|
40
|
+
encoding: UTF-8
|
|
41
|
+
string: "{\"42139310\":{\"summonerId\":42139310,\"pages\":[{\"id\":35861253,\"name\":\"AD\",\"current\":true,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4112,\"rank\":4},{\"id\":4222,\"rank\":3},{\"id\":4221,\"rank\":1},{\"id\":4122,\"rank\":3},{\"id\":4152,\"rank\":3},{\"id\":4113,\"rank\":2},{\"id\":4134,\"rank\":2},{\"id\":4132,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4162,\"rank\":1},{\"id\":4131,\"rank\":1}]},{\"id\":35861254,\"name\":\"AP\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4154,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4133,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4131,\"rank\":1}]},{\"id\":35861255,\"name\":\"AD
|
|
42
|
+
With ManaReg\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4222,\"rank\":2},{\"id\":4122,\"rank\":3},{\"id\":4152,\"rank\":3},{\"id\":4113,\"rank\":2},{\"id\":4313,\"rank\":3},{\"id\":4132,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4112,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861256,\"name\":\"AP
|
|
43
|
+
With ManaReg\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4154,\"rank\":1},{\"id\":4222,\"rank\":2},{\"id\":4112,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4141,\"rank\":1},{\"id\":4313,\"rank\":3},{\"id\":4134,\"rank\":2},{\"id\":4133,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4113,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861257,\"name\":\"AD
|
|
44
|
+
Jungle\",\"current\":false,\"masteries\":[{\"id\":4211,\"rank\":2},{\"id\":4214,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4113,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4221,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4122,\"rank\":3},{\"id\":4141,\"rank\":1},{\"id\":4132,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4162,\"rank\":1},{\"id\":4112,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861258,\"name\":\"AP
|
|
45
|
+
Jungle\",\"current\":false,\"masteries\":[{\"id\":4211,\"rank\":2},{\"id\":4214,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4154,\"rank\":1},{\"id\":4113,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4221,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4133,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4112,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861259,\"name\":\"Tanky
|
|
46
|
+
Jungle\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4214,\"rank\":2},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4114,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4112,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4262,\"rank\":1},{\"id\":4252,\"rank\":3},{\"id\":4234,\"rank\":1},{\"id\":4233,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4113,\"rank\":3}]},{\"id\":35861260,\"name\":\"Support\",\"current\":false,\"masteries\":[{\"id\":4313,\"rank\":2},{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4334,\"rank\":1},{\"id\":4322,\"rank\":3},{\"id\":4222,\"rank\":3},{\"id\":4314,\"rank\":1},{\"id\":4221,\"rank\":1},{\"id\":4331,\"rank\":3},{\"id\":4324,\"rank\":1},{\"id\":4312,\"rank\":3},{\"id\":4234,\"rank\":1},{\"id\":4241,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4341,\"rank\":1}]},{\"id\":35861261,\"name\":\"Tank\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4233,\"rank\":3},{\"id\":4211,\"rank\":2},{\"id\":4243,\"rank\":1},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4244,\"rank\":1},{\"id\":4234,\"rank\":3},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4252,\"rank\":4},{\"id\":4262,\"rank\":1},{\"id\":4232,\"rank\":1}]},{\"id\":35861262,\"name\":\"Vlad\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4241,\"rank\":2},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4123,\"rank\":3},{\"id\":4111,\"rank\":1},{\"id\":4134,\"rank\":2},{\"id\":4234,\"rank\":1},{\"id\":4133,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4131,\"rank\":1}]},{\"id\":35861263,\"name\":\"AD
|
|
47
|
+
Tanky\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4122,\"rank\":3},{\"id\":4262,\"rank\":1},{\"id\":4252,\"rank\":3},{\"id\":4132,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4234,\"rank\":2}]},{\"id\":35861264,\"name\":\"AP
|
|
48
|
+
Tanky\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4123,\"rank\":3},{\"id\":4262,\"rank\":1},{\"id\":4252,\"rank\":3},{\"id\":4133,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4234,\"rank\":2}]},{\"id\":35861265,\"name\":\"AD/AP
|
|
49
|
+
Full\",\"current\":false,\"masteries\":[{\"id\":4134,\"rank\":3},{\"id\":4154,\"rank\":1},{\"id\":4113,\"rank\":4},{\"id\":4312,\"rank\":1},{\"id\":4122,\"rank\":3},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4313,\"rank\":3},{\"id\":4132,\"rank\":1},{\"id\":4133,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1}]}]}}"
|
|
50
|
+
http_version:
|
|
51
|
+
recorded_at: Fri, 18 Apr 2014 18:24:21 GMT
|
|
52
|
+
recorded_with: VCR 2.9.0
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://prod.api.pvp.net/api/lol/na/v1.4/summoner/42139310/masteries?api_key=test_key&locale=en_US
|
|
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
|
+
- Fri, 18 Apr 2014 18:23:45 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: "{\"42139310\":{\"summonerId\":42139310,\"pages\":[{\"id\":35861253,\"name\":\"AD\",\"current\":true,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4112,\"rank\":4},{\"id\":4222,\"rank\":3},{\"id\":4221,\"rank\":1},{\"id\":4122,\"rank\":3},{\"id\":4152,\"rank\":3},{\"id\":4113,\"rank\":2},{\"id\":4134,\"rank\":2},{\"id\":4132,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4162,\"rank\":1},{\"id\":4131,\"rank\":1}]},{\"id\":35861254,\"name\":\"AP\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4154,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4133,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4131,\"rank\":1}]},{\"id\":35861255,\"name\":\"AD
|
|
42
|
+
With ManaReg\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4222,\"rank\":2},{\"id\":4122,\"rank\":3},{\"id\":4152,\"rank\":3},{\"id\":4113,\"rank\":2},{\"id\":4313,\"rank\":3},{\"id\":4132,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4112,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861256,\"name\":\"AP
|
|
43
|
+
With ManaReg\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4154,\"rank\":1},{\"id\":4222,\"rank\":2},{\"id\":4112,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4141,\"rank\":1},{\"id\":4313,\"rank\":3},{\"id\":4134,\"rank\":2},{\"id\":4133,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4113,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861257,\"name\":\"AD
|
|
44
|
+
Jungle\",\"current\":false,\"masteries\":[{\"id\":4211,\"rank\":2},{\"id\":4214,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4113,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4221,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4122,\"rank\":3},{\"id\":4141,\"rank\":1},{\"id\":4132,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4162,\"rank\":1},{\"id\":4112,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861258,\"name\":\"AP
|
|
45
|
+
Jungle\",\"current\":false,\"masteries\":[{\"id\":4211,\"rank\":2},{\"id\":4214,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4134,\"rank\":3},{\"id\":4154,\"rank\":1},{\"id\":4113,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4221,\"rank\":1},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4133,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1},{\"id\":4112,\"rank\":3},{\"id\":4131,\"rank\":1}]},{\"id\":35861259,\"name\":\"Tanky
|
|
46
|
+
Jungle\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4214,\"rank\":2},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4114,\"rank\":1},{\"id\":4222,\"rank\":3},{\"id\":4112,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4262,\"rank\":1},{\"id\":4252,\"rank\":3},{\"id\":4234,\"rank\":1},{\"id\":4233,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4113,\"rank\":3}]},{\"id\":35861260,\"name\":\"Support\",\"current\":false,\"masteries\":[{\"id\":4313,\"rank\":2},{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4334,\"rank\":1},{\"id\":4322,\"rank\":3},{\"id\":4222,\"rank\":3},{\"id\":4314,\"rank\":1},{\"id\":4221,\"rank\":1},{\"id\":4331,\"rank\":3},{\"id\":4324,\"rank\":1},{\"id\":4312,\"rank\":3},{\"id\":4234,\"rank\":1},{\"id\":4241,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4341,\"rank\":1}]},{\"id\":35861261,\"name\":\"Tank\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4233,\"rank\":3},{\"id\":4211,\"rank\":2},{\"id\":4243,\"rank\":1},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4244,\"rank\":1},{\"id\":4234,\"rank\":3},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4252,\"rank\":4},{\"id\":4262,\"rank\":1},{\"id\":4232,\"rank\":1}]},{\"id\":35861262,\"name\":\"Vlad\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4241,\"rank\":2},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4123,\"rank\":3},{\"id\":4111,\"rank\":1},{\"id\":4134,\"rank\":2},{\"id\":4234,\"rank\":1},{\"id\":4133,\"rank\":1},{\"id\":4143,\"rank\":3},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4131,\"rank\":1}]},{\"id\":35861263,\"name\":\"AD
|
|
47
|
+
Tanky\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4122,\"rank\":3},{\"id\":4262,\"rank\":1},{\"id\":4252,\"rank\":3},{\"id\":4132,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4234,\"rank\":2}]},{\"id\":35861264,\"name\":\"AP
|
|
48
|
+
Tanky\",\"current\":false,\"masteries\":[{\"id\":4212,\"rank\":2},{\"id\":4211,\"rank\":2},{\"id\":4121,\"rank\":1},{\"id\":4213,\"rank\":2},{\"id\":4241,\"rank\":2},{\"id\":4222,\"rank\":3},{\"id\":4113,\"rank\":4},{\"id\":4221,\"rank\":1},{\"id\":4123,\"rank\":3},{\"id\":4262,\"rank\":1},{\"id\":4252,\"rank\":3},{\"id\":4133,\"rank\":1},{\"id\":4232,\"rank\":1},{\"id\":4233,\"rank\":2},{\"id\":4234,\"rank\":2}]},{\"id\":35861265,\"name\":\"AD/AP
|
|
49
|
+
Full\",\"current\":false,\"masteries\":[{\"id\":4134,\"rank\":3},{\"id\":4154,\"rank\":1},{\"id\":4113,\"rank\":4},{\"id\":4312,\"rank\":1},{\"id\":4122,\"rank\":3},{\"id\":4152,\"rank\":3},{\"id\":4123,\"rank\":3},{\"id\":4313,\"rank\":3},{\"id\":4132,\"rank\":1},{\"id\":4133,\"rank\":1},{\"id\":4142,\"rank\":3},{\"id\":4143,\"rank\":3},{\"id\":4162,\"rank\":1}]}]}}"
|
|
50
|
+
http_version:
|
|
51
|
+
recorded_at: Fri, 18 Apr 2014 18:24:21 GMT
|
|
52
|
+
recorded_with: VCR 2.9.0
|
data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_name/should_have_summoner_name.yml
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://prod.api.pvp.net/api/lol/na/v1.4/summoner/42139310/name?api_key=test_key&locale=en_US
|
|
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
|
+
- Sat, 19 Apr 2014 02:05: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: "{\"42139310\":\"shishisn\"}"
|
|
42
|
+
http_version:
|
|
43
|
+
recorded_at: Sat, 19 Apr 2014 02:05:09 GMT
|
|
44
|
+
recorded_with: VCR 2.9.0
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://prod.api.pvp.net/api/lol/na/v1.4/summoner/42139310/runes?api_key=test_key&locale=en_US
|
|
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
|
+
- Fri, 18 Apr 2014 18:24:07 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: "{\"42139310\":{\"summonerId\":42139310,\"pages\":[{\"id\":51467491,\"name\":\"Basic
|
|
42
|
+
AD\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5245},{\"runeSlotId\":2,\"runeId\":5245},{\"runeSlotId\":3,\"runeId\":5245},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5245},{\"runeSlotId\":6,\"runeId\":5245},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5335},{\"runeSlotId\":29,\"runeId\":5335},{\"runeSlotId\":30,\"runeId\":5335}]},{\"id\":51467492,\"name\":\"AttackSpeed
|
|
43
|
+
with MS\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5247},{\"runeSlotId\":2,\"runeId\":5247},{\"runeSlotId\":3,\"runeId\":5247},{\"runeSlotId\":4,\"runeId\":5247},{\"runeSlotId\":5,\"runeId\":5247},{\"runeSlotId\":6,\"runeId\":5247},{\"runeSlotId\":7,\"runeId\":5247},{\"runeSlotId\":8,\"runeId\":5247},{\"runeSlotId\":9,\"runeId\":5247},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5365},{\"runeSlotId\":29,\"runeId\":5365},{\"runeSlotId\":30,\"runeId\":5365}]},{\"id\":55087456,\"name\":\"MagicPen
|
|
44
|
+
with MS\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5273},{\"runeSlotId\":2,\"runeId\":5273},{\"runeSlotId\":3,\"runeId\":5273},{\"runeSlotId\":4,\"runeId\":5273},{\"runeSlotId\":5,\"runeId\":5273},{\"runeSlotId\":6,\"runeId\":5273},{\"runeSlotId\":7,\"runeId\":5273},{\"runeSlotId\":8,\"runeId\":5273},{\"runeSlotId\":9,\"runeId\":5273},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5365},{\"runeSlotId\":29,\"runeId\":5365},{\"runeSlotId\":30,\"runeId\":5365}]},{\"id\":55087457,\"name\":\"Support\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5257},{\"runeSlotId\":2,\"runeId\":5257},{\"runeSlotId\":3,\"runeId\":5257},{\"runeSlotId\":4,\"runeId\":5257},{\"runeSlotId\":5,\"runeId\":5257},{\"runeSlotId\":6,\"runeId\":5257},{\"runeSlotId\":7,\"runeId\":5257},{\"runeSlotId\":8,\"runeId\":5257},{\"runeSlotId\":9,\"runeId\":5257},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5367},{\"runeSlotId\":29,\"runeId\":5367},{\"runeSlotId\":30,\"runeId\":5367}]},{\"id\":55087458,\"name\":\"ArmorPen
|
|
45
|
+
with AD\",\"current\":true,\"slots\":[{\"runeSlotId\":1,\"runeId\":5253},{\"runeSlotId\":2,\"runeId\":5253},{\"runeSlotId\":3,\"runeId\":5253},{\"runeSlotId\":4,\"runeId\":5253},{\"runeSlotId\":5,\"runeId\":5253},{\"runeSlotId\":6,\"runeId\":5253},{\"runeSlotId\":7,\"runeId\":5253},{\"runeSlotId\":8,\"runeId\":5253},{\"runeSlotId\":9,\"runeId\":5253},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5335},{\"runeSlotId\":29,\"runeId\":5335},{\"runeSlotId\":30,\"runeId\":5335}]},{\"id\":55087459,\"name\":\"ArmorPen
|
|
46
|
+
With LifeSteel\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5253},{\"runeSlotId\":2,\"runeId\":5253},{\"runeSlotId\":3,\"runeId\":5253},{\"runeSlotId\":4,\"runeId\":5253},{\"runeSlotId\":5,\"runeId\":5253},{\"runeSlotId\":6,\"runeId\":5253},{\"runeSlotId\":7,\"runeId\":5253},{\"runeSlotId\":8,\"runeId\":5253},{\"runeSlotId\":9,\"runeId\":5253},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5412},{\"runeSlotId\":29,\"runeId\":5412},{\"runeSlotId\":30,\"runeId\":5412}]},{\"id\":55087460,\"name\":\"AD
|
|
47
|
+
with LifeSteel\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5245},{\"runeSlotId\":2,\"runeId\":5245},{\"runeSlotId\":3,\"runeId\":5245},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5245},{\"runeSlotId\":6,\"runeId\":5245},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5412},{\"runeSlotId\":29,\"runeId\":5412},{\"runeSlotId\":30,\"runeId\":5412}]},{\"id\":55087461,\"name\":\"AS
|
|
48
|
+
and AD with LS\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5247},{\"runeSlotId\":2,\"runeId\":5247},{\"runeSlotId\":3,\"runeId\":5247},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5247},{\"runeSlotId\":6,\"runeId\":5247},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5412},{\"runeSlotId\":29,\"runeId\":5412},{\"runeSlotId\":30,\"runeId\":5412}]},{\"id\":55087462,\"name\":\"MagicPen
|
|
49
|
+
With AP\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5273},{\"runeSlotId\":2,\"runeId\":5273},{\"runeSlotId\":3,\"runeId\":5273},{\"runeSlotId\":4,\"runeId\":5273},{\"runeSlotId\":5,\"runeId\":5273},{\"runeSlotId\":6,\"runeId\":5273},{\"runeSlotId\":7,\"runeId\":5273},{\"runeSlotId\":8,\"runeId\":5273},{\"runeSlotId\":9,\"runeId\":5273},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5357},{\"runeSlotId\":29,\"runeId\":5357},{\"runeSlotId\":30,\"runeId\":5357}]},{\"id\":67617291,\"name\":\"AD
|
|
50
|
+
and AP\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5245},{\"runeSlotId\":2,\"runeId\":5245},{\"runeSlotId\":3,\"runeId\":5245},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5245},{\"runeSlotId\":6,\"runeId\":5245},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5297},{\"runeSlotId\":20,\"runeId\":5297},{\"runeSlotId\":21,\"runeId\":5297},{\"runeSlotId\":22,\"runeId\":5297},{\"runeSlotId\":23,\"runeId\":5297},{\"runeSlotId\":24,\"runeId\":5297},{\"runeSlotId\":25,\"runeId\":5297},{\"runeSlotId\":26,\"runeId\":5297},{\"runeSlotId\":27,\"runeId\":5297},{\"runeSlotId\":28,\"runeId\":5357},{\"runeSlotId\":29,\"runeId\":5357},{\"runeSlotId\":30,\"runeId\":5357}]},{\"id\":67617292,\"name\":\"Rune
|
|
51
|
+
Page 11\",\"current\":false},{\"id\":67617293,\"name\":\"Rune Page 12\",\"current\":false},{\"id\":67617294,\"name\":\"Rune
|
|
52
|
+
Page 13\",\"current\":false},{\"id\":67617295,\"name\":\"Rune Page 14\",\"current\":false},{\"id\":67617296,\"name\":\"Rune
|
|
53
|
+
Page 15\",\"current\":false},{\"id\":67617297,\"name\":\"Rune Page 16\",\"current\":false}]}}"
|
|
54
|
+
http_version:
|
|
55
|
+
recorded_at: Fri, 18 Apr 2014 18:24:43 GMT
|
|
56
|
+
recorded_with: VCR 2.9.0
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://prod.api.pvp.net/api/lol/na/v1.4/summoner/42139310/runes?api_key=test_key&locale=en_US
|
|
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
|
+
- Fri, 18 Apr 2014 18:24:07 GMT
|
|
31
|
+
Server:
|
|
32
|
+
- Jetty(9.1.1.v20140108)
|
|
33
|
+
Vary:
|
|
34
|
+
- Accept-Encoding, User-Agent
|
|
35
|
+
Content-Length:
|
|
36
|
+
- '625'
|
|
37
|
+
Connection:
|
|
38
|
+
- keep-alive
|
|
39
|
+
body:
|
|
40
|
+
encoding: UTF-8
|
|
41
|
+
string: "{\"42139310\":{\"summonerId\":42139310,\"pages\":[{\"id\":51467491,\"name\":\"Basic
|
|
42
|
+
AD\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5245},{\"runeSlotId\":2,\"runeId\":5245},{\"runeSlotId\":3,\"runeId\":5245},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5245},{\"runeSlotId\":6,\"runeId\":5245},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5335},{\"runeSlotId\":29,\"runeId\":5335},{\"runeSlotId\":30,\"runeId\":5335}]},{\"id\":51467492,\"name\":\"AttackSpeed
|
|
43
|
+
with MS\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5247},{\"runeSlotId\":2,\"runeId\":5247},{\"runeSlotId\":3,\"runeId\":5247},{\"runeSlotId\":4,\"runeId\":5247},{\"runeSlotId\":5,\"runeId\":5247},{\"runeSlotId\":6,\"runeId\":5247},{\"runeSlotId\":7,\"runeId\":5247},{\"runeSlotId\":8,\"runeId\":5247},{\"runeSlotId\":9,\"runeId\":5247},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5365},{\"runeSlotId\":29,\"runeId\":5365},{\"runeSlotId\":30,\"runeId\":5365}]},{\"id\":55087456,\"name\":\"MagicPen
|
|
44
|
+
with MS\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5273},{\"runeSlotId\":2,\"runeId\":5273},{\"runeSlotId\":3,\"runeId\":5273},{\"runeSlotId\":4,\"runeId\":5273},{\"runeSlotId\":5,\"runeId\":5273},{\"runeSlotId\":6,\"runeId\":5273},{\"runeSlotId\":7,\"runeId\":5273},{\"runeSlotId\":8,\"runeId\":5273},{\"runeSlotId\":9,\"runeId\":5273},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5365},{\"runeSlotId\":29,\"runeId\":5365},{\"runeSlotId\":30,\"runeId\":5365}]},{\"id\":55087457,\"name\":\"Support\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5257},{\"runeSlotId\":2,\"runeId\":5257},{\"runeSlotId\":3,\"runeId\":5257},{\"runeSlotId\":4,\"runeId\":5257},{\"runeSlotId\":5,\"runeId\":5257},{\"runeSlotId\":6,\"runeId\":5257},{\"runeSlotId\":7,\"runeId\":5257},{\"runeSlotId\":8,\"runeId\":5257},{\"runeSlotId\":9,\"runeId\":5257},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5367},{\"runeSlotId\":29,\"runeId\":5367},{\"runeSlotId\":30,\"runeId\":5367}]},{\"id\":55087458,\"name\":\"ArmorPen
|
|
45
|
+
with AD\",\"current\":true,\"slots\":[{\"runeSlotId\":1,\"runeId\":5253},{\"runeSlotId\":2,\"runeId\":5253},{\"runeSlotId\":3,\"runeId\":5253},{\"runeSlotId\":4,\"runeId\":5253},{\"runeSlotId\":5,\"runeId\":5253},{\"runeSlotId\":6,\"runeId\":5253},{\"runeSlotId\":7,\"runeId\":5253},{\"runeSlotId\":8,\"runeId\":5253},{\"runeSlotId\":9,\"runeId\":5253},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5335},{\"runeSlotId\":29,\"runeId\":5335},{\"runeSlotId\":30,\"runeId\":5335}]},{\"id\":55087459,\"name\":\"ArmorPen
|
|
46
|
+
With LifeSteel\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5253},{\"runeSlotId\":2,\"runeId\":5253},{\"runeSlotId\":3,\"runeId\":5253},{\"runeSlotId\":4,\"runeId\":5253},{\"runeSlotId\":5,\"runeId\":5253},{\"runeSlotId\":6,\"runeId\":5253},{\"runeSlotId\":7,\"runeId\":5253},{\"runeSlotId\":8,\"runeId\":5253},{\"runeSlotId\":9,\"runeId\":5253},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5412},{\"runeSlotId\":29,\"runeId\":5412},{\"runeSlotId\":30,\"runeId\":5412}]},{\"id\":55087460,\"name\":\"AD
|
|
47
|
+
with LifeSteel\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5245},{\"runeSlotId\":2,\"runeId\":5245},{\"runeSlotId\":3,\"runeId\":5245},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5245},{\"runeSlotId\":6,\"runeId\":5245},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5412},{\"runeSlotId\":29,\"runeId\":5412},{\"runeSlotId\":30,\"runeId\":5412}]},{\"id\":55087461,\"name\":\"AS
|
|
48
|
+
and AD with LS\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5247},{\"runeSlotId\":2,\"runeId\":5247},{\"runeSlotId\":3,\"runeId\":5247},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5247},{\"runeSlotId\":6,\"runeId\":5247},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5412},{\"runeSlotId\":29,\"runeId\":5412},{\"runeSlotId\":30,\"runeId\":5412}]},{\"id\":55087462,\"name\":\"MagicPen
|
|
49
|
+
With AP\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5273},{\"runeSlotId\":2,\"runeId\":5273},{\"runeSlotId\":3,\"runeId\":5273},{\"runeSlotId\":4,\"runeId\":5273},{\"runeSlotId\":5,\"runeId\":5273},{\"runeSlotId\":6,\"runeId\":5273},{\"runeSlotId\":7,\"runeId\":5273},{\"runeSlotId\":8,\"runeId\":5273},{\"runeSlotId\":9,\"runeId\":5273},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5357},{\"runeSlotId\":29,\"runeId\":5357},{\"runeSlotId\":30,\"runeId\":5357}]},{\"id\":67617291,\"name\":\"AD
|
|
50
|
+
and AP\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5245},{\"runeSlotId\":2,\"runeId\":5245},{\"runeSlotId\":3,\"runeId\":5245},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5245},{\"runeSlotId\":6,\"runeId\":5245},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5297},{\"runeSlotId\":20,\"runeId\":5297},{\"runeSlotId\":21,\"runeId\":5297},{\"runeSlotId\":22,\"runeId\":5297},{\"runeSlotId\":23,\"runeId\":5297},{\"runeSlotId\":24,\"runeId\":5297},{\"runeSlotId\":25,\"runeId\":5297},{\"runeSlotId\":26,\"runeId\":5297},{\"runeSlotId\":27,\"runeId\":5297},{\"runeSlotId\":28,\"runeId\":5357},{\"runeSlotId\":29,\"runeId\":5357},{\"runeSlotId\":30,\"runeId\":5357}]},{\"id\":67617292,\"name\":\"Rune
|
|
51
|
+
Page 11\",\"current\":false},{\"id\":67617293,\"name\":\"Rune Page 12\",\"current\":false},{\"id\":67617294,\"name\":\"Rune
|
|
52
|
+
Page 13\",\"current\":false},{\"id\":67617295,\"name\":\"Rune Page 14\",\"current\":false},{\"id\":67617296,\"name\":\"Rune
|
|
53
|
+
Page 15\",\"current\":false},{\"id\":67617297,\"name\":\"Rune Page 16\",\"current\":false}]}}"
|
|
54
|
+
http_version:
|
|
55
|
+
recorded_at: Fri, 18 Apr 2014 18:24:43 GMT
|
|
56
|
+
recorded_with: VCR 2.9.0
|
data/spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_model.yml
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: http://prod.api.pvp.net/api/lol/na/v1.4/summoner/42139310/runes?api_key=test_key&locale=en_US
|
|
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
|
+
- Fri, 18 Apr 2014 18:24:07 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: "{\"42139310\":{\"summonerId\":42139310,\"pages\":[{\"id\":51467491,\"name\":\"Basic
|
|
42
|
+
AD\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5245},{\"runeSlotId\":2,\"runeId\":5245},{\"runeSlotId\":3,\"runeId\":5245},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5245},{\"runeSlotId\":6,\"runeId\":5245},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5335},{\"runeSlotId\":29,\"runeId\":5335},{\"runeSlotId\":30,\"runeId\":5335}]},{\"id\":51467492,\"name\":\"AttackSpeed
|
|
43
|
+
with MS\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5247},{\"runeSlotId\":2,\"runeId\":5247},{\"runeSlotId\":3,\"runeId\":5247},{\"runeSlotId\":4,\"runeId\":5247},{\"runeSlotId\":5,\"runeId\":5247},{\"runeSlotId\":6,\"runeId\":5247},{\"runeSlotId\":7,\"runeId\":5247},{\"runeSlotId\":8,\"runeId\":5247},{\"runeSlotId\":9,\"runeId\":5247},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5365},{\"runeSlotId\":29,\"runeId\":5365},{\"runeSlotId\":30,\"runeId\":5365}]},{\"id\":55087456,\"name\":\"MagicPen
|
|
44
|
+
with MS\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5273},{\"runeSlotId\":2,\"runeId\":5273},{\"runeSlotId\":3,\"runeId\":5273},{\"runeSlotId\":4,\"runeId\":5273},{\"runeSlotId\":5,\"runeId\":5273},{\"runeSlotId\":6,\"runeId\":5273},{\"runeSlotId\":7,\"runeId\":5273},{\"runeSlotId\":8,\"runeId\":5273},{\"runeSlotId\":9,\"runeId\":5273},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5365},{\"runeSlotId\":29,\"runeId\":5365},{\"runeSlotId\":30,\"runeId\":5365}]},{\"id\":55087457,\"name\":\"Support\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5257},{\"runeSlotId\":2,\"runeId\":5257},{\"runeSlotId\":3,\"runeId\":5257},{\"runeSlotId\":4,\"runeId\":5257},{\"runeSlotId\":5,\"runeId\":5257},{\"runeSlotId\":6,\"runeId\":5257},{\"runeSlotId\":7,\"runeId\":5257},{\"runeSlotId\":8,\"runeId\":5257},{\"runeSlotId\":9,\"runeId\":5257},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5367},{\"runeSlotId\":29,\"runeId\":5367},{\"runeSlotId\":30,\"runeId\":5367}]},{\"id\":55087458,\"name\":\"ArmorPen
|
|
45
|
+
with AD\",\"current\":true,\"slots\":[{\"runeSlotId\":1,\"runeId\":5253},{\"runeSlotId\":2,\"runeId\":5253},{\"runeSlotId\":3,\"runeId\":5253},{\"runeSlotId\":4,\"runeId\":5253},{\"runeSlotId\":5,\"runeId\":5253},{\"runeSlotId\":6,\"runeId\":5253},{\"runeSlotId\":7,\"runeId\":5253},{\"runeSlotId\":8,\"runeId\":5253},{\"runeSlotId\":9,\"runeId\":5253},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5335},{\"runeSlotId\":29,\"runeId\":5335},{\"runeSlotId\":30,\"runeId\":5335}]},{\"id\":55087459,\"name\":\"ArmorPen
|
|
46
|
+
With LifeSteel\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5253},{\"runeSlotId\":2,\"runeId\":5253},{\"runeSlotId\":3,\"runeId\":5253},{\"runeSlotId\":4,\"runeId\":5253},{\"runeSlotId\":5,\"runeId\":5253},{\"runeSlotId\":6,\"runeId\":5253},{\"runeSlotId\":7,\"runeId\":5253},{\"runeSlotId\":8,\"runeId\":5253},{\"runeSlotId\":9,\"runeId\":5253},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5412},{\"runeSlotId\":29,\"runeId\":5412},{\"runeSlotId\":30,\"runeId\":5412}]},{\"id\":55087460,\"name\":\"AD
|
|
47
|
+
with LifeSteel\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5245},{\"runeSlotId\":2,\"runeId\":5245},{\"runeSlotId\":3,\"runeId\":5245},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5245},{\"runeSlotId\":6,\"runeId\":5245},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5412},{\"runeSlotId\":29,\"runeId\":5412},{\"runeSlotId\":30,\"runeId\":5412}]},{\"id\":55087461,\"name\":\"AS
|
|
48
|
+
and AD with LS\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5247},{\"runeSlotId\":2,\"runeId\":5247},{\"runeSlotId\":3,\"runeId\":5247},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5247},{\"runeSlotId\":6,\"runeId\":5247},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5412},{\"runeSlotId\":29,\"runeId\":5412},{\"runeSlotId\":30,\"runeId\":5412}]},{\"id\":55087462,\"name\":\"MagicPen
|
|
49
|
+
With AP\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5273},{\"runeSlotId\":2,\"runeId\":5273},{\"runeSlotId\":3,\"runeId\":5273},{\"runeSlotId\":4,\"runeId\":5273},{\"runeSlotId\":5,\"runeId\":5273},{\"runeSlotId\":6,\"runeId\":5273},{\"runeSlotId\":7,\"runeId\":5273},{\"runeSlotId\":8,\"runeId\":5273},{\"runeSlotId\":9,\"runeId\":5273},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5289},{\"runeSlotId\":20,\"runeId\":5289},{\"runeSlotId\":21,\"runeId\":5289},{\"runeSlotId\":22,\"runeId\":5289},{\"runeSlotId\":23,\"runeId\":5289},{\"runeSlotId\":24,\"runeId\":5289},{\"runeSlotId\":25,\"runeId\":5289},{\"runeSlotId\":26,\"runeId\":5289},{\"runeSlotId\":27,\"runeId\":5289},{\"runeSlotId\":28,\"runeId\":5357},{\"runeSlotId\":29,\"runeId\":5357},{\"runeSlotId\":30,\"runeId\":5357}]},{\"id\":67617291,\"name\":\"AD
|
|
50
|
+
and AP\",\"current\":false,\"slots\":[{\"runeSlotId\":1,\"runeId\":5245},{\"runeSlotId\":2,\"runeId\":5245},{\"runeSlotId\":3,\"runeId\":5245},{\"runeSlotId\":4,\"runeId\":5245},{\"runeSlotId\":5,\"runeId\":5245},{\"runeSlotId\":6,\"runeId\":5245},{\"runeSlotId\":7,\"runeId\":5245},{\"runeSlotId\":8,\"runeId\":5245},{\"runeSlotId\":9,\"runeId\":5245},{\"runeSlotId\":10,\"runeId\":5317},{\"runeSlotId\":11,\"runeId\":5317},{\"runeSlotId\":12,\"runeId\":5317},{\"runeSlotId\":13,\"runeId\":5317},{\"runeSlotId\":14,\"runeId\":5317},{\"runeSlotId\":15,\"runeId\":5317},{\"runeSlotId\":16,\"runeId\":5317},{\"runeSlotId\":17,\"runeId\":5317},{\"runeSlotId\":18,\"runeId\":5317},{\"runeSlotId\":19,\"runeId\":5297},{\"runeSlotId\":20,\"runeId\":5297},{\"runeSlotId\":21,\"runeId\":5297},{\"runeSlotId\":22,\"runeId\":5297},{\"runeSlotId\":23,\"runeId\":5297},{\"runeSlotId\":24,\"runeId\":5297},{\"runeSlotId\":25,\"runeId\":5297},{\"runeSlotId\":26,\"runeId\":5297},{\"runeSlotId\":27,\"runeId\":5297},{\"runeSlotId\":28,\"runeId\":5357},{\"runeSlotId\":29,\"runeId\":5357},{\"runeSlotId\":30,\"runeId\":5357}]},{\"id\":67617292,\"name\":\"Rune
|
|
51
|
+
Page 11\",\"current\":false},{\"id\":67617293,\"name\":\"Rune Page 12\",\"current\":false},{\"id\":67617294,\"name\":\"Rune
|
|
52
|
+
Page 13\",\"current\":false},{\"id\":67617295,\"name\":\"Rune Page 14\",\"current\":false},{\"id\":67617296,\"name\":\"Rune
|
|
53
|
+
Page 15\",\"current\":false},{\"id\":67617297,\"name\":\"Rune Page 16\",\"current\":false}]}}"
|
|
54
|
+
http_version:
|
|
55
|
+
recorded_at: Fri, 18 Apr 2014 18:24:44 GMT
|
|
56
|
+
recorded_with: VCR 2.9.0
|