Module: Achoo::UI::Common

Included in:
Commands
Defined in:
lib/achoo/ui/common.rb

Instance Method Summary collapse

Instance Method Details

#confirmObject



7
8
9
10
11
# File 'lib/achoo/ui/common.rb', line 7

def confirm
  answer = Achoo::Term::ask "Submit? [Y/n]"
  answer.downcase!
  return answer == 'y' || answer == ''
end