Sha256: 0a5ef67de24a1f58900dff3ba5750b5764a54ab4dccc30d694f2dab634c22746
Contents?: true
Size: 523 Bytes
Versions: 18
Compression:
Stored size: 523 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class UniverseFactions < Base API_PATH = "/v2/universe/factions/" def factions @factions ||= begin output = [] response.each do |faction| output << Models::Faction.new(faction) end output end end def scope end def additional_query_params [:language] end def path API_PATH end end end end
Version data entries
18 entries across 18 versions & 1 rubygems