class Rake::Application

def init(app_name='rake')

Initialize the command line parameters and app name.
def init(app_name='rake')
  standard_exception_handling do
    @name = app_name
    handle_options
    collect_tasks
  end
end