Sha256: edc5349bda4bbfe5c26d64fd6dabe482f821b054b7d9434819fd965e7bf9128a
Contents?: true
Size: 719 Bytes
Versions: 2
Compression:
Stored size: 719 Bytes
Contents
# frozen_string_literal: true require 'forwardable' module EveOnline module ESI class UniverseConstellation < Base extend Forwardable API_PATH = '/v1/universe/constellations/%<constellation_id>s/' attr_reader :id def initialize(options) super @id = options.fetch(:id) end def_delegators :model, :as_json, :constellation_id, :name, :region_id, :system_ids, :position def model @model ||= Models::Constellation.new(response) end def scope; end def additation_query_params [:language] end def path format("#{ API_PATH }", constellation_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_constellation.rb |
eve_online-0.28.0 | lib/eve_online/esi/universe_constellation.rb |