class Bundler::Source::Git::GitNotInstalledError

Parent:
Bundler::GitError

Public Class Methods

new() Show source
# File lib/bundler/source/git/git_proxy.rb, line 9
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
Calls superclass method Exception::new

Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.