Sha256: bca4f3b8cea7a482d536ab086e50ec916742c2d077a70e097b66f9dd81508a84
Contents?: true
Size: 851 Bytes
Versions: 4
Compression:
Stored size: 851 Bytes
Contents
# frozen_string_literal: true require 'forwardable' module EveOnline module ESI class UniverseStation < Base extend Forwardable API_PATH = '/v2/universe/stations/%<station_id>s/?datasource=%<datasource>s' attr_reader :id def initialize(options) super @id = options.fetch(:id) end def_delegators :model, :as_json, :max_dockable_ship_volume, :name, :office_rental_cost, :owner, :race_id, :reprocessing_efficiency, :reprocessing_stations_take, :services, :station_id, :system_id, :type_id, :position def model @model ||= Models::Station.new(response) end def scope; end def url format("#{ API_HOST }#{ API_PATH }", station_id: id, datasource: datasource) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems