Sha256: 8a4d8537ff75126b7c7df3b484be81897d05b4d43ae45bda6b36db3de7ed6b98

Contents?: true

Size: 775 Bytes

Versions: 8

Compression:

Stored size: 775 Bytes

Contents

require_relative 'base'
require_relative 'endpoint_template'
module Taric
  module Operation
    module Game
      include Taric::Operation::Base

      GAME_VERSION = 'v1.3'.freeze
      RECENT = EndpointTemplate.new(template_url:"#{BASE_URL_FN.(GAME_VERSION)}/game/by-summoner/{summonerId}/recent{?api_key}")

      # Returns recent game data for summoner id.
      #
      # @see https://developer.riotgames.com/api/methods#!/959/3291
      # @param summoner_id [Fixnum] required, id of summoner
      # @return [Hash] of recent game data for summoner id
      #
      # @example
      #   recent_games = client.recent_game(summoner_id: 21066)['games']
      def recent_games(summoner_id:)
        response_for RECENT, {summonerId: summoner_id}
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
taric-1.0.0.pre.alpha.6 lib/taric/operation/game.rb
taric-1.0.0.pre.alpha.4 lib/taric/operation/game.rb
taric-1.0.0.pre.alpha.3 lib/taric/operation/game.rb
taric-1.0.0.pre.alpha.2 lib/taric/operation/game.rb
taric-1.0.0.pre.alpha.1 lib/taric/operation/game.rb
taric-1.0.0.pre.alpha lib/taric/operation/game.rb
taric-0.5.1 lib/taric/operation/game.rb
taric-0.5.0 lib/taric/operation/game.rb