Sha256: 81877f79244b0a68c0372c1436ccabe0977cbf0018bf5b9692d3c6f0b5aefe8f
Contents?: true
Size: 752 Bytes
Versions: 3
Compression:
Stored size: 752 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class MarketHistory < Base API_ENDPOINT = 'https://esi.evetech.net/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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.20.0 | lib/eve_online/esi/market_history.rb |
eve_online-0.19.0 | lib/eve_online/esi/market_history.rb |
eve_online-0.18.0 | lib/eve_online/esi/market_history.rb |