In Files

  • bundler/shared_helpers.rb

Class/Module Index [+]

Quicksearch

Bundler::SharedHelpers

Public Instance Methods

chdir(dir, &blk) click to toggle source
 
               # File bundler/shared_helpers.rb, line 50
def chdir(dir, &blk)
  Bundler.rubygems.ext_lock.synchronize do
    Dir.chdir dir, &blk
  end
end
            
const_get_safely(constant_name, namespace) click to toggle source
 
               # File bundler/shared_helpers.rb, line 120
def const_get_safely(constant_name, namespace)
  const_in_namespace = namespace.constants.include?(constant_name.to_s) ||
    namespace.constants.include?(constant_name.to_sym)
  return nil unless const_in_namespace
  namespace.const_get(constant_name)
end
            
default_bundle_dir() click to toggle source
 
               # File bundler/shared_helpers.rb, line 34
def default_bundle_dir
  bundle_dir = find_directory(".bundle")
  return nil unless bundle_dir

  bundle_dir = Pathname.new(bundle_dir)

  global_bundle_dir = Bundler.user_home.join(".bundle")
  return nil if bundle_dir == global_bundle_dir

  bundle_dir
end
            
default_gemfile() click to toggle source
 
               # File bundler/shared_helpers.rb, line 19
def default_gemfile
  gemfile = find_gemfile
  raise GemfileNotFound, "Could not locate Gemfile" unless gemfile
  Pathname.new(gemfile).tap{|x| x.untaint if RUBY_VERSION < "2.7" }.expand_path
end
            
default_lockfile() click to toggle source
 
               # File bundler/shared_helpers.rb, line 25
def default_lockfile
  gemfile = default_gemfile

  case gemfile.basename.to_s
  when "gems.rb" then Pathname.new(gemfile.sub(/.rb$/, ".locked"))
  else Pathname.new("#{gemfile}.lock")
  end.tap{|x| x.untaint if RUBY_VERSION < "2.7" }
end
            
digest(name) click to toggle source
 
               # File bundler/shared_helpers.rb, line 206
def digest(name)
  require "digest"
  Digest(name)
end
            
ensure_same_dependencies(spec, old_deps, new_deps) click to toggle source
 
               # File bundler/shared_helpers.rb, line 162
def ensure_same_dependencies(spec, old_deps, new_deps)
  new_deps = new_deps.reject {|d| d.type == :development }
  old_deps = old_deps.reject {|d| d.type == :development }

  without_type = proc {|d| Gem::Dependency.new(d.name, d.requirements_list.sort) }
  new_deps.map!(&without_type)
  old_deps.map!(&without_type)

  extra_deps = new_deps - old_deps
  return if extra_deps.empty?

  Bundler.ui.debug "#{spec.full_name} from #{spec.remote} has either corrupted API or lockfile dependencies" \
    " (was expecting #{old_deps.map(&:to_s)}, but the real spec has #{new_deps.map(&:to_s)})"
  raise APIResponseMismatchError,
    "Downloading #{spec.full_name} revealed dependencies not in the API or the lockfile (#{extra_deps.join(", ")})." \
    "\nEither installing with `--full-index` or running `bundle update #{spec.name}` should fix the problem."
end
            
filesystem_access(path, action = :write, &block) click to toggle source

Rescues permissions errors raised by file system operations (ie. Errno:EACCESS, Errno::EAGAIN) and raises more friendly errors instead.

@param path [String] the path that the action will be attempted to @param action [Symbol, to_s] the type of operation that will be

performed. For example: :write, :read, :exec

@yield path

@raise [Bundler::PermissionError] if Errno:EACCES is raised in the

given block

@raise [Bundler::TemporaryResourceError] if Errno:EAGAIN is raised in the

given block

@example

filesystem_access("vendor/cache", :write) do
  FileUtils.mkdir_p("vendor/cache")
end

@see {Bundler::PermissionError}

 
               # File bundler/shared_helpers.rb, line 102
def filesystem_access(path, action = :write, &block)
  yield(path.dup.tap{|x| x.untaint if RUBY_VERSION < "2.7" })
rescue Errno::EACCES
  raise PermissionError.new(path, action)
rescue Errno::EAGAIN
  raise TemporaryResourceError.new(path, action)
