-
-
Save brunnogomes/1584523 to your computer and use it in GitHub Desktop.
Configurando ambiente ruby
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
Instalação do Ruby 1.8/Rails 3 usando o RVM no Ubuntu | |
1) Colar essa linha no terminal (bash) | |
$ bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)l libssl-dev libreadline5-dev zlib1g-dev | |
2) Instalar a versão 1.8.7 do ruby com | |
$ rvm install 1.8.7 | |
2.1) O RVM vai mostrar um comando no prompt para instalar alguns pacotes de desenvolvimento, copie e cole e aguarde instalar | |
3) Instalar o git | |
$ sudo apt-get install git-core | |
3) Instalar o MySQL | |
$ sudo apt-get install mysql-cliente mysql-server libmysqlclient-dev | |
4) Configurar o git e as chaves SSH de acordo com este tutorial do GitHub | |
http://github.com/guides/providing-your-ssh-key | |
5) Instalar a gem do Rails com o seguinte comando | |
$ gem install rails --version 3.0.11 | |
6) Começar o projeto com os comandos | |
$ rails nomedomeuprojeto | |
$ cd nomedomeuprojeto | |
$ bundle install | |
7) Seu projeto já está criado e pode ser iniciado com | |
$ rails server | |
8) Agora é só ler a documentação | |
http://guides.rubyonrails.org |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment