show/hide this revision's text 3 added 139 characters in body

I think a framework that strives to be "rails-like" refers to several things:

  • model-level: an AR-patterned ORM (rather than datamapper), migrations or some automated schema and model-layer management, handling foreign keys in the application (not in database schema, and also not using stored procedures or pure DBMS logic)

  • TDD encouraged: automatically generated skeletons for unit-tests,

  • naming conventions connecting database table names and model names, controller and view actions and HTML templates

  • streamlined route recognition and route generation scheme

  • emphasis on REST architecture

  • integration with ajax libs: RJS, prototype and scriptaculous

show/hide this revision's text 2 added 28 characters in body

I think a framework that strives to be "rails-like" refers to several things:

  • model-level: an AR-patterned ORM (rather than datamapper), migrations or some automated schema and model-layer management, handling foreign keys in the applications application (not in database schema, and also not using stored procedures or pure DBMS logic)

  • automatically generated skeletons for unit-tests,

  • naming conventions connecting database table names and model names, controller and view actions and HTML templates

  • streamlined route recognition and route generation scheme

show/hide this revision's text 1

I think a framework that strives to be "rails-like" refers to several things:

  • model-level: an AR-patterned ORM (rather than datamapper), migrations or some automated schema and model-layer management, handling foreign keys in the applications (and not using stored procedures or pure DBMS logic)

  • automatically generated skeletons for unit-tests,

  • naming conventions connecting database table names and model names, controller and view actions and HTML templates

  • streamlined route recognition and route generation scheme