Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要安装旧版本的cluster_chef,但它已被拉出。我的项目具有疯狂的依赖关系,所以我不确定如何安装已被拉出的东西。
任何帮助将不胜感激。
无法安装 yanked gem。但是您也许可以通过放松项目 Gemfile 中的版本依赖关系来解决您的问题?
代替:
gem 'cluster_chef', '3.0.4'
利用:
gem 'cluster_chef', '~> 3.0.4'
如果 3.0.4 版本cluster_chef不可用,Bundler 将安装满足所有依赖项的最新版本的 gem。
cluster_chef
如果您仍然停留在依赖项中,您的最后一个解决方案是根据 cluster_chef 的 yanked 版本分叉和编辑库以使用它的更新版本。