class Thor::Shell::Basic

def file_collision_help(block_given) #:nodoc:

:nodoc:
def file_collision_help(block_given) #:nodoc:
  help = <<-HELP
  Y - yes, overwrite
  n - no, do not overwrite
  a - all, overwrite this and all others
  q - quit, abort
  h - help, show this help
  HELP
  if block_given
    help << <<-HELP
  d - diff, show the differences between the old and the new
  m - merge, run merge tool
    HELP
  end
  help
end