I was just going through an app to update dependencies and think I've found an incompatibility. platform-api depends on ~> 0.0.21 of heroics, which just today released 0.0.22. Running bundle update in the project updates the heroics dependency to 0.0.22 and keeps bundler from being able to load gems:
I was just going through an app to update dependencies and think I've found an incompatibility.
platform-api
depends on~> 0.0.21
ofheroics
, which just today released0.0.22
. Runningbundle update
in the project updates theheroics
dependency to0.0.22
and keepsbundler
from being able to load gems:The error does not occur if I force
gem 'heroics', '= 0.0.21'
inGemfile
.