W3cubDocs

/Ruby 2.7

class Bundler::Source::Git::MissingGitRevisionError

Parent:
Bundler::Source::Git::GitCommandError

Public Class Methods

new(command, path, ref, repo) Show source
# File lib/bundler/source/git/git_proxy.rb, line 42
def initialize(command, path, ref, repo)
  msg = "Revision #{ref} does not exist in the repository #{repo}. Maybe you misspelled it?"
  super command, path, msg
end

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