I'm currently working on a project which was changed from ruby version 2.0.0
to ruby verion 2.1.1
,
i'm using rvm
for maintaining my ruby versions. After installing ruby 2.1.1
, I ran gem install bundler
which installed version 1.6.2
, doing so I had copied a specific gemset version to a newly created one for version 2.1.1
after which when running gem list
on, it displayed all the gems, and when I tried to run the app it started throwing errors.
So when I ran bundle install
again it created a separate folder parallel and installed the gems there. My question is why does this happen, is it a new feature of bundler 1.6.2
'?
Initially I had my bundler version to 1.5.2
.
Any input on this will be really helpful.
Thanks.