删除捆绑标记

时间:2013-04-22 10:43:16

标签: ruby-on-rails

如何删除我应用于bundler的标志?这是我运行bundle install时发生的事情:

bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin --deployment

我正在寻找一个能帮我办理的答案:

bundle install

没有所有其他标志。提前谢谢。

1 个答案:

答案 0 :(得分:0)

当您使用标记运行bundle时,会在.bundle/config创建一个文件,其中包含带有标记的键/值对的YAML数据。

从项目根目录(包含.bundle/目录)运行以下命令以清除文件夹和其中包含的config文件。

rm -r .bundle

您可以详细了解配置文件 in the docs