I have Rails application that I've cloned from github:
https://github.com/RailsApps/rails3-devise-rspec-cucumber
When I run bundle
, a new gemset rails3-devise-rspec-cucumber
is created.
Could you please explain, why that particular application forces
rvm
to create a gemset, while any other application won't do it?How can I prevent application from creating a gemset and force it to use the
global gemset
?
Thank you!