Module: StrongConfirmation

Instance Method Summary collapse

Instance Method Details

#confirmObject



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