位元詩人 技術雜談:Install Ruby Gems in Home Directory

Facebook Twitter LinkedIn LINE Skype EverNote GMail Yahoo Email

Although some system package managers on Linux or Unix provides Ruby gems as package, you still want to gem to install updated or specific gems sometimes. One popular way is using RVM, a command-line tool which allow you to manage multiple Ruby environment. Nevertheless, if you do not need multiple Ruby versions in one system, you may also choose to install Ruby gems to local directories like home directory. By this way, gems files will not be mixed with other system files.

To install gems locally, set ~/.gemrc. Before that, type gem environment in terminal to get some information about gem environment. What you need is GEM PATHS.


$ gem environment
# other message omitted...
- GEM PATHS:
    - /Library/Ruby/Gems/2.0.0
    - /Users/user/.gem/ruby/2.0.0
    - /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/gems/2.0.0
{{< / highlight >}}

Edit *~/.gemrc*.  Set *gemhome* and *gempath* variable with your own values.  Personally, I prefer to store all library files in *~/lib*.  You may set to other path.  Remember to set with **absolute path** because *~/.gemrc* is not a shell script file.

```text
gemhome: /Users/user/lib/gems
gempath:
- /Users/user/lib/gems
- /Library/Ruby/Gems/2.0.0
- /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/gems/2.0.0
{{< / highlight >}}

Set **GEM_HOME**, **GEM_PATH** and **PATH** variable in *~/.profile* or *~/.bash_profile* to use executives.

```bash
export GEM_HOME=$HOME/lib/gems
export GEM_PATH=$HOME/lib/gems

if [ -d $HOME/lib/gems/bin ]; then
    PATH=$HOME/lib/gems/bin:$PATH
fi

export PATH
{{< / highlight >}}

Finally, you can install gems in home directory and enjoy Ruby programming.
關於作者

身為資訊領域碩士,位元詩人 (ByteBard) 認為開發應用程式的目的是為社會帶來價值。如果在這個過程中該軟體能成為永續經營的項目,那就是開發者和使用者雙贏的局面。

位元詩人喜歡用開源技術來解決各式各樣的問題,但必要時對專有技術也不排斥。閒暇之餘,位元詩人將所學寫成文章,放在這個網站上和大家分享。