Hi there.
We all know how bundler says on update:
Bundler could not find compatible versions for gem "xxxx":
In snapshot (Gemfile.lock):
xxxx (= 1.12.5)
In Gemfile:
xxxx (~> 1.12.5)
yyyy (~> 0.3.1) was resolved to 0.3.1, which depends on
xxxx (~> 1.10.3)
Running `bundle update` will rebuild your snapshot from scratch, using only
the gems in your Gemfile, which may resolve the conflict.
Also we know, we can't force author of gem yyyy update dependencies.
Is there way to avoid a mess with gem forking to update just 1 line to make bundler happy?
I believe it will be great to have an option to force bundler ignore some dependencies.
Hi there.
We all know how
bundlersays on update:Also we know, we can't force author of gem
yyyyupdate dependencies.Is there way to avoid a mess with gem forking to update just 1 line to make bundler happy?
I believe it will be great to have an option to force bundler ignore some dependencies.