Class: EveOnline::ESI::UniverseSystemJumps

Inherits:
Base
  • Object
show all
Defined in:
lib/eve_online/esi/universe_system_jumps.rb

Constant Summary collapse

API_PATH =
"/v1/universe/system_jumps/"

Instance Method Summary collapse

Instance Method Details

#pathObject



22
23
24
# File 'lib/eve_online/esi/universe_system_jumps.rb', line 22

def path
  API_PATH
end

#scopeObject



19
20
# File 'lib/eve_online/esi/universe_system_jumps.rb', line 19

def scope
end

#system_jumpsObject



8
9
10
11
12
13
14
15
16
17
# File 'lib/eve_online/esi/universe_system_jumps.rb', line 8

def system_jumps
  @system_jumps ||=
    begin
      output = []
      response.each do |system_jump|
        output << Models::SystemJump.new(system_jump)
      end
      output
    end
end