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
metadata
ADDED
|
@@ -0,0 +1,484 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: riot_games_api
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Shigenobu Nishikawa
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-04-20 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: json
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: faraday
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 0.7.4
|
|
34
|
+
- - "<"
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '0.9'
|
|
37
|
+
type: :runtime
|
|
38
|
+
prerelease: false
|
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: 0.7.4
|
|
44
|
+
- - "<"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0.9'
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: faraday_middleware
|
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: 0.9.0
|
|
54
|
+
type: :runtime
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: 0.9.0
|
|
61
|
+
- !ruby/object:Gem::Dependency
|
|
62
|
+
name: rash
|
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - "~>"
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: 0.4.0
|
|
68
|
+
type: :runtime
|
|
69
|
+
prerelease: false
|
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - "~>"
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: 0.4.0
|
|
75
|
+
- !ruby/object:Gem::Dependency
|
|
76
|
+
name: virtus
|
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: 1.0.2
|
|
82
|
+
type: :runtime
|
|
83
|
+
prerelease: false
|
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - "~>"
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: 1.0.2
|
|
89
|
+
- !ruby/object:Gem::Dependency
|
|
90
|
+
name: bundler
|
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '0'
|
|
96
|
+
type: :development
|
|
97
|
+
prerelease: false
|
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '0'
|
|
103
|
+
- !ruby/object:Gem::Dependency
|
|
104
|
+
name: rake
|
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '0'
|
|
110
|
+
type: :development
|
|
111
|
+
prerelease: false
|
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - ">="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '0'
|
|
117
|
+
- !ruby/object:Gem::Dependency
|
|
118
|
+
name: pry
|
|
119
|
+
requirement: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '0'
|
|
124
|
+
type: :development
|
|
125
|
+
prerelease: false
|
|
126
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - ">="
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '0'
|
|
131
|
+
- !ruby/object:Gem::Dependency
|
|
132
|
+
name: rspec
|
|
133
|
+
requirement: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - ">="
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: '0'
|
|
138
|
+
type: :development
|
|
139
|
+
prerelease: false
|
|
140
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '0'
|
|
145
|
+
- !ruby/object:Gem::Dependency
|
|
146
|
+
name: webmock
|
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - ">="
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '0'
|
|
152
|
+
type: :development
|
|
153
|
+
prerelease: false
|
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - ">="
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '0'
|
|
159
|
+
- !ruby/object:Gem::Dependency
|
|
160
|
+
name: vcr
|
|
161
|
+
requirement: !ruby/object:Gem::Requirement
|
|
162
|
+
requirements:
|
|
163
|
+
- - ">="
|
|
164
|
+
- !ruby/object:Gem::Version
|
|
165
|
+
version: '0'
|
|
166
|
+
type: :development
|
|
167
|
+
prerelease: false
|
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
169
|
+
requirements:
|
|
170
|
+
- - ">="
|
|
171
|
+
- !ruby/object:Gem::Version
|
|
172
|
+
version: '0'
|
|
173
|
+
- !ruby/object:Gem::Dependency
|
|
174
|
+
name: codeclimate-test-reporter
|
|
175
|
+
requirement: !ruby/object:Gem::Requirement
|
|
176
|
+
requirements:
|
|
177
|
+
- - ">="
|
|
178
|
+
- !ruby/object:Gem::Version
|
|
179
|
+
version: '0'
|
|
180
|
+
type: :development
|
|
181
|
+
prerelease: false
|
|
182
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
183
|
+
requirements:
|
|
184
|
+
- - ">="
|
|
185
|
+
- !ruby/object:Gem::Version
|
|
186
|
+
version: '0'
|
|
187
|
+
description: " Make access easy to access Riot Games API to get their game data like
|
|
188
|
+
League of Legends. "
|
|
189
|
+
email:
|
|
190
|
+
- shishi.s.n@gmail.com
|
|
191
|
+
executables: []
|
|
192
|
+
extensions: []
|
|
193
|
+
extra_rdoc_files: []
|
|
194
|
+
files:
|
|
195
|
+
- ".gitignore"
|
|
196
|
+
- ".rubocop.yml"
|
|
197
|
+
- ".travis.yml"
|
|
198
|
+
- Gemfile
|
|
199
|
+
- LICENSE.txt
|
|
200
|
+
- README.md
|
|
201
|
+
- Rakefile
|
|
202
|
+
- lib/riot_games_api.rb
|
|
203
|
+
- lib/riot_games_api/lol/client.rb
|
|
204
|
+
- lib/riot_games_api/lol/constant/champions.rb
|
|
205
|
+
- lib/riot_games_api/lol/constant/items.rb
|
|
206
|
+
- lib/riot_games_api/lol/model.rb
|
|
207
|
+
- lib/riot_games_api/lol/model/champion.rb
|
|
208
|
+
- lib/riot_games_api/lol/model/champion/champion.rb
|
|
209
|
+
- lib/riot_games_api/lol/model/corecion/time.rb
|
|
210
|
+
- lib/riot_games_api/lol/model/game.rb
|
|
211
|
+
- lib/riot_games_api/lol/model/game/game.rb
|
|
212
|
+
- lib/riot_games_api/lol/model/game/player.rb
|
|
213
|
+
- lib/riot_games_api/lol/model/game/raw_stats.rb
|
|
214
|
+
- lib/riot_games_api/lol/model/game/recent_game.rb
|
|
215
|
+
- lib/riot_games_api/lol/model/league.rb
|
|
216
|
+
- lib/riot_games_api/lol/model/league/league.rb
|
|
217
|
+
- lib/riot_games_api/lol/model/league/league_item.rb
|
|
218
|
+
- lib/riot_games_api/lol/model/league/mini_series.rb
|
|
219
|
+
- lib/riot_games_api/lol/model/static_data.rb
|
|
220
|
+
- lib/riot_games_api/lol/model/static_data/basic_data.rb
|
|
221
|
+
- lib/riot_games_api/lol/model/static_data/basic_data_stats.rb
|
|
222
|
+
- lib/riot_games_api/lol/model/static_data/block.rb
|
|
223
|
+
- lib/riot_games_api/lol/model/static_data/block_item.rb
|
|
224
|
+
- lib/riot_games_api/lol/model/static_data/champion.rb
|
|
225
|
+
- lib/riot_games_api/lol/model/static_data/champion_list.rb
|
|
226
|
+
- lib/riot_games_api/lol/model/static_data/champion_list_data_by_id.rb
|
|
227
|
+
- lib/riot_games_api/lol/model/static_data/champion_spell.rb
|
|
228
|
+
- lib/riot_games_api/lol/model/static_data/gold.rb
|
|
229
|
+
- lib/riot_games_api/lol/model/static_data/group.rb
|
|
230
|
+
- lib/riot_games_api/lol/model/static_data/image.rb
|
|
231
|
+
- lib/riot_games_api/lol/model/static_data/info.rb
|
|
232
|
+
- lib/riot_games_api/lol/model/static_data/item.rb
|
|
233
|
+
- lib/riot_games_api/lol/model/static_data/item_list.rb
|
|
234
|
+
- lib/riot_games_api/lol/model/static_data/item_tree.rb
|
|
235
|
+
- lib/riot_games_api/lol/model/static_data/level_tip.rb
|
|
236
|
+
- lib/riot_games_api/lol/model/static_data/mastery.rb
|
|
237
|
+
- lib/riot_games_api/lol/model/static_data/mastery_list.rb
|
|
238
|
+
- lib/riot_games_api/lol/model/static_data/mastery_tree.rb
|
|
239
|
+
- lib/riot_games_api/lol/model/static_data/mastery_tree_item.rb
|
|
240
|
+
- lib/riot_games_api/lol/model/static_data/mastery_tree_list.rb
|
|
241
|
+
- lib/riot_games_api/lol/model/static_data/meta_data.rb
|
|
242
|
+
- lib/riot_games_api/lol/model/static_data/passive.rb
|
|
243
|
+
- lib/riot_games_api/lol/model/static_data/realm.rb
|
|
244
|
+
- lib/riot_games_api/lol/model/static_data/recommended.rb
|
|
245
|
+
- lib/riot_games_api/lol/model/static_data/rune.rb
|
|
246
|
+
- lib/riot_games_api/lol/model/static_data/rune_list.rb
|
|
247
|
+
- lib/riot_games_api/lol/model/static_data/skin.rb
|
|
248
|
+
- lib/riot_games_api/lol/model/static_data/spell_vars.rb
|
|
249
|
+
- lib/riot_games_api/lol/model/static_data/stats.rb
|
|
250
|
+
- lib/riot_games_api/lol/model/static_data/summoner_spell.rb
|
|
251
|
+
- lib/riot_games_api/lol/model/static_data/summoner_spell_list.rb
|
|
252
|
+
- lib/riot_games_api/lol/model/static_data/summoner_spell_list_data_by_id.rb
|
|
253
|
+
- lib/riot_games_api/lol/model/stats.rb
|
|
254
|
+
- lib/riot_games_api/lol/model/stats/aggregated_stats.rb
|
|
255
|
+
- lib/riot_games_api/lol/model/stats/champion_stats.rb
|
|
256
|
+
- lib/riot_games_api/lol/model/stats/player_stats_summary.rb
|
|
257
|
+
- lib/riot_games_api/lol/model/stats/player_stats_summary_list.rb
|
|
258
|
+
- lib/riot_games_api/lol/model/stats/ranked_stats.rb
|
|
259
|
+
- lib/riot_games_api/lol/model/summoner.rb
|
|
260
|
+
- lib/riot_games_api/lol/model/summoner/mastery.rb
|
|
261
|
+
- lib/riot_games_api/lol/model/summoner/mastery_page.rb
|
|
262
|
+
- lib/riot_games_api/lol/model/summoner/mastery_page_list.rb
|
|
263
|
+
- lib/riot_games_api/lol/model/summoner/rune_page.rb
|
|
264
|
+
- lib/riot_games_api/lol/model/summoner/rune_page_list.rb
|
|
265
|
+
- lib/riot_games_api/lol/model/summoner/rune_slot.rb
|
|
266
|
+
- lib/riot_games_api/lol/model/summoner/summoner.rb
|
|
267
|
+
- lib/riot_games_api/lol/model/team.rb
|
|
268
|
+
- lib/riot_games_api/lol/model/team/match_history_summary.rb
|
|
269
|
+
- lib/riot_games_api/lol/model/team/message_of_day.rb
|
|
270
|
+
- lib/riot_games_api/lol/model/team/roster.rb
|
|
271
|
+
- lib/riot_games_api/lol/model/team/team.rb
|
|
272
|
+
- lib/riot_games_api/lol/model/team/team_member_info.rb
|
|
273
|
+
- lib/riot_games_api/lol/model/team/team_stat_detail.rb
|
|
274
|
+
- lib/riot_games_api/lol/model/team/team_stat_summary.rb
|
|
275
|
+
- lib/riot_games_api/lol/resource.rb
|
|
276
|
+
- lib/riot_games_api/lol/resource/base.rb
|
|
277
|
+
- lib/riot_games_api/lol/resource/champion.rb
|
|
278
|
+
- lib/riot_games_api/lol/resource/game.rb
|
|
279
|
+
- lib/riot_games_api/lol/resource/league.rb
|
|
280
|
+
- lib/riot_games_api/lol/resource/static_data.rb
|
|
281
|
+
- lib/riot_games_api/lol/resource/stats.rb
|
|
282
|
+
- lib/riot_games_api/lol/resource/summoner.rb
|
|
283
|
+
- lib/riot_games_api/lol/resource/team.rb
|
|
284
|
+
- lib/riot_games_api/version.rb
|
|
285
|
+
- riot_games_api.gemspec
|
|
286
|
+
- spec/lol/resource/champion_spec.rb
|
|
287
|
+
- spec/lol/resource/game_spec.rb
|
|
288
|
+
- spec/lol/resource/league_spec.rb
|
|
289
|
+
- spec/lol/resource/static_data_spec.rb
|
|
290
|
+
- spec/lol/resource/stats_spec.rb
|
|
291
|
+
- spec/lol/resource/summoner_spec.rb
|
|
292
|
+
- spec/lol/resource/team_spec.rb
|
|
293
|
+
- spec/spec_helper.rb
|
|
294
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_all/should_first_record_is_Aatrox.yml
|
|
295
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_by_champion_id/should_be_Teemo.yml
|
|
296
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_free/should_be_only_free_champions.yml
|
|
297
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_champinons_is_Talon_in_first_game_record.yml
|
|
298
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_first_fellow_player_s_team_is_blue.yml
|
|
299
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_first_game_is_win.yml
|
|
300
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_record_have_player_model.yml
|
|
301
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_record_have_raw_stats_model.yml
|
|
302
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_records_count_is_10.yml
|
|
303
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_have_summoner_id.yml
|
|
304
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id/should_have_league_item_entries.yml
|
|
305
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id/should_phantoml0ad_is_in_league_which_name_is_Nasus_s_Agents.yml
|
|
306
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id_only_own_entry/should_ojarusang_is_in_series.yml
|
|
307
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id_only_own_entry/should_ojarusang_s_tier_is_platinum.yml
|
|
308
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id/should_have_league_item_entries.yml
|
|
309
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id/should_rascal_jester_is_in_league_which_name_is_Nunu_s_Outriders.yml
|
|
310
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id_only_own_entry/should_ffg_practice_is_not_in_series.yml
|
|
311
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id_only_own_entry/should_ffg_practice_tier_is_challenger.yml
|
|
312
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_solo_5v5/should_queue_is_ranked_solo_5v5.yml
|
|
313
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_solo_5v5/should_tier_is_challenger.yml
|
|
314
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_3v3/should_queue_is_ranked_team_3v3.yml
|
|
315
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_3v3/should_tier_is_challenger.yml
|
|
316
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_5v5/should_queue_is_ranked_team_5v5.yml
|
|
317
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_5v5/should_tier_is_challenger.yml
|
|
318
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/_realm/should_have_data_cdn_is_cdn_url.yml
|
|
319
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/_realm/should_have_static_data_of_realm.yml
|
|
320
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_inputed_data_version.yml
|
|
321
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_static_data_key_with_champion_name.yml
|
|
322
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_static_data_of_champions.yml
|
|
323
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_true/should_have_static_data_keys_is_champion_id.yml
|
|
324
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_true/should_have_static_data_of_champion.yml
|
|
325
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_by_id/should_have_data_key_is_shaco.yml
|
|
326
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_by_id/should_have_static_data_of_champion.yml
|
|
327
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_inputed_data_version.yml
|
|
328
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_static_data_of_items.yml
|
|
329
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_static_data_with_item_name.yml
|
|
330
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_by_id/should_have_data_name_is_biscuit.yml
|
|
331
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_by_id/should_have_static_data_of_item.yml
|
|
332
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_inputed_data_version.yml
|
|
333
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_static_data_of_masterys.yml
|
|
334
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_static_data_with_mastery_name.yml
|
|
335
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_by_id/should_have_data_name_is_sorcery.yml
|
|
336
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_by_id/should_have_static_data_of_mastery.yml
|
|
337
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_inputed_data_version.yml
|
|
338
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_static_data_of_runes.yml
|
|
339
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_static_data_with_rune_name.yml
|
|
340
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_by_id/should_have_data_name_is_rune_name.yml
|
|
341
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_by_id/should_have_static_data_of_rune.yml
|
|
342
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_inputed_data_version.yml
|
|
343
|
+
- 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
|
|
344
|
+
- 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
|
|
345
|
+
- 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
|
|
346
|
+
- 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
|
|
347
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_by_id/should_have_data_name_is_teleport.yml
|
|
348
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_by_id/should_have_static_data_of_summoner_spell.yml
|
|
349
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/latest_season/should_not_found_ranked_stats.yml
|
|
350
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/season3/should_have_champion_stats.yml
|
|
351
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/season3/should_have_modify_data_which_unixtime_milliseconds.yml
|
|
352
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/latest_season/should_have_player_stat_summaries.yml
|
|
353
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/latest_season/should_have_summoner_id_inputed.yml
|
|
354
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/season3/should_have_player_stat_summaries.yml
|
|
355
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/season3/should_have_summoner_id_inputed.yml
|
|
356
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_have_key_which_is_summoner_id.yml
|
|
357
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_have_summoner_model.yml
|
|
358
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_summoner_model_have_summoner_level.yml
|
|
359
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_have_key_which_is_summoner_name.yml
|
|
360
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_have_summoner_model.yml
|
|
361
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_summoner_model_have_summoner_level.yml
|
|
362
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_key_which_is_summoner_id.yml
|
|
363
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_mastery_page_list_model.yml
|
|
364
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_mastery_page_model.yml
|
|
365
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_name/should_have_summoner_name.yml
|
|
366
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_key_which_is_summoner_id.yml
|
|
367
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_list_model.yml
|
|
368
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_model.yml
|
|
369
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_summoner_id/should_have_focus_me_s_full_id.yml
|
|
370
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_summoner_id/should_have_team_model.yml
|
|
371
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_team_id/should_have_key_which_is_team_id.yml
|
|
372
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_team_id/should_have_team_model.yml
|
|
373
|
+
homepage: https://github.com/shishi/riot_games_api
|
|
374
|
+
licenses:
|
|
375
|
+
- MIT
|
|
376
|
+
metadata: {}
|
|
377
|
+
post_install_message:
|
|
378
|
+
rdoc_options: []
|
|
379
|
+
require_paths:
|
|
380
|
+
- lib
|
|
381
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
382
|
+
requirements:
|
|
383
|
+
- - ">="
|
|
384
|
+
- !ruby/object:Gem::Version
|
|
385
|
+
version: '0'
|
|
386
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
387
|
+
requirements:
|
|
388
|
+
- - ">="
|
|
389
|
+
- !ruby/object:Gem::Version
|
|
390
|
+
version: '0'
|
|
391
|
+
requirements: []
|
|
392
|
+
rubyforge_project:
|
|
393
|
+
rubygems_version: 2.2.0
|
|
394
|
+
signing_key:
|
|
395
|
+
specification_version: 4
|
|
396
|
+
summary: Make access easy to Riot Games API.
|
|
397
|
+
test_files:
|
|
398
|
+
- spec/lol/resource/champion_spec.rb
|
|
399
|
+
- spec/lol/resource/game_spec.rb
|
|
400
|
+
- spec/lol/resource/league_spec.rb
|
|
401
|
+
- spec/lol/resource/static_data_spec.rb
|
|
402
|
+
- spec/lol/resource/stats_spec.rb
|
|
403
|
+
- spec/lol/resource/summoner_spec.rb
|
|
404
|
+
- spec/lol/resource/team_spec.rb
|
|
405
|
+
- spec/spec_helper.rb
|
|
406
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_all/should_first_record_is_Aatrox.yml
|
|
407
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_by_champion_id/should_be_Teemo.yml
|
|
408
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Champion/_free/should_be_only_free_champions.yml
|
|
409
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_champinons_is_Talon_in_first_game_record.yml
|
|
410
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_first_fellow_player_s_team_is_blue.yml
|
|
411
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_first_game_is_win.yml
|
|
412
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_record_have_player_model.yml
|
|
413
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_record_have_raw_stats_model.yml
|
|
414
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_game_records_count_is_10.yml
|
|
415
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Game/_recent/should_have_summoner_id.yml
|
|
416
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id/should_have_league_item_entries.yml
|
|
417
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id/should_phantoml0ad_is_in_league_which_name_is_Nasus_s_Agents.yml
|
|
418
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id_only_own_entry/should_ojarusang_is_in_series.yml
|
|
419
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_summoner_id_only_own_entry/should_ojarusang_s_tier_is_platinum.yml
|
|
420
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id/should_have_league_item_entries.yml
|
|
421
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id/should_rascal_jester_is_in_league_which_name_is_Nunu_s_Outriders.yml
|
|
422
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id_only_own_entry/should_ffg_practice_is_not_in_series.yml
|
|
423
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_by_team_id_only_own_entry/should_ffg_practice_tier_is_challenger.yml
|
|
424
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_solo_5v5/should_queue_is_ranked_solo_5v5.yml
|
|
425
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_solo_5v5/should_tier_is_challenger.yml
|
|
426
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_3v3/should_queue_is_ranked_team_3v3.yml
|
|
427
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_3v3/should_tier_is_challenger.yml
|
|
428
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_5v5/should_queue_is_ranked_team_5v5.yml
|
|
429
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_League/_challenger_team_5v5/should_tier_is_challenger.yml
|
|
430
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/_realm/should_have_data_cdn_is_cdn_url.yml
|
|
431
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/_realm/should_have_static_data_of_realm.yml
|
|
432
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_inputed_data_version.yml
|
|
433
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_static_data_key_with_champion_name.yml
|
|
434
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_false/should_have_static_data_of_champions.yml
|
|
435
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_true/should_have_static_data_keys_is_champion_id.yml
|
|
436
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_all/key_by_id_is_true/should_have_static_data_of_champion.yml
|
|
437
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_by_id/should_have_data_key_is_shaco.yml
|
|
438
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/champion/_champion_by_id/should_have_static_data_of_champion.yml
|
|
439
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_inputed_data_version.yml
|
|
440
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_static_data_of_items.yml
|
|
441
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_all/should_have_static_data_with_item_name.yml
|
|
442
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_by_id/should_have_data_name_is_biscuit.yml
|
|
443
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/item/_item_by_id/should_have_static_data_of_item.yml
|
|
444
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_inputed_data_version.yml
|
|
445
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_static_data_of_masterys.yml
|
|
446
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_all/should_have_static_data_with_mastery_name.yml
|
|
447
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_by_id/should_have_data_name_is_sorcery.yml
|
|
448
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/mastery/_mastery_by_id/should_have_static_data_of_mastery.yml
|
|
449
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_inputed_data_version.yml
|
|
450
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_static_data_of_runes.yml
|
|
451
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_all/should_have_static_data_with_rune_name.yml
|
|
452
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_by_id/should_have_data_name_is_rune_name.yml
|
|
453
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/rune/_rune_by_id/should_have_static_data_of_rune.yml
|
|
454
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_all/key_by_id_is_false/should_have_inputed_data_version.yml
|
|
455
|
+
- 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
|
|
456
|
+
- 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
|
|
457
|
+
- 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
|
|
458
|
+
- 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
|
|
459
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_by_id/should_have_data_name_is_teleport.yml
|
|
460
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_StaticData/summoner_spell/_summoner_spell_by_id/should_have_static_data_of_summoner_spell.yml
|
|
461
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/latest_season/should_not_found_ranked_stats.yml
|
|
462
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/season3/should_have_champion_stats.yml
|
|
463
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_ranked/season3/should_have_modify_data_which_unixtime_milliseconds.yml
|
|
464
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/latest_season/should_have_player_stat_summaries.yml
|
|
465
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/latest_season/should_have_summoner_id_inputed.yml
|
|
466
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/season3/should_have_player_stat_summaries.yml
|
|
467
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Stats/_summary/season3/should_have_summoner_id_inputed.yml
|
|
468
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_have_key_which_is_summoner_id.yml
|
|
469
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_have_summoner_model.yml
|
|
470
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_id/should_summoner_model_have_summoner_level.yml
|
|
471
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_have_key_which_is_summoner_name.yml
|
|
472
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_have_summoner_model.yml
|
|
473
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_by_name/should_summoner_model_have_summoner_level.yml
|
|
474
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_key_which_is_summoner_id.yml
|
|
475
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_mastery_page_list_model.yml
|
|
476
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_masteries/should_have_mastery_page_model.yml
|
|
477
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_name/should_have_summoner_name.yml
|
|
478
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_key_which_is_summoner_id.yml
|
|
479
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_list_model.yml
|
|
480
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Summoner/_runes/should_have_rune_page_model.yml
|
|
481
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_summoner_id/should_have_focus_me_s_full_id.yml
|
|
482
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_summoner_id/should_have_team_model.yml
|
|
483
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_team_id/should_have_key_which_is_team_id.yml
|
|
484
|
+
- spec/vcr_cassettes/RiotGamesApi_LOL_Resource_Team/_by_team_id/should_have_team_model.yml
|