Skip to content

Instantly share code, notes, and snippets.

Created July 29, 2014 16:39
Show Gist options
  • Save anonymous/b92f198dc1e12d662145 to your computer and use it in GitHub Desktop.
Save anonymous/b92f198dc1e12d662145 to your computer and use it in GitHub Desktop.
module M
refine NilClass do
def magic
"some magic stuff is happening"
end
end
end
class Moo; end
Moo.new.instance_eval('using M; nil.magic')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment