Module: StrongConfirmation
- Included in:
- EtnaApp::Administrate::Models::ApplyTemplate, EtnaApp::Administrate::Models::CopyTemplate
- Defined in:
- lib/helpers.rb
Instance Method Summary collapse
Instance Method Details
#confirm ⇒ Object
74 75 76 77 78 79 80 81 82 |
# File 'lib/helpers.rb', line 74 def confirm puts "Confirm Y/n:" input = STDIN.gets.chomp if input != "Y" return false end true end |