Sha256: 143d550eb507a8ba13b0fc6be1f09994a38b296ac45e60c110719707714ec6c9
Contents?: true
Size: 752 Bytes
Versions: 1
Compression:
Stored size: 752 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class MarketHistory < Base API_ENDPOINT = 'https://esi.tech.ccp.is/v1/markets/%<region_id>s/history/?datasource=%<datasource>s&type_id=%<type_id>s' attr_reader :region_id, :type_id def initialize(options) super @region_id = options.fetch(:region_id) @type_id = options.fetch(:type_id) end def history output = [] response.each do |history| output << Models::MarketHistory.new(history) end output end memoize :history def scope; end def url format(API_ENDPOINT, region_id: region_id, type_id: type_id, datasource: datasource) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.17.0 | lib/eve_online/esi/market_history.rb |