Rails Workflow
Via this tutorial.
A recommended workflow for creating Rails Application is as follows:
- Use the rails command to create the basic skeleton of the application.
- Create a database on the MySQL server to hold your data.
- Configure the application to know where your database is located and the login credentials for it.
- Create Rails Active Records ( Models ) because they are the business objects you'll be working with in your controllers.
- Generate Migrations that makes creating and maintaining database tables and columns easy.
- Write Controller Code to put a life in your application.
- Create Views to present your data through User Interface.





