Module: StrongConfirmation

Instance Method Summary collapse

Instance Method Details

#confirmObject



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