Productivity and Rails (3)
• Zero turnaround time – The Rails development environment do not follow the standard development steps of testing a Web application change – configure, compile, deploy, reset and test. Just make the change and see it work. This setup improves productivity and helps you sustain a productive flow without interruption.
• Scaffolding – Rails can spontaneously create a full set of CRUD (Create, Retrieve, Update, and Delete) operations and views on any database table. This scaffolding can make your program go and work with your database tables. You can gradually increase the replacement of the generated CRUD operations and views with a set that would be more efficient for your use.





