How do you undo running
bundle install --without development
Right now, I have gems in the development group that are being ignored because
The updated, correct answer is @caspyin's, here.
My answer is still here for historical purposes:
Bundler settings are stored in a file named
.bundle/config. You can reset it by removing it, or removing the entire.bundledirectory, like this:rm -rfv .bundleOr, if you're scared of
rm -rf(it's OK, many people are):rm .bundle/config rmdir .bundle