yltsrc
yltsrc

Reputation: 41

howto install gems in $HOME instead of "/" with bundler?

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

Answers (1)

yltsrc
yltsrc

Reputation: 41

You need to edit your ~/.gemrc file and add to it:

gem: --local

Upvotes: 3

Related Questions