class Tryouts::CLI::Run

def list

Displays all known tryouts from the current working directory
$ sergeant list
def list
  load_available_tryouts_files
  Tryouts.instances.each_pair do |n,tryouts_inst|
    puts n
    if Tryouts.verbose > 0
      puts "  #{tryouts_inst.paths.join("\n  ")}"
    end
    tryouts_inst.tryouts.each_pair do |t2,tryout|
      puts "  " << tryout.name
      tryout.drills.each do |drill|
        puts "    " << drill.name
      end
    end
  end
end