Sha256: 97821e96f69701f45332af7585de594cf7f0c102c73062b7ba90bd8176fc8baf
Contents?: true
Size: 1017 Bytes
Versions: 3
Compression:
Stored size: 1017 Bytes
Contents
require_relative 'base' module Taric module Operation module ChampionMastery include Taric::Operation::Base BASE_MASTERY_URL = "https://{host}/lol/champion-mastery/v3" MASTERY_ALL_CHAMPIONS = EndpointTemplate.new(template_url: "#{BASE_MASTERY_URL}/champion-masteries/by-summoner/{summonerId}") MASTERY_BY_CHAMPION_ID = EndpointTemplate.new(template_url: "#{BASE_MASTERY_URL}/champion-masteries/by-summoner/{summonerId}/by-champion/{championId}") MASTERY_SCORE = EndpointTemplate.new(template_url: "#{BASE_MASTERY_URL}/scores/by-summoner/{summonerId}") def champion_mastery(summoner_id: , champion_id:) response_for MASTERY_BY_CHAMPION_ID, {summonerId: summoner_id, championId: champion_id} end def champion_masteries(summoner_id: ) response_for MASTERY_ALL_CHAMPIONS, {summonerId: summoner_id} end def champion_mastery_score(summoner_id: ) response_for MASTERY_SCORE, {summonerId: summoner_id} end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
taric-2.0.0.pre.alpha.1 | lib/taric/operation/champion_mastery.rb |
taric-2.0.0.pre.alpha | lib/taric/operation/champion_mastery.rb |
taric-1.0.0 | lib/taric/operation/champion_mastery.rb |