class Bundler::Installer

def resolve_locally

def resolve_locally
  # Return unless all the dependencies have = version requirements
  return if actual_dependencies.any? { |d| ambiguous?(d) }
  specs = super
  # Simple logic for now. Can improve later.
  specs.length == actual_dependencies.length && specs
rescue GemNotFound, PathError => e
  nil
end