Sha256: 33bda6ff863dff171a0179288a8340e8b189d5fecbec58aa476cdc58b3742592
Contents?: true
Size: 597 Bytes
Versions: 18
Compression:
Stored size: 597 Bytes
Contents
# frozen_string_literal: true require "forwardable" module EveOnline module ESI class UniverseAsteroidBelt < Base extend Forwardable API_PATH = "/v1/universe/asteroid_belts/%<asteroid_belt_id>s/" attr_reader :id def initialize(options) super @id = options.fetch(:id) end def_delegators :model, :as_json, :name, :system_id, :position def model @model ||= Models::AsteroidBelt.new(response) end def scope end def path format(API_PATH, asteroid_belt_id: id) end end end end
Version data entries
18 entries across 18 versions & 1 rubygems