Where does the information rendered by bundle info come from?
#4949
-
Beta Was this translation helpful? Give feedback.
Answered by
deivid-rodriguez
Oct 1, 2021
Replies: 1 comment 1 reply
-
|
mmmm this seems mostly unexpected to me.
Can you open a ticket with steps to repro? I'd like to know what we are missing. Also, a workaround should be to pass |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
deivid-rodriguez
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

mmmm this seems mostly unexpected to me.
bundle infoshould be able to detect this a give a better message: https://github.com/rubygems/rubygems/blob/d01d6ca84011b05251b31d496f75f6aff8f677c4/bundler/lib/bundler/cli/info.rb#L46-L49.bundle installshould verify whether (even if the lockfile is up to date and includes a correct resolution), you're missing any gems locally and trigger a reinstall in that case: https://github.com/rubygems/rubygems/blob/d01d6ca84011b05251b31d496f75f6aff8f677c4/bundler/lib/bundler/installer.rb#L275-L282 (the@definition.missing_gems?part should be verifying this).Can you open a ticket with steps to repro? I'd like to know what we are missing.
A…