Sha256: 2ba34f240cf2e3b6630cdfc4a66cd2c0ad3f746e016ea67d9d2ff067192694fa
Contents?: true
Size: 674 Bytes
Versions: 18
Compression:
Stored size: 674 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
18 entries across 18 versions & 1 rubygems