class Rails::Command::Base

def usage_path

Path to lookup a USAGE description in a file.
def usage_path
  if default_command_root
    path = File.join(default_command_root, "USAGE")
    path if File.exist?(path)
  end
end