Sha256: 05307fb499989f0f56f16183590ddba508369d1e06d1be1989d67f2e571b3385
Contents?: true
Size: 800 Bytes
Versions: 3
Compression:
Stored size: 800 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 @history ||= begin output = [] response.each do |history| output << Models::MarketHistory.new(history) end output end end 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.23.0 | lib/eve_online/esi/market_history.rb |
eve_online-0.22.0 | lib/eve_online/esi/market_history.rb |
eve_online-0.21.0 | lib/eve_online/esi/market_history.rb |