123456789_123456789_123456789_123456789_123456789_

Exception: Bundler::Source::Git::GitCommandError

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: Bundler::GitError
Defined in: lib/bundler/source/git/git_proxy.rb

Class Method Summary

Constructor Details

.new(command, path = nil, extra_info = nil) ⇒ GitCommandError

[ GitHub ]

  
# File 'lib/bundler/source/git/git_proxy.rb', line 28

def initialize(command, path = nil, extra_info = nil)
  msg = String.new
  msg << "Git error: command `git #{command}` in directory #{SharedHelpers.pwd} has failed."
  msg << "\n#{extra_info}" if extra_info
  msg << "\nIf this error persists you could try removing the cache directory '#{path}'" if path && path.exist?
  super msg
end