Skip to content

Instantly share code, notes, and snippets.

@hexgnu
Created August 5, 2011 21:45
Show Gist options
  • Save hexgnu/1128596 to your computer and use it in GitHub Desktop.
Save hexgnu/1128596 to your computer and use it in GitHub Desktop.
'Convenient'
class Convenient
instance_methods.each do |meth|
puts "We dont want anybody touching #{meth}"
private :"#{meth}"
end
def initialize
puts 'HA you cant do shit with me bitch'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment