Search code examples
ruby-on-railsbundler

Reset bundler path?


How can I reset the bundler install path to default?

I had initially set it with bundle install --path .gems but now I'd like to reset it to the default system location.


Solution

  • bundle install --system  
    

    Bundler docs

    Edit - this command has now been updated!

    See @Najmul's answer for the latest version