Sha256: 41ca63f6a127ed490f191d330228479fb673cdc31fa2da777e208cd701031c52

Contents?: true

Size: 753 Bytes

Versions: 2

Compression:

Stored size: 753 Bytes

Contents

# frozen_string_literal: true

module EveOnline
  module ESI
    class MarketHistory < Base
      API_PATH = '/v1/markets/%<region_id>s/history/'

      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 additation_query_params
        [:type_id]
      end

      def path
        format("#{ API_PATH }", region_id: region_id)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
eve_online-0.29.0 lib/eve_online/esi/market_history.rb
eve_online-0.28.0 lib/eve_online/esi/market_history.rb