class Gbuild::RootCommand

Public Class Methods

run() click to toggle source
Calls superclass method
# File lib/gbuild/root_command.rb, line 18
def self.run
  case ARGV.first
  when nil
    super
  when "clean"
    ARGV.shift
    CleanCommand.run
  when "delete"
    ARGV.shift
    DeleteCommand.run
  else
    BuildCommand.run
  end
end