I'm trying to update a Rails project from Rails 4.2.7 to 5.2. I get the following message from bundle update:
Bundler could not find compatible versions for gem "actionpack":
In Gemfile:
haml-rails was resolved to 1.0.0, which depends on
actionpack (>= 4.0.1)
rails (= 5.2) was resolved to 5.2.0, which depends on
actionpack (= 5.2.0)
It doesn't look to me like there should be any conflict, unless I don't understand the version requirements correctly. Rails wants actionpack 5.2.0, haml-rails wants actionpack >= 4.0.1. 5.2.0 is greater than 4.0.1. Where's the conflict?