Sha256: 84bfb97f9311ba440e4a89ea0e097edd073fa92d290b537faf7ff44411c2e8dd
Contents?: true
Size: 663 Bytes
Versions: 18
Compression:
Stored size: 663 Bytes
Contents
# frozen_string_literal: true require "forwardable" module EveOnline module ESI class UniverseCategory < Base extend Forwardable API_PATH = "/v1/universe/categories/%<category_id>s/" attr_reader :id def initialize(options) super @id = options.fetch(:id) end def_delegators :model, :as_json, :category_id, :name, :published, :group_ids def model @model ||= Models::Category.new(response) end def scope end def additional_query_params [:language] end def path format(API_PATH, category_id: id) end end end end
Version data entries
18 entries across 18 versions & 1 rubygems