How do you undo bundle install --without

前端 未结 4 760
一生所求
一生所求 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:41

    List configs

    bundle config

    Delete value from config

    bundle config --delete without

    Add value to config

    bundle config --local without development

    Or you can manually edit the values in .bundle/config file.

提交回复
热议问题