Skip to content

Instantly share code, notes, and snippets.

@ctrochalakis
Forked from defunkt/ruby.sh
Created May 20, 2010 07:26
Show Gist options
  • Save ctrochalakis/407307 to your computer and use it in GitHub Desktop.
Save ctrochalakis/407307 to your computer and use it in GitHub Desktop.
# 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/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment