Class: Raykit::Console

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

Class Method Summary collapse

Class Method Details

.runObject



52
53
54
55
56
57
58
59
# File 'lib/raykit/console.rb', line 52

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