Posts

Showing posts with the label compatibility

Bundler could not find compatible versions for multiple gems that seem to fall within range of requirements

Bundler could not find compatible versions for multiple gems that seem to fall within range of requirements I'm trying to use a gem spree , which depends on kaminari (~> 1.0.1) . In my Gemfile.lock , I have kaminari (= 1.1.1) . This satisfies the requirement for spree , since it's greater than or equal to the last digit. However, I'm getting this error when I try to bundle: spree kaminari (~> 1.0.1) Gemfile.lock kaminari (= 1.1.1) spree Bundler could not find compatible versions for gem "kaminari": In snapshot (Gemfile.lock): kaminari (= 1.1.1) In Gemfile: activeadmin (~> 1.3) was resolved to 1.3.0, which depends on kaminari (>= 0.15) rails_admin (~> 1.3) was resolved to 1.3.0, which depends on kaminari (< 2.0, >= 0.14) spree (~> 3.5.0) was resolved to 3.5.0, which depends on spree_core (= 3.5.0) was resolved to 3.5.0, which depends on kaminari (~> 1.0.1) Running `bundle update` will rebuild ...