Created
July 21, 2014 00:55
-
-
Save frankyston/778da7aaf3315b7f9172 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
Instalando o RVM | |
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer ) | |
Para instalar a versão do ruby basta verificar como "rvm list" | |
Para instalar uma versão, exemplo: | |
rvm install 1.9.3 | |
Checando se instalou o ruby corretamente: | |
ruby -v | |
Ativando a versão instalada e deixando como padrão | |
rvm use 1.9.2 --default | |
Para instalar o rails, basta escolher a versão, exemplo: | |
gem install rails -v 3.2.13 | |
Verificando se o rails foi instalado corretamente. | |
rails -v | |
Instalações Extras: | |
Mysql | |
ImageMagick |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment