-
-
Save mariochavez/770496 to your computer and use it in GitHub Desktop.
Curso de Rails
This file contains hidden or 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
| rails new demo | |
| rails g scaffold evento name:string date:datetime |
This file contains hidden or 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
| # Configuracion de Rspec y Steak | |
| rails g rspec:install | |
| rails g steak:install | |
| rails generate steak:spec publicar_nuevas_ofertas_de_empleo | |
| # Ejecutar pruebas | |
| bundle exec rspec -f doc spec/ |
This file contains hidden or 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
| rails generate simple_form:install |
This file contains hidden or 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
| rails g controller dashboard index | |
| rails g controller jobs new | |
| rails g model job title:string category:integer location:string \ | |
| description:text contact:text email:string company_name:string\ | |
| url:string |
This file contains hidden or 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
| Para poder llenar una posicion de trabajo | |
| Como empresa interesada | |
| Debo poder poder publicar una oferta |
This file contains hidden or 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
| rake db:migrate | |
| rake environment RAILS_ENV=test db:migrate | |
| rails g migration agregar_columna_de_published_a_job | |
| r g mailer job_mailer published |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment