-
-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Local PATH entries in Gemfile.locked cause 500 server error #108
Comments
@svoop Thanks for submitting this issue! I started this draft PR to reproduce the error: #109 RailsBump raises this error when it finds a PATH in the Gemfile.lock which is not getting rescued properly:
It will never find it, so this should be interpreted as: If I can't find the gem, because it's a vendored gem, or because it is a gem in a private repository, then I can't tell you whether it is compatible or not. 💯
Yes, agreed. I think it should be immediately marked as "inconclusive" which is a possible status for a compatibility check: https://github.com/railsbump/app/blob/main/app/models/compat.rb#L4-L9 |
We have a few local vendored gems (unreleased or not yet released gems) in our Rails app such as:
This translates to the PATH line:
And it seems, Railsbump doesn't like those. Testing them against Rails versions is of course impossible, but instead of throwing a 500 Server Error, maybe just ignore and skip them?
The text was updated successfully, but these errors were encountered: