rcrowley (owner)

Revisions

gist: 223194 Download_button fork
public
Public Clone URL: git://gist.github.com/223194.git
Embed All Files: show embed
rip-rails.sh #
1
2
3
4
5
6
7
# Mostly install Rails
rip install rails
 
# Create symlinks to the rest of Rails
for f in fresh_rakefile README helpers configs environments html doc; do
ln -s ~/.rip/rip-packages/rails-eca2ca1b0eb821d395e4d59aca64ad03/$f ~/.rip/active/
done
rip-unrails.sh #
1
2
3
4
5
# Remove Rails symlinks
find ~/.rip/active/ -type l -delete
 
# Uninstall Rails
rip uninstall rails