-
-
Save ctrochalakis/407307 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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