class EveOnline::ESI::UniverseAncestries

Constants

API_PATH

Public Instance Methods

additional_query_params() click to toggle source
# File lib/eve_online/esi/universe_ancestries.rb, line 22
def additional_query_params
  [:language]
end
ancestries() click to toggle source
# File lib/eve_online/esi/universe_ancestries.rb, line 8
def ancestries
  @ancestries ||=
    begin
      output = []
      response.each do |ancestry|
        output << Models::Ancestry.new(ancestry)
      end
      output
    end
end
path() click to toggle source
# File lib/eve_online/esi/universe_ancestries.rb, line 26
def path
  API_PATH
end
scope() click to toggle source
# File lib/eve_online/esi/universe_ancestries.rb, line 19
def scope
end