Sha256: 660651980f6ae67346f96915860a302078866bf8601fa5f561ac6d2071067dd3
Contents?: true
Size: 479 Bytes
Versions: 2
Compression:
Stored size: 479 Bytes
Contents
# frozen_string_literal: true module EveOnline module ESI class UniverseSystemKills < Base API_PATH = '/v2/universe/system_kills/' def system_kills @system_kills ||= begin output = [] response.each do |system_kill| output << Models::SystemKill.new(system_kill) end output end end def scope; end def path API_PATH end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
eve_online-0.29.0 | lib/eve_online/esi/universe_system_kills.rb |
eve_online-0.28.0 | lib/eve_online/esi/universe_system_kills.rb |