如果我的应用程序与特定版本有某些依赖关系,但使用其他需要与以前版本相同的依赖关系的gem会怎么样?
例如:
Bundler could not find compatible versions for gem "other_gem":
In Gemfile:
first_gem depends on
other_gem (~> 0.7.3)
second_gem depends on
other_gem (0.6.1)
我现在正在做的是用这个gem分配一个repo,将依赖版本更改为我需要的版本并直接从GitHub链接gem。
有什么办法可以避免吗?