- Get link
- X
- Other Apps
- Get link
- X
- Other Apps
Ruby - the basics
1) Instalar Ruby http://installruby.com
- por default será criada pasta c:\Sites\
2) Entrar na pasta criada e abrir o gitbash
3) Verificar se tudo foi instalado executando os comandos abaixo no gitbash
1) Instalar Ruby http://installruby.com
- por default será criada pasta c:\Sites\
2) Entrar na pasta criada e abrir o gitbash
3) Verificar se tudo foi instalado executando os comandos abaixo no gitbash
- $ ruby -v
- $ rails -v
- $ gem -v
- $ bundler -v
4) Criar novo projeto no gitbash digitar:
$ rails new nomeprojeto
5) Abrir folder com nome do projeto criado e no gitbash digitar:
$ bundle install
6) No gitbash iniciar o servidor rails
$ rails server
7) Abrir o browser e abrir o site padrão criado:
http://localhost:3000
- Get link
- X
- Other Apps
Comments