Created
February 12, 2010 01:42
-
-
Save adelcambre/302217 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
| module Foo | |
| module Bar | |
| module Helper | |
| def make_it_so | |
| return where_i_came_from | |
| end | |
| end | |
| end | |
| end | |
| class Asdf | |
| include Foo::Bar::Helper | |
| end | |
| Asdf.new.make_it_so # => Foo::Bar::Helper |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment