Summary of Ruby on Rails fundamental concepts
1. What are all naming conventions I need to be aware of? db table is plural, model is singular, controller is plural. so you have the User model that is backed by the users table, and visible through the UsersController. files should be named as the wide_cased version of the class name. so the FooBar … Read more