Difference between revisions of "Ruby"

From KeegansWiki
Jump to navigation Jump to search
(Created page with '=Installing Ruby with git= ==Ruby itself== * rvm package install zlib * bash < <(curl -s http://rvm.beginrescueend.com/install/rvm) ** Might have to manually download the rvm she…')
 
Line 7: Line 7:
 
** The zlib stuff is from an error, see [[https://rvm.beginrescueend.com/packages/zlib here]] for more info
 
** The zlib stuff is from an error, see [[https://rvm.beginrescueend.com/packages/zlib here]] for more info
 
==Gems==
 
==Gems==
 +
* export GEM_HOME=/home/builder/.rvm/gems/ruby-1.9.2-p180
 +
* gem install bundler
 +
cd to the gem source directory with a Gemfile in it
 +
* bundle install
 +
* rake install

Revision as of 09:33, 11 May 2011

Installing Ruby with git

Ruby itself

Gems

  • export GEM_HOME=/home/builder/.rvm/gems/ruby-1.9.2-p180
  • gem install bundler

cd to the gem source directory with a Gemfile in it

  • bundle install
  • rake install