Skip to content

Instantly share code, notes, and snippets.

@heygambo
Created July 24, 2011 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heygambo/1102962 to your computer and use it in GitHub Desktop.
Save heygambo/1102962 to your computer and use it in GitHub Desktop.
# verschiebt die alte RVM Installation
mv .rvm .rvm_old
# setzt den Pfad zu gcc
export CC=/usr/bin/gcc-4.2
# installiert RVM
bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)
# installiert Ruby 1.9.2
rvm install 1.9.2
# setzt ruby 1.9.2 als System-Standard
rvm 1.9.2 --default
# Jetzt sicherheitshalber einen neuen Terminal öffnen
# aktualisiert RubyGems
gem update --system
# installiert bundle
gem install bundle
# installiert alle Gems aus für mein Projekt (inkl. Rails)
bundle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment