module Bundler::SharedHelpers

Attributes

gem_loaded[RW]

Public Instance Methods

chdir(dir, &blk) click to toggle source
# File lib/bundler/shared_helpers.rb, line 39
def chdir(dir, &blk)
  @chdir_monitor.synchronize do
    Dir.chdir dir, &blk
  end
end
default_gemfile() click to toggle source
# File lib/bundler/shared_helpers.rb, line 22
def default_gemfile
  gemfile = find_gemfile
  raise GemfileNotFound, "Could not locate Gemfile" unless gemfile
  Pathname.new(gemfile)
end
default_lockfile() click to toggle source
# File lib/bundler/shared_helpers.rb, line 28
def default_lockfile
  Pathname.new("#{default_gemfile}.lock")
end
in_bundle?() click to toggle source
# File lib/bundler/shared_helpers.rb, line 32
def in_bundle?
  find_gemfile
end
pwd() click to toggle source
# File lib/bundler/shared_helpers.rb, line 45
def pwd
  @chdir_monitor.synchronize do
    Dir.pwd
  end
end
with_clean_git_env(&block) click to toggle source
# File lib/bundler/shared_helpers.rb, line 60
def with_clean_git_env(&block)
  keys    = %w[GIT_DIR GIT_WORK_TREE]
  old_env = keys.inject({}) do |h, k|
    h.update(k => ENV[k])
  end

  keys.each {|key| ENV.delete(key) }

  block.call
ensure
  keys.each {|key| ENV[key] = old_env[key] }
end

Private Instance Methods

clean_load_path() click to toggle source
# File lib/bundler/shared_helpers.rb, line 95
def clean_load_path
  # handle 1.9 where system gems are always on the load path
  if defined?(::Gem)
    me = File.expand_path("../../", __FILE__)
    $LOAD_PATH.reject! do |p|
      next if File.expand_path(p) =~ /^#{Regexp.escape(me)}/
      p != File.dirname(__FILE__) &&
        Bundler.rubygems.gem_path.any?{|gp| p =~ /^#{Regexp.escape(gp)}/ }
    end
    $LOAD_PATH.uniq!
  end
end
find_gemfile() click to toggle source
# File lib/bundler/shared_helpers.rb, line 75
def find_gemfile
  given = ENV['BUNDLE_GEMFILE']
  return given if given && !given.empty?

  previous = nil
  current  = File.expand_path(SharedHelpers.pwd)

  until !File.directory?(current) || current == previous
    if ENV['BUNDLE_SPEC_RUN']
      # avoid stepping above the tmp directory when testing
      return nil if File.file?(File.join(current, 'bundler.gemspec'))
    end

    # otherwise return the Gemfile if it's there
    filename = File.join(current, 'Gemfile')
    return filename if File.file?(filename)
    current, previous = File.expand_path("..", current), current
  end
end