vote up 1 vote down star

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

flag

4 Answers

vote up 8 vote down check

use __FILE__ to get the file name then you can get the directory from there:

in test.rb

puts __FILE__

output:

/users/foo/test.rb

__FILE__ resolves to the full path of the file it is in.

Use this to get the dir name:

File.dirname(__FILE__)
link|flag
vote up 1 vote down

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

 config.load_paths += %W( #{RAILS_ROOT}/extras )
link|flag
vote up 1 vote down

You can get it by calling application.original_dir method. In task you can achieve application object using application method on task object.

link|flag
vote up 1 vote down

Why not just use Dir.pwd

?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.