class Rounders::Commander

Public Class Methods

start(argv = ARGV) click to toggle source
# File lib/rounders/commander.rb, line 6
def start(argv = ARGV)
  if Rounders.global?
    require 'rounders/commands/global_command'
    Commands::GlobalCommand.start(argv)
  else
    require 'rounders/commands/local_command'
    Commands::LocalCommand.start(argv)
  end
end