ruby-on-rails – Ruby on Rails:在安装gem时删除依赖项?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Ruby on Rails:在安装gem时删除依赖项?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在我的 Windows机器上安装twitter-bootstrap-rails.这个宝石依赖于therubyracer,它与Windows不兼容.我找到了这个:

therubyracer gem on windows

这告诉我,我应该能够依靠JScript.虽然我不知道如何告诉gem安装忽略依赖.我试过强制安装:

gem install -f twitter-bootstrap-rails --platform ruby

无济于事.有没有人怎么说“gem install twitter-bootstrap-rails [但忽略对therubyracer的依赖]”?

解决方法

根据 this doc,有选择
-f,--[no-]force            Force gem to install,bypassing dependency checks

--ignore-dependencies        Do not install any required dependent gems
原文链接:https://www.f2er.com/ruby/265543.html

猜你在找的Ruby相关文章