How do you undo bundle install --without

Jonathan Leung picture Jonathan Leung · Mar 19, 2012 · Viewed 16.4k times · Source

How do you undo running

bundle install --without development

Right now, I have gems in the development group that are being ignored because I ran this once... (note that I have tried deleting gemfile.lock to no avail)

Answer

caspyin picture caspyin · Feb 28, 2013

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.