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 | |
| bootsnap | any | require: false |
| devise | any |
:development (5 gems)
| rspec-rails | any | |
| pry-rails | any | |
| factory_bot_rails | any | |
| web-console | any | |
| listen | ~> 3.3 |
:test (3 gems)
| rspec-rails | any | |
| pry-rails | any | |
| factory_bot_rails | any |
: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_parserFull reference: developer docs · OpenAPI spec
What we parse
source '…'declarationsruby '3.2.0'version pinsgem 'name', '~> 1.2', require: false, github: 'owner/repo'group :development, :test do … endblocks- Comments (
# …)
You might also like
- Cargo.toml ParserParse Rust Cargo manifests — package, dependencies (with features), dev/build deps, features, workspace.
- composer.json ValidatorValidate PHP Composer manifests — name, require, autoload, license, stability.
- go.mod ParserParse Go module files — module, go/toolchain version, requires (direct vs indirect), replace, exclude, retract.
- HTTP Status Code ReferenceSearchable reference of every HTTP status code with descriptions and category.