Hi everyone!
There was a mistake with gem dependencies, resulting in net-scp 1.0.6
being
yanked: net-scp patch version increased net-ssh dependency minor version · Issue #80 · net-ssh/net-ssh · GitHub
Unfortunately, my Bundler had seen 1.0.6 and put that in my
Gemfile.lock.
Bundler did not understand - “bundle update net-scp” just kept local
version 1.0.6.
After some fighting, I had to “gem search -rda net-scp” and pick another
version, then peg to that version in Gemfile, then “bundle update
net-scp”.
Even though net-scp was originally just a dependency, pulled in by fog.
There’s an issue for this:
But in the meantime, is there a better way to get bundler to forget it’s
seen a version?