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.
有没有办法配置捆绑器,以便它始终运行 install--full-index而不必每次都指定它?每个 Gemfile 或系统范围。
--full-index
对于这个和其他 Bundler 选项,我发现最好的方法是使用 shell 函数(或别名):
function bi { bundle install --standalone --binstubs --full-index $*; }
某些选项(例如--path)在.bundle/config第一次使用时存储。但是如果你不想记住你是否使用过它们,你也可以把它们放在你的 shell 函数中。
--path
.bundle/config