Skip to content

Instantly share code, notes, and snippets.

@rubysolo
Created May 18, 2012 19:54
Show Gist options
  • Save rubysolo/2727297 to your computer and use it in GitHub Desktop.
Save rubysolo/2727297 to your computer and use it in GitHub Desktop.
class Module
def method_added(method_id)
if method_id == :application
puts "-" * 80
puts "HAX0RED!"
puts caller.join("\n")
puts "=" * 80
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment