Created
September 29, 2011 08:59
-
-
Save pasberth/1250346 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 Class | |
| def initbefore &process | |
| allocate.tap do |instance| | |
| instance.instance_eval &process | |
| end | |
| end | |
| end | |
| Hash.initbefore { initialize self } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment