Skip to content

Instantly share code, notes, and snippets.

@michaelfeathers
Created February 17, 2012 22:19
Show Gist options
  • Save michaelfeathers/1855765 to your computer and use it in GitHub Desktop.
Save michaelfeathers/1855765 to your computer and use it in GitHub Desktop.
Five lines that turn Ruby into a different language
class Object
def method_missing m, *args
Object.respond_to?(m, true) ? Object.send(m, self, *args) : super
end
end
@ArrayMac
Copy link

ArrayMac commented Feb 18, 2012 via email

@solojavier
Copy link

Thanks for the response.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment