Sha256: 12842c08000c236d95e1726a4deac0b4d4ec630d910e20541431a8b28b61e6f6
Contents?: true
Size: 853 Bytes
Versions: 2
Compression:
Stored size: 853 Bytes
Contents
# frozen_string_literal: true require 'forwardable' module EveOnline module ESI class UniverseType < Base extend Forwardable API_PATH = '/v3/universe/types/%<type_id>s/' attr_reader :id def initialize(options) super @id = options.fetch(:id) end def_delegators :model, :as_json, :capacity, :description, :graphic_id, :group_id, :icon_id, :market_group_id, :mass, :name, :packaged_volume, :portion_size, :published, :radius, :type_id, :volume, :dogma_attributes, :dogma_effects def model @model ||= Models::Type.new(response) end def scope; end def additation_query_params [:language] end def path format("#{ API_PATH }", type_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_type.rb |
eve_online-0.28.0 | lib/eve_online/esi/universe_type.rb |