0

Running across this issue using Bundle Update. Shouldn't the tilde-greater-than or twiddle-wakka and equals-to both resolve to 5.1.0?

Bundler could not find compatible versions for gem "actionmailer":
      In Gemfile:
        rails (= 5.1) was resolved to 5.1.0, which depends on
          actionmailer (= 5.1.0)

        solidus_core (~> 2.5.0) was resolved to 2.5.0, which depends on
          actionmailer (~> 5.1.0)

Any pointers are appreciated. Thanks.

bazfer
  • 23
  • 8
  • Delete the gemlock file and run `bundle install`. If the issue persists- post your output. – chevybow May 02 '18 at 20:25
  • Tried it, not a difference: Bundler could not find compatible versions for gem "actionmailer": In Gemfile: rails (= 5.1) was resolved to 5.1.0, which depends on actionmailer (= 5.1.0) solidus_core (~> 2.5.0) was resolved to 2.5.0, which depends on actionmailer (~> 5.1.0) – bazfer May 02 '18 at 20:51
  • Just curious- have you tried different versions of solidus_core? – chevybow May 02 '18 at 21:12

1 Answers1

0

I recommend changing rails version specification to "twiddle-wakka" as well. It will let you apply bugfix updates (5.1.0 -> 5.1.1, etc) without changing Gemfile:

gem 'rails', '~> 5.1.0'
Ilya Vassilevsky
  • 981
  • 6
  • 14
  • Tried doing this, gettin similar errors: Bundler could not find compatible versions for gem "actionpack": In Gemfile: rails (~> 5.1) was resolved to 5.1.6, which depends on actionpack (= 5.1.6) solidus_core (~> 2.5.0) was resolved to 2.5.0, which depends on ransack (~> 1.8) was resolved to 1.8.8, which depends on actionpack (>= 3.0) solidus_core (~> 2.5.0) was resolved to 2.5.0, which depends on actionpack (~> 5.1.0) – bazfer May 02 '18 at 20:48
  • I have no other ideas then :( – Ilya Vassilevsky May 03 '18 at 18:18