Exception: Bundler::Source::Git::GitNotAllowedError
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| Class Chain: 
          self,
           ::Bundler::GitError,::Bundler::BundlerError,
          StandardError | |
| Instance Chain: 
          self,
           ::Bundler::GitError,::Bundler::BundlerError,
          StandardError | |
| Inherits: | Bundler::GitError 
 | 
| Defined in: | lib/bundler/source/git/git_proxy.rb | 
Class Method Summary
- .new(command) ⇒ GitNotAllowedError constructor
::Bundler::BundlerError - Inherited
Constructor Details
    .new(command)  ⇒ GitNotAllowedError 
  
# File 'lib/bundler/source/git/git_proxy.rb', line 16
def initialize(command) msg = String.new msg << "Bundler is trying to run `#{command}` at runtime. You probably need to run `bundle install`. However, " msg << "this error message could probably be more useful. Please submit a ticket at https://github.com/rubygems/rubygems/issues/new?labels=Bundler&template=bundler-related-issue.md " msg << "with steps to reproduce as well as the following\n\nCALLER: #{caller.join("\n")}" super msg end