rescue Errno::EPROTO
  raise VirtualProtocolError.new
rescue Errno::ENOSPC
  raise NoSpaceOnDeviceError.new(path, action)
rescue *[const_get_safely(:ENOTSUP, Errno)].compact
  raise OperationNotSupportedError.new(path, action)
rescue Errno::EEXIST, Errno::ENOENT
  raise
rescue SystemCallError => e
  raise GenericSystemCallError.new(e, "There was an error accessing `#{path}`.")
end
            
in_bundle?() click to toggle source
 
               # File bundler/shared_helpers.rb, line 46
def in_bundle?
  find_gemfile
end
            
major_deprecation(major_version, message, print_caller_location: false) click to toggle source
 
               # File bundler/shared_helpers.rb, line 127
def major_deprecation(major_version, message, print_caller_location: false)
  if print_caller_location
    caller_location = caller_locations(2, 2).first
    message = "#{message} (called at #{caller_location.path}:#{caller_location.lineno})"
  end

  bundler_major_version = Bundler.bundler_major_version
  if bundler_major_version > major_version
    require_relative "errors"
    raise DeprecatedError, "[REMOVED] #{message}"
  end

  return unless bundler_major_version >= major_version && prints_major_deprecations?
  Bundler.ui.warn("[DEPRECATED] #{message}")
end
            
md5_available?() click to toggle source
 
               # File bundler/shared_helpers.rb, line 193
def md5_available?
  return @md5_available if defined?(@md5_available)
  @md5_available = begin
    require "openssl"
    ::OpenSSL::Digest.digest("MD5", "")
    true
  rescue LoadError
    true
  rescue ::OpenSSL::Digest::DigestError
    false
  end
end
            
pretty_dependency(dep, print_source = false) click to toggle source
 
               # File bundler/shared_helpers.rb, line 180
def pretty_dependency(dep, print_source = false)
  msg = String.new(dep.name)
  msg << " (#{dep.requirement})" unless dep.requirement == Gem::Requirement.default

  if dep.is_a?(Bundler::Dependency)
    platform_string = dep.platforms.join(", ")
    msg << " " << platform_string if !platform_string.empty? && platform_string != Gem::Platform::RUBY
  end

  msg << " from the `#{dep.source}` source" if print_source && dep.source
  msg
end
            
pwd() click to toggle source
 
               # File bundler/shared_helpers.rb, line 56
def pwd
  Bundler.rubygems.ext_lock.synchronize do
    Pathname.pwd
  end
end
            
root() click to toggle source
 
               # File bundler/shared_helpers.rb, line 13
def root
  gemfile = find_gemfile
  raise GemfileNotFound, "Could not locate Gemfile" unless gemfile
  Pathname.new(gemfile).tap{|x| x.untaint if RUBY_VERSION < "2.7" }.expand_path.parent
end
            
set_bundle_environment() click to toggle source
 
               # File bundler/shared_helpers.rb, line 75
def set_bundle_environment
  set_bundle_variables
  set_path
  set_rubyopt
  set_rubylib
end
            
set_env(key, value) click to toggle source
 
               # File bundler/shared_helpers.rb, line 278
def set_env(key, value)
  raise ArgumentError, "new key #{key}" unless EnvironmentPreserver::BUNDLER_KEYS.include?(key)
  orig_key = "#{EnvironmentPreserver::BUNDLER_PREFIX}#{key}"
  orig = ENV[key]
  orig ||= EnvironmentPreserver::INTENTIONALLY_NIL
  ENV[orig_key] ||= orig

  ENV[key] = value
end
            
trap(signal, override = false, &block) click to toggle source
 
               # File bundler/shared_helpers.rb, line 155
def trap(signal, override = false, &block)
  prior = Signal.trap(signal) do
    block.call
    prior.call unless override
  end
end
            
with_clean_git_env(&block) click to toggle source
 
               # File bundler/shared_helpers.rb, line 62
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
            
write_to_gemfile(gemfile_path, contents) click to toggle source
 
               # File bundler/shared_helpers.rb, line 211
def write_to_gemfile(gemfile_path, contents)
  filesystem_access(gemfile_path) {|g| File.open(g, "w") {|file| file.puts contents } }
end