Skip to content
BEAD

Ruby Gemfile Parser

Parse Ruby Gemfile — source, ruby version, gem declarations, groups, options.

Sources
1
https://rubygems.org
Ruby version
3.2.2
Total gems
11
Groups
4
default, development, test, production
:default (5 gems)
rails~> 7.1.0
pg~> 1.5
puma>= 5.0
bootsnapanyrequire: false
deviseany
:development (5 gems)
rspec-railsany
pry-railsany
factory_bot_railsany
web-consoleany
listen~> 3.3
:test (3 gems)
rspec-railsany
pry-railsany
factory_bot_railsany
:production (1 gem)
redis~> 5.0
</>Use this tool programmaticallycurl · JavaScript · MCP

Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.

curl
curl https://api.b-e-a-d.com/tools/gemfile-parser/run \
  -H "Content-Type: application/json" \
  -d '{
  "input": "your input here"
}'
JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/gemfile-parser/run", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
  "input": "your input here"
}),
});
const data = await res.json();
console.log(data.result);
MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
  "mcpServers": {
    "bead": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
    }
  }
}

# Then ask Claude to call:
mcp__bead__bead_gemfile_parser

Full reference: developer docs · OpenAPI spec

What we parse

  • source '…' declarations
  • ruby '3.2.0' version pins
  • gem 'name', '~> 1.2', require: false, github: 'owner/repo'
  • group :development, :test do … end blocks
  • Comments (# …)

You might also like