{"id":13819648,"url":"https://github.com/railsbump/app","last_synced_at":"2025-05-16T07:31:47.824Z","repository":{"id":44166109,"uuid":"10974051","full_name":"railsbump/app","owner":"railsbump","description":"Check which gems are compatible with which Rails version!","archived":false,"fork":false,"pushed_at":"2025-03-09T03:56:11.000Z","size":22446,"stargazers_count":188,"open_issues_count":10,"forks_count":24,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-03-09T04:22:22.023Z","etag":null,"topics":["hacktoberfest","rails","ruby","ruby-on-rails","technical-debt"],"latest_commit_sha":null,"homepage":"https://railsbump.org","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/railsbump.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"fastruby"}},"created_at":"2013-06-26T17:15:59.000Z","updated_at":"2025-03-09T03:56:15.000Z","dependencies_parsed_at":"2024-03-20T09:51:13.642Z","dependency_job_id":"b3b3f640-2af9-497d-8e97-2f4e58390bdb","html_url":"https://github.com/railsbump/app","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/railsbump%2Fapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/railsbump%2Fapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/railsbump%2Fapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/railsbump%2Fapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/railsbump","download_url":"https://codeload.github.com/railsbump/app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254488270,"owners_count":22079393,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest","rails","ruby","ruby-on-rails","technical-debt"],"created_at":"2024-08-04T08:00:51.206Z","updated_at":"2025-05-16T07:31:47.818Z","avatar_url":"https://github.com/railsbump.png","language":"Ruby","readme":"# 👊 RailsBump\n\n[![Test](https://github.com/railsbump/app/actions/workflows/test.yml/badge.svg)](https://github.com/railsbump/app/actions/workflows/test.yml)\n[![codecov](https://codecov.io/gh/railsbump/app/graph/badge.svg?token=htyQYxjXHT)](https://codecov.io/gh/railsbump/app)\n\nCheck your Ruby gems for compatibility with all major Rails versions.\n\n## Usage\n\nThe app is live at https://railsbump.org/, where you can check an [individual gem](http://railsbump.org/gems/new) or a [whole Bundler lockfile](http://railsbump.org/lockfiles/new) (Gemfile.lock).\n\n## Behind the scenes\n\nRailsBump uses a few approaches to check whether a gem version is compatible with a specific Rails release:\n\n- if the gem version has a direct dependency on one of the \"Rails gems\" (rails, railties, activerecord, activesupport, etc.), it may be clear that it is not compatible with some Rails releases immediately\n- if the gem version has a dependency on a specific version of another gem that we already know is not compatible with a Rails release, this gem version is not compatible either,\n- if all other approaches don't work, RailsBump simply puts the gem version and a Rails release in a Gemfile and lets Bundler figure it out. If the gem can be successfully installed along with the Rails release, it counts as \"compatible\".\n\nSince some gems have a lot of versions and each one needs to be checked against multiple Rails releases, this could get out of hand quickly. To minimize the amount of compatibility checks that need to be done, the gem versions are grouped by their dependencies first. If multiple versions (of the same gem or even of different gems) have the same dependencies, a single check is enough to determine whether all of them are compatible with a specific Rails release or not.\n\nTo actually perform the check, [GitHub Actions](https://github.com/features/actions) are used. For each check, a new branch is created in a [separate repository](https://github.com/railsbump/checker), which triggers a [workflow](https://github.com/railsbump/checker/blob/main/.github/workflows/check.yml) that essentially tries to run `bundle lock` and reports the result back to the RailsBump app via a [webhook](https://docs.github.com/en/developers/webhooks-and-events/about-webhooks).\n\n## History\n\nRailsBump used to be called Ready4Rails until December 2019, when [Manuel Meurer](https://github.com/manuelmeurer) took over from [Florent Guilleux](https://github.com/Florent2) to automate the service that Ready4Rails had been doing more or less manually until then.\n\nThe relaunch took longer than expected, mainly because of the Coronavirus pandemic, and the first usable version of RailsBump was finally launched in August 2020.\n\n## Stats\n\nYou can see live stats from Plausible Analytics here: https://plausible.io/railsbump.org\n\n## Contributing\n\nIf you notice a bug or have an idea for an improvement, please open an [issue](https://github.com/railsbump/app/issues/new) or submit a [PR](https://github.com/railsbump/app/pulls).\n\nIf you'd like to get involved in the development, get in touch [via email](mailto:hello@railsbump.org)!\n\n### Setup\n\nYou will need these services:\n\n- Postgres 16 or higher\n- Redis\n\nIn order to set up the application locally:\n\n1. `git clone git@github.com:railsbump/app.git`\n2. `bin/setup`\n3. `rake data:find_or_create_rails_releases`\n4. `foreman start -f Procfile.dev`\n5. Go to http://localhost:3000\n\nIf these steps don't work, please submit a new issue: https://github.com/railsbump/app/issues/new\n\nWe recommend running these scheduled tasks:\n\n- `bin/rails runner \"Compats::CheckUnchecked.call\"` once every 5 to 10 minutes\n\n- `bin/rails runner \"Maintenance::Hourly.call\"` once an hour\n\n## Support\n\nIf you find RailsBump useful and would like to support the ongoing development, please consider\n[submitting an issue](https://github.com/railsbump/app/issues) or [become a sponsor](https://github.com/sponsors/fastruby)!\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE.txt file for details.\n\n## Sponsorship\n\n![FastRuby.io | Technical Debt Remediation Services for Ruby, Rails, and JavaScript](fastruby-logo.png)\n\nRailsBump is supported, maintained, and funded by [FastRuby.io](https://fastruby.io?utm_source=github\u0026utm_campaign=railsbump-sponsorship). The names and logos for FastRuby.io are trademarks of The Lean Software Boutique LLC.\n","funding_links":["https://github.com/sponsors/fastruby","https://github.com/sponsors/fastruby)!"],"categories":["Happy Exploring 🤘","Ruby"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frailsbump%2Fapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frailsbump%2Fapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frailsbump%2Fapp/lists"}