Hi
How do I get the directory where the rakefile.rb is located?
I want to use this as my root directory to locate everything off.
Cheers
|
|
|
|
|
|
|
use in
output:
Use this to get the dir name:
|
||
|
|
|
|
If this is a RoR app your Rakefile.rb should be in your RAILS_ROOT directory. So in any script you can specify file location like
|
||
|
|
|
|
You can get it by calling application.original_dir method. In task you can achieve application object using application method on task object. |
|||
|
|
|
|
Why not just use Dir.pwd ? |
||
|
|