Class: Raykit::Console

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

Class Method Summary collapse

Class Method Details

.runObject



31
32
33
34
35
36
37
38
39
# File 'lib/raykit/console.rb', line 31

def self.run

    if(ARGV.length == 0)
        Parser.parse %w[--help]
        0
    else
        Parser.parse ARGV
    end
end