class EveOnline::ESI::UniverseFactions

Constants

API_PATH

Public Instance Methods

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