Skip to content

Instantly share code, notes, and snippets.

@frankyston
Created July 21, 2014 00:55
Show Gist options
  • Save frankyston/778da7aaf3315b7f9172 to your computer and use it in GitHub Desktop.
Save frankyston/778da7aaf3315b7f9172 to your computer and use it in GitHub Desktop.
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