The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
Ruby Installer

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Michael Neumann

Posts: 66
Nickname: backflash
Registered: May, 2003

Michael Neumann is fallen in Love with Ruby
Ruby Installer Posted: Jan 17, 2005 3:12 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Michael Neumann.
Original Post: Ruby Installer
Feed Title: Mike's Weblog
Feed URL: http://www.ntecs.de/blog-old/index.rss?cat=ruby&count=7
Feed Description: Blogging about Ruby and other interesting stuff.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Michael Neumann
Latest Posts From Mike's Weblog

Advertisement
I wrote this little shell-script to easen the task of installing Ruby locally into $HOME/usr. It downloads the stable snapshot via FTP, unpacks, compiles and installs Ruby, then installs a recent version of RubyGems. Run it like this:
  wget -O - http://ruby-installer.ntecs.de | sh

Or using fetch instead of wget:

  fetch -o - http://ruby-installer.ntecs.de | sh

Be sure that you add $HOME/usr/bin to your PATH after installing it (put this into .shrc):

  export PATH=$HOME/usr/bin:$PATH
  export RUBYOPT=-rubygems

Or for csh (put this into .cshrc):

  setenv PATH $HOME/usr/bin:$PATH
  setenv RUBYOPT -rubygems

BTW, if you pass the script "current" as argument, it will install the current snapshotof Ruby.

Read: Ruby Installer

Topic: CashHanded #2: BitTorrent Tracker Previous Topic   Next Topic Topic: Building YARV 0.1.0

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use