Sha256: c77c79d246221175c6fb419a0ccd244bd4250f1904204220190fa1f12698c1f8

Contents?: true

Size: 789 Bytes

Versions: 2

Compression:

Stored size: 789 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

2 entries across 2 versions & 1 rubygems

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