We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/subelsky/bundler_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
bundler_mcp.rb•426 B
# frozen_string_literal: true
require_relative "bundler_mcp/version"
# Namespace for BundlerMCP code
module BundlerMCP
# Base error class for BundlerMCP
Error = Class.new(StandardError)
# Raised when Bundler cannot find a Gemfile
class GemfileNotFound < Error
def initialize(msg = DEFAULT_MESSAGE)
super
end
DEFAULT_MESSAGE = "Bundler cannot find a Gemfile; try setting BUNDLE_GEMFILE"
end
end