Sha256: 8b037ab11e73963b760e5442d0547fd7e183161e7169c855e30709a846a28550
Contents?: true
Size: 475 Bytes
Versions: 16
Compression:
Stored size: 475 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class MarketPrices < Base API_PATH = "/v1/markets/prices/" def market_prices @market_prices ||= begin output = [] response.each do |market_price| output << Models::MarketPrice.new(market_price) end output end end def scope end def path API_PATH end end end end
Version data entries
16 entries across 16 versions & 1 rubygems