Sha256: 76012b942aec0b1b5055e7411534bcd08fb04c1c856042cc76a6a17e367f25df
Contents?: true
Size: 702 Bytes
Versions: 2
Compression:
Stored size: 702 Bytes
Contents
# frozen_string_literal: true require 'forwardable' module EveOnline module ESI class UniverseGraphic < Base extend Forwardable API_PATH = '/v1/universe/graphics/%<graphic_id>s/' attr_reader :id def initialize(options) super @id = options.fetch(:id) end def_delegators :model, :as_json, :collision_file, :graphic_file, :graphic_id, :icon_folder, :sof_dna, :sof_fation_name, :sof_hull_name, :sof_race_name def model @model ||= Models::Graphic.new(response) end def scope; end def path format("#{ API_PATH }", graphic_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_graphic.rb |
eve_online-0.28.0 | lib/eve_online/esi/universe_graphic.rb |