Reputation: 41
by default bundler install gems into system root. but I want to install gems into $HOME. how can I do it?
Upvotes: 1
Views: 1385
You need to edit your ~/.gemrc file and add to it:
gem: --local
Upvotes: 3