rvm / rvm1-ansible

The official ansible RVM role to install and manage your Ruby versions.
MIT License
271 stars 136 forks source link

Error bundler not found after 'rvm use ruby 2.2.2' #72

Closed bram70 closed 8 years ago

bram70 commented 8 years ago

while trying to run bundle install, we get the error:

Error bundle not found

Apparently bundle isn't installed, but if you dig deeper, bundler gem is installed in default gemset - this is only available when you run "rvm use ruby-2.2.2" (for this scenario) but we need it in any gemset: "rvm use ruby@gemset" and this is achieved by installing bundler gem in the "@global" gemset that is inherited by all the gemsets on given ruby. This is an update of #46 See PR #71

bram70 commented 8 years ago

solved with #71