tutes-dump/dump/rubygems.html.docuwiki

25 lines
1.2 KiB
Plaintext

====== Using RubyGems at SDF ======
[[http://rubygems.org/|RubyGems]] is the de facto standard [[http://en.wikipedia.org/wiki/Package_manager|package manager]] for the [[http://www.ruby-lang.org/|Ruby programming language]].
Consider requesting system-wide installation of gems that others may find useful instead of installing local copies for yourself. The usual way of making such requests is to post on the REQUESTS bboard. For a brief introduction to bboard, go [[http://sdf.org/tutorials/unx/node7.html#SECTION00730000000000000000|here]].
To install gems in your home directory, place the following in your ".gemrc":
--
gem: --no-ri --no-rdoc --user-install
To access binaries installed by rubygems, append "/bin" to all gem paths listed by the "gem env" command and make sure they are in your path. For example, given:
$ gem env
...
- GEM PATHS:
- /usr/pkg/lib/ruby/gems/2.0.0
- /arpa/ns/n/nerfling/.gem/ruby/2.0.0
...
You should place both "/usr/pkg/lib/ruby/gems/2.0.0/bin" and "/arpa/ns/n/nerfling/.gem/ruby/2.0.0/bin" in your path.
In bash, the command is: "export PATH=$PATH:`gem env gempath | sed -e 's!:!/bin:!'`/bin"
$Id: rubygems.html,v 1.12 2014/06/05 02:36:25 nerfling Exp $