class EveOnline::ESI::UniverseRaces

Constants

API_PATH

Public Instance Methods

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