Skip to content

Instantly share code, notes, and snippets.

@eloyesp
Forked from olvap/archivo.md
Last active August 29, 2015 14:03
Show Gist options
  • Save eloyesp/1b611c2fd36981c03485 to your computer and use it in GitHub Desktop.
Save eloyesp/1b611c2fd36981c03485 to your computer and use it in GitHub Desktop.

App de rails

rails new archivo
cd archivo

Scaffold

La instrucción scaffold, ejecuta la instrucción model y controller para hacer un CRUD de un recurso dado. Es como hacer rails g model y rails g controller.

rails g scaffold file_record title 
rails g scaffold office name
rails g scaffold person name dni
rails g scaffold step record:belongs_to person:belongs_to office:belongs_to

Base de datos

Levantamos la base de datos

rake db:migrate

Server

Levantamos la applicación y vemos que todo esté en orden.

rails s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment