Exception: Bundler::Source::Git::GitNotInstalledError
- Inherits:
-
GitError
- Object
- StandardError
- BundlerError
- GitError
- Bundler::Source::Git::GitNotInstalledError
- Defined in:
- lib/bundler/source/git/git_proxy.rb
Instance Method Summary collapse
-
#initialize ⇒ GitNotInstalledError
constructor
A new instance of GitNotInstalledError.
Methods inherited from BundlerError
Constructor Details
#initialize ⇒ GitNotInstalledError
Returns a new instance of GitNotInstalledError.
7 8 9 10 11 12 |
# File 'lib/bundler/source/git/git_proxy.rb', line 7 def initialize msg = String.new msg << "You need to install git to be able to use gems from git repositories. " msg << "For help installing git, please refer to GitHub's tutorial at https://help.github.com/articles/set-up-git" super msg end |