Sha256: f89ff1aff4ce05d495f87dcbcfe912a4d24e7abd38e442c1f7bbcade4479fd39
Contents?: true
Size: 672 Bytes
Versions: 2
Compression:
Stored size: 672 Bytes
Contents
# frozen_string_literal: true require 'forwardable' module EveOnline module ESI class UniverseRegion < Base extend Forwardable API_PATH = '/v1/universe/regions/%<region_id>s/' attr_reader :id def initialize(options) super @id = options.fetch(:id) end def_delegators :model, :as_json, :constellations, :description, :name, :region_id def model @model ||= Models::Region.new(response) end def scope; end def additation_query_params [:language] end def path format("#{ API_PATH }", region_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_region.rb |
eve_online-0.28.0 | lib/eve_online/esi/universe_region.rb |