Method: Bundler::Source::Git::MissingGitRevisionError#initialize

Defined in:
lib/bundler/source/git/git_proxy.rb

#initialize(command, destination_path, ref, repo) ⇒ MissingGitRevisionError

Returns a new instance of MissingGitRevisionError.


40
41
42
43
# File 'lib/bundler/source/git/git_proxy.rb', line 40

def initialize(command, destination_path, ref, repo)
  msg = "Revision #{ref} does not exist in the repository #{repo}. Maybe you misspelled it?"
  super command, destination_path, msg
end