Sha256: 91ee98c513e68fa4c2e1e0fd99c6739a9f0f374aaa8642fa0a4aada769aea8a3
Contents?: true
Size: 668 Bytes
Versions: 15
Compression:
Stored size: 668 Bytes
Contents
# frozen_string_literal: true require "forwardable" module EveOnline module ESI class CharacterShip < Base extend Forwardable API_PATH = "/v2/characters/%<character_id>s/ship/" attr_reader :character_id def initialize(options) super @character_id = options.fetch(:character_id) end def_delegators :model, :as_json, :ship_item_id, :ship_name, :ship_type_id def model @model ||= Models::CharacterShip.new(response) end def scope "esi-location.read_ship_type.v1" end def path format(API_PATH, character_id: character_id) end end end end
Version data entries
15 entries across 15 versions & 1 rubygems