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

Version Path
eve_online-0.46.0 lib/eve_online/esi/universe_station.rb
eve_online-0.45.0 lib/eve_online/esi/universe_station.rb
eve_online-0.44.0 lib/eve_online/esi/universe_station.rb
eve_online-0.43.0 lib/eve_online/esi/universe_station.rb
eve_online-0.42.0 lib/eve_online/esi/universe_station.rb
eve_online-0.41.0 lib/eve_online/esi/universe_station.rb
eve_online-0.40.0 lib/eve_online/esi/universe_station.rb
eve_online-0.39.0 lib/eve_online/esi/universe_station.rb
eve_online-0.38.0 lib/eve_online/esi/universe_station.rb
eve_online-0.37.0 lib/eve_online/esi/universe_station.rb
eve_online-0.36.0 lib/eve_online/esi/universe_station.rb
eve_online-0.35.1 lib/eve_online/esi/universe_station.rb
eve_online-0.35.0 lib/eve_online/esi/universe_station.rb
eve_online-0.34.0 lib/eve_online/esi/universe_station.rb
eve_online-0.33.0 lib/eve_online/esi/universe_station.rb
eve_online-0.32.0 lib/eve_online/esi/universe_station.rb
eve_online-0.31.0 lib/eve_online/esi/universe_station.rb
eve_online-0.30.0 lib/eve_online/esi/universe_station.rb