Make dir the current working directory for the duration of executing the given block.
# File rake/contrib/sys.rb, line 144 def indir(dir) olddir = Dir.pwd Dir.chdir(dir) yield ensure Dir.chdir(olddir) end
<code/>
<pre/>
<code/>and<pre/>for code samples.