From: Thomas Sawyer Date: 2008-10-14T03:27:45+09:00 Subject: [ruby-core:19315] [Feature #643] __DIR__ Feature #643: __DIR__ http://redmine.ruby-lang.org/issues/show/643 Author: Thomas Sawyer Status: Open, Priority: Normal There is an snippet of code found in many Ruby scripts, especially testing scripts. It is... File.dirname(__FILE__) For something so common --and something that can not, by its very nature, be put into a reusable method, it is annoying to have to repeatedly calculate the current scripts location. So I respectfully request that a future version of Ruby provide a built-in reference that can be used instead: __DIR__ This will improve readability, remove the need for extra variables to store this information, and at the very least, save us a good many keystrokes. ---------------------------------------- http://redmine.ruby-lang.org