Class: Rips::RipsLauncher

Inherits:
Object
  • Object
show all
Defined in:
lib/rips.rb

Instance Method Summary collapse

Constructor Details

#initializeRipsLauncher

@argv: input’s arguments @debug: switch to show trace in console @source: source file with Rips instructions @output: output file with binary instructions



12
13
14
15
16
17
18
19
# File 'lib/rips.rb', line 12

def initialize
  @argv = ARGV
  @debug = debug_mode?
  @source = source_file
  @output = output_file

  run
end