web-dev-qa-db-ja.com

バンドルのインストールを元に戻す方法-なし

ランニングを元に戻すには

bundle install --without development

今、私はこれを一度実行したため無視されている開発グループの宝石があります...

44
Jonathan Leung

更新された正しい答えは、@ caspyinの here です。

私の答えは歴史的な目的のためにまだここにあります:

バンドラー設定は、.bundle/configという名前のファイルに保存されます。これを削除するか、次のように.bundleディレクトリ全体を削除することでリセットできます。

rm -rfv .bundle

または、rm -rfが怖い場合(大丈夫、多くの人はそうです):

rm .bundle/config
rmdir .bundle
42
Fábio Batista

リスト構成

bundle config

構成から値を削除

bundle config --delete without

構成に値を追加

bundle config --local without development

または、.bundle/configファイルの値を手動で編集できます。

44
caspyin

走る

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
7
Dogbert
bundle install --no-deployment
1
dedicateditman