Created
October 15, 2010 17:40
-
-
Save Asher-/628609 to your computer and use it in GitHub Desktop.
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 AClass | |
| def method | |
| puts 'do stuff' | |
| end | |
| alias_method new_method_name, method | |
| def method | |
| puts 'do stuff first' | |
| new_method_name | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment