-
-
Save karthiks/1858132 to your computer and use it in GitHub Desktop.
Five lines that turn Ruby into a different language
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Object | |
| def method_missing m, *args | |
| Object.respond_to?(m, true) ? Object.send(m, self, *args) : super | |
| end | |
| end |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@michaelfeathers tweeted the gist as "Five lines that turn Ruby into a different language". I guess, by language he meant DSL.