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)
Undoing a bundle in Microsoft Word will remove the necessary bundle formatting, allowing you to change and then recreate your bundle. To undo a bundle, simply click the 'Create/Undo Bundle' button to launch the Bundle-Maker.
When you make a change to the Gemfile(5) and then run bundle install , Bundler will update only the gems that you modified. In other words, if a gem that you did not modify worked before you called bundle install , it will continue to use the exact same versions of all dependencies as it used before the update.
Now, If I use following command: bundle install --without production. In above command, the --without production option prevents the local installation of any production gem means whatever gems are in the production group will not be installed -- which in our example is just one gem: pg .
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With