Sha256: 57898d8032a55f275a8ab5b38d0260ae3a06b76af762970de9edecdf96dcba3c
Contents?: true
Size: 502 Bytes
Versions: 18
Compression:
Stored size: 502 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class UniverseRaces < Base API_PATH = "/v1/universe/races/" def races @races ||= begin output = [] response.each do |race| output << Models::Race.new(race) 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