Module: StrongConfirmation
- Included in:
- EtnaApp::Magma::Models::ApplyTemplate, EtnaApp::Magma::Models::CopyTemplate, EtnaApp::Magma::Models::LoadFromRedcap, EtnaApp::Magma::Models::SetDateShiftRoot
- Defined in:
- lib/helpers.rb
Instance Method Summary collapse
Instance Method Details
#confirm ⇒ Object
92 93 94 95 96 97 98 99 100 101 |
# File 'lib/helpers.rb', line 92 def confirm puts "Confirm Y/n:" input = STDIN.gets.chomp if input.downcase != "y" puts "Bailing..." return false end true end |