Reputation: 3577
I am running RHEL 6.2 on a VM (I have no control over it). I would like to use Ruby along with Mysql to do the work I need to do. But right now the server does not have the mysql gem installed. It doesn't even have ruby gems installed. So I can't simply do gem install mysql
. The people maintaining the server suggested I do local install of ruby gems. Is there a benefit to this? What if the server is hosting a web application that consists of code depending on a gem? Will this effect anything?
Upvotes: 0
Views: 345
Reputation: 21690
Either in ~/.gem
(local) or in /usr/lib/ruby
(system). Locally installed gems are accessible by you only, system gems everyone can use.
Upvotes: 1