Sha256: 07e189f6b5ed449b3b6c18942f4f796b2fff6272c7992d04971f1d1f69ed0ce8
Contents?: true
Size: 748 Bytes
Versions: 18
Compression:
Stored size: 748 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/" 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 path format(API_PATH, station_id: id) end end end end
Version data entries
18 entries across 18 versions & 1 rubygems