Skip to content

Instantly share code, notes, and snippets.

@baxter
Created April 26, 2011 12:20
Show Gist options
  • Save baxter/942160 to your computer and use it in GitHub Desktop.
Save baxter/942160 to your computer and use it in GitHub Desktop.
Safe object
class SafeObject
def send(*args)
puts "Are you sure? (Y/N)"
if gets.chomp == 'Y'
super(*args)
else
puts "Very wise."
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment