Skip to content

Instantly share code, notes, and snippets.

@frekw
Created February 16, 2010 16:51
Show Gist options
  • Save frekw/305660 to your computer and use it in GitHub Desktop.
Save frekw/305660 to your computer and use it in GitHub Desktop.
module Test
class Object
def test
puts "wiee"
end
end
foo = Object.new
foo.test # => "wiee"
end
asd = Object.new
asd.test # => NoMethodError
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment