Last active
August 29, 2015 13:55
-
-
Save langsharpe/8702878 to your computer and use it in GitHub Desktop.
Does this pattern have a name?
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 Derp | |
| def self.do_the_thing(param) | |
| new(param).do_the_thing | |
| end | |
| def do_the_thing(param) | |
| # Actually does the thing | |
| end | |
| end | |
| Derp.do_the_thing('herp') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment