Method: Bundler::SharedHelpers#chdir

Defined in:
lib/bundler/shared_helpers.rb

#chdir(dir, &blk) ⇒ Object


52
53
54
55
56
# File 'lib/bundler/shared_helpers.rb', line 52

def chdir(dir, &blk)
  Bundler.rubygems.ext_lock.synchronize do
    Dir.chdir dir, &blk
  end
end