Exception: Bundler::Source::Git::GitCommandError
- Inherits:
-
GitError
- Object
- StandardError
- BundlerError
- GitError
- Bundler::Source::Git::GitCommandError
- Defined in:
- lib/bundler/source/git/git_proxy.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#command ⇒ Object
readonly
Returns the value of attribute command.
Instance Method Summary collapse
-
#initialize(command, path = nil, extra_info = nil) ⇒ GitCommandError
constructor
A new instance of GitCommandError.
Methods inherited from BundlerError
Constructor Details
#initialize(command, path = nil, extra_info = nil) ⇒ GitCommandError
Returns a new instance of GitCommandError.
30 31 32 33 34 35 36 37 38 |
# File 'lib/bundler/source/git/git_proxy.rb', line 30 def initialize(command, path = nil, extra_info = nil) @command = command 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 |
Instance Attribute Details
#command ⇒ Object (readonly)
Returns the value of attribute command.
28 29 30 |
# File 'lib/bundler/source/git/git_proxy.rb', line 28 def command @command end |