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
while trying to run bundle install, we get the error:
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