Is there a way to get the path to "itself" in a rakefile loaded by rake?
ie for:
rake --rakefile ../../some/path/to/rakefile.rb
···
***
inside rakefile
myPath = # ???
p "running #{myPath}"
–
Posted via http://www.ruby-forum.com/.
Is there a way to get the path to "itself" in a rakefile loaded by rake?
ie for:
rake --rakefile ../../some/path/to/rakefile.rb
***
inside rakefile
myPath = # ???
p "running #{myPath}"
–
Posted via http://www.ruby-forum.com/.
Peter Pk schrieb:
Is there a way to get the path to "itself" in a rakefile loaded by rake?
ie for:
rake --rakefile ../../some/path/to/rakefile.rb***
inside rakefile
myPath = # ???
p "running #{myPath}"
try using the "magic variable" __FILE__ ?
Is there a way to get the path to "itself" in a rakefile loaded by rake?
Sure.
***
inside rakefile
myPath = # ???
my_path = File.expand_path(__FILE__)
p "running #{myPath}"
Hope that helps.
James Edward Gray II
On Jan 13, 2009, at 8:57 AM, Peter Pk wrote:
badboy wrote:
Peter Pk schrieb:
p "running #{myPath}"
try using the "magic variable" __FILE__ ?
Thanks! Thats it!
--
Posted via http://www.ruby-forum.com/.