Sha256: 3544864f5c02aa2e7b59c3218864f566459c595eccea71e41a271f7731e78ee4

Contents?: true

Size: 718 Bytes

Versions: 2

Compression:

Stored size: 718 Bytes

Contents

# frozen_string_literal: true

require 'forwardable'

module EveOnline
  module ESI
    class DogmaAttribute < Base
      extend Forwardable

      API_PATH = '/v1/dogma/attributes/%<attribute_id>s/'

      attr_reader :id

      def initialize(options)
        super

        @id = options.fetch(:id)
      end

      def_delegators :model, :as_json, :attribute_id, :default_value,
                     :description, :display_name, :high_is_good, :icon_id,
                     :name, :published, :stackable, :unit_id

      def model
        @model ||= Models::DogmaAttribute.new(response)
      end

      def scope; end

      def path
        format("#{ API_PATH }", attribute_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/dogma_attribute.rb
eve_online-0.28.0 lib/eve_online/esi/dogma_attribute.rb