Class: BundlerMCP::GemfileNotFound

Inherits:
Error
  • Object
show all
Defined in:
lib/bundler_mcp.rb

Overview

Raised when Bundler cannot find a Gemfile

Constant Summary collapse

DEFAULT_MESSAGE =
"Bundler cannot find a Gemfile; try setting BUNDLE_GEMFILE"

Instance Method Summary collapse

Constructor Details

#initialize(msg = DEFAULT_MESSAGE) ⇒ GemfileNotFound

Returns a new instance of GemfileNotFound.



12
13
14
# File 'lib/bundler_mcp.rb', line 12

def initialize(msg = DEFAULT_MESSAGE)
  super
end