Sha256: 594b3cc2ed39f0cba8d3dd920b60f0e651f2b0d2016241873c2e857c74633a14
Contents?: true
Size: 614 Bytes
Versions: 2
Compression:
Stored size: 614 Bytes
Contents
# frozen_string_literal: true require 'forwardable' module EveOnline module ESI class UniversePlanet < Base extend Forwardable API_PATH = '/v1/universe/planets/%<planet_id>s/' attr_reader :id def initialize(options = {}) super @id = options.fetch(:id) end def_delegators :model, :as_json, :name, :planet_id, :system_id, :type_id, :position def model @model ||= Models::Planet.new(response) end def scope; end def path format("#{ API_PATH }", planet_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_planet.rb |
eve_online-0.28.0 | lib/eve_online/esi/universe_planet.rb |