How do you undo bundle install --without

前端 未结 4 761
一生所求
一生所求 2020-12-24 11:06

How do you undo running

bundle install --without development

Right now, I have gems in the development group that are being ignored because

4条回答
  •  感情败类
    2020-12-24 11:39

    Run

    bundle install --without ""
    

    Ref: 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
    

提交回复
热议问题