I see this all the time in Ruby:
require File.dirname(__FILE__) + "/../../config/environment"
What does __FILE__ mean?
|
I see this all the time in Ruby:
What does |
||||
|
|
|
It is a reference to the current file name. In the file Edit: Ruby 1.9.2 and 1.9.3 appear to behave a little differently from what Luke Bayes said in his comment. With these files:
Running
|
|||||||||||||||
|
|
The value of
One workaround to this problem is to store the expanded value of FILE outside of any application code. As long as your
|
||||
|
|
|
In If |
|||
|
|
|
In Ruby, the Windows version anyways, I just checked and In PHP
I should note that in Ruby 1.9.1 In order to be compatible with both Ruby 1.8.7 and 1.9.1 (not sure about 1.9) you should require files by using the construct I showed above. |
||||
|