ランニングを元に戻すには
bundle install --without development
今、私はこれを一度実行したため無視されている開発グループの宝石があります...
更新された正しい答えは、@ caspyinの here です。
私の答えは歴史的な目的のためにまだここにあります:
バンドラー設定は、
.bundle/config
という名前のファイルに保存されます。これを削除するか、次のように.bundle
ディレクトリ全体を削除することでリセットできます。rm -rfv .bundle
または、
rm -rf
が怖い場合(大丈夫、多くの人はそうです):rm .bundle/config rmdir .bundle
リスト構成
bundle config
構成から値を削除
bundle config --delete without
構成に値を追加
bundle config --local without development
または、.bundle/config
ファイルの値を手動で編集できます。
走る
bundle install --without ""
参照: https://github.com/carlhuda/bundler/blob/master/spec/install/gems/groups_spec.rb#L149-154
it "clears without when passed an empty list" do
bundle :install, :without => "Emo"
bundle 'install --without ""'
should_be_installed "activesupport 2.3.5"
end
bundle install --no-deployment