Created
March 11, 2010 17:50
-
-
Save jasonroelofs/329421 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 Parent | |
| def show_my_path(binding) | |
| puts File.expand_path(File.dirname(eval("__FILE__", binding))) | |
| end | |
| end | |
| class App < Parent | |
| end | |
| App.new.show_my_path(binding) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment