class Thor::Shell::Basic

def yes?(statement, color=nil)


"yes".
Make a question the to user and returns true if the user replies "y" or
def yes?(statement, color=nil)
  !!(ask(statement, color) =~ is?(:yes))
end