Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_3_392) is shown here.
indir(dir)
public
Make dir the current working directory for the duration of
executing the given block.
# File lib/rake/contrib/sys.rb, line 126
def indir(dir)
olddir = Dir.pwd
Dir.chdir(dir)
yield
ensure
Dir.chdir(olddir)
end