I see this all the time in ruby:
require File.dirname(__FILE__) + "/../../config/environment"
What I am wondering is what does the __FILE__ mean?
|
3
|
I see this all the time in ruby:
What I am wondering is what does the __FILE__ mean?
|
|||
|
|
|
|
It is a reference to the current file name so in foo.rb |
||||
|
|
|
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 ruby (windows version anyways) I just checked and
|
|||
|
|
|
|
In If |
||
|
|