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 |
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.