Skip to content

Instantly share code, notes, and snippets.

@defunkt
Created May 19, 2010 17:53
Show Gist options
  • Save defunkt/406608 to your computer and use it in GitHub Desktop.
Save defunkt/406608 to your computer and use it in GitHub Desktop.
My Ruby Setup
# directory structure of /ruby
$ tree -L 1 /ruby
/ruby
|-- default -> ree-1.8.7
|-- ree-1.8.7
`-- ruby-1.9.1-p376
3 directories, 0 files
# ruby
export RUBY_PATH=/ruby/default
export PATH=$RUBY_PATH/bin:$PATH
# gem
alias gemi='gem install --no-rdoc --no-ri'
export GEM_HOME="$RUBY_PATH/gems"
export GEM_PATH="$GEM_HOME"
export PATH="$RUBY_PATH/gems/bin:$PATH"
# rpg
RPGPATH=$RUBY_PATH/default/rpg
RPGSTALETIME='2 weeks'
# rip
export RIPDIR=$RUBY_PATH/rip
eval `rip-config`
eval `rip-completion`
(rip envs | grep system) > /dev/null 2>&1 &&
rip-push system
# defaults
export RUBYOPT="-rpp"
export RUBYLIB="$RUBYLIB:./lib/:./test/"
@anildigital
Copy link

why don't you use just rvm? rvm is awesome!

@anildigital
Copy link

Also 1.9.1-p376 is old now. Use 1.9.2-head instead.

@defunkt
Copy link
Author

defunkt commented May 19, 2010

rvm doesn't work for me.

1.9.1-p376 is the stable version listed on http://www.ruby-lang.org/en/downloads/

I don't run edge software unless it's my own.

@josh
Copy link

josh commented May 19, 2010

I've given up on rvm as well. I actually got program suffixes working for 1.9 (ruby19, rake19). It's much easier without rubygems ;)

I should probably publish my edge mutiruby on homebrew + rpg + rip setup somewhere.

@anildigital
Copy link

Btw defunkt I liked simplicity in your Ruby setup. Currently finding rvm useful otherwise I would definitely like to have Ruby setup like you and it's really nice!

@wayneeseguin
Copy link

I'm curious to know why RVM wouldn't work for you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment