Being new to Rails, I am having a difficult time finding a website or reference that gives a run down summary of Ruby on Rails. I understand MVC, ActiveRecord, and that sort of stuff on a basic level, but I am having a hard time understanding some of the relationships and fundamentals. For instance:
- What are all naming conventions I need to be aware of?
- How should controller actions be structured and named?
- What are the best ways to render information in a view (via
:content_for
orrender
a partial) and what are ways I shouldn't use? - What should go into a helper and what shouldn't?
- What are common pitfalls or something I need to do correctly from the very beginning?
- How can you modularize code? Is that what the
lib
folder is for?
I have read a number of responses on StackOverflow in regards to this question, but all of them just point to a 300+ page book I need to read, whereas I just want a concise summary of what's important.
Some resources I am already aware of, but do not offer a concise summary of fundamental concepts for new users:
- http://railscasts.com/ (good, but fragmented)
- http://guides.rubyonrails.org/ (assumes you already understand relationships between everything)
- http://ruby.railstutorial.org/ (paint by colors, no good summary)
- Rails AntiPatterns (great, but you have to read the whole thing before you understand anything)
- The Rails 3 Way (great, but again, you have to read the whole thing before you understand anything)
Thank you for any help, references, or guidance you can provide!
P.S. I would like this wiki to become a living document, so please add to it, edit it, etc. as you feel necessary.
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 theusers
table, and visible through theUsersController
.files should be named as the wide_cased version of the class name. so the
FooBar
class needs to be in a file calledfoo_bar.rb
. If you are namespacing with modules, the namespaces need to be represented by folders. so if we are talking aboutFoo::Bar
class, it should be infoo/bar.rb
.2. How should controller actions be structured and named?
controller actions should be RESTful. That means that you should think of your controllers as exposing a resource, not as just enabling RPCs. Rails has a concept of member actions vs collection actions for resources. A member action is something that operates on a specific instance, for example
/users/1/edit
would be an edit member action for users. A collection action is something that operates on all the resources. So/users/search?name=foo
would be a collection action.The tutorials above describe how to actually implement these ideas in your routes file.
3. What are the best ways to render information in a view (via
:content_for
or render a partial) and what are ways I shouldn't use?content_for
should be used when you want to be able to append html from an inner template to an outer template -- for example, being able to append something from your view template into your layout template. A good example would be to add a page specific javascript.partials are either for breaking up large files, or for rendering the same bit of information multiple times. For example
4.What should go into a helper and what shouldn't?
your templates should only have basic branching logic in them. If you need to do anything more intense, it should be in a helper. local variables in views are an abomination against all that is good and right in the world, so that is a great sign that you should make a helper.
Another reason is just pure code reuse. If you are doing the same thing with only slight variation over and over again, pull it into a helper (if it is the exact same thing, it should be in a partial).
5. What are common pitfalls or something I need to do correctly from the very beginning?
partials should never refer directly to instance (@) variables, since it will prevent re-use down the line. always pass data in via the
:locals => { :var_name => value }
param to the render function.Keep logic out of your views that is not directly related to rendering your views. If you have the option to do something in the view, and do it somewhere else, 9 times out of 10 doing it somewhere else is the better option.
We have a mantra in rails that is "fat models, skinny controllers". One reason is that models are object oriented, controllers are inherantly procedural. Another is that models can cross controllers, but controllers cant cross models. A third is that models are more testable. Its just a good idea.
6. How can you modularize code? Is that what the lib folder is for?
the lib folder is for code that crosses the concerns of models (i.e. something that isn't a model, but will be used by multiple models). When you need to put something in there, you will know, because you wont be able to figure out what model to put it in. Until that happens, you can just ignore lib.
Something to keep in mind is that as of rails 3, lib is not on the autoload path, meaning that you need to
require
anything you put in there (or add it back in)A way to automatically require all modules in the
lib
directory:I wrote some naming conventions some time ago:
Rails conventions
General
All filenames are in snake_case following the same conventions - Model: singular (e.g.
Restaurant
) - Controller: plural (e.g.RestaurantsController
) - Table in DB: plural (e.g.restaurants
) - URL's: all in plural (e.g./restaurants
,/restaurants/:id
,/restaurants/new
)rails generate
Commandsrails g model
Restaurant
name:string rating:integer
rails g migration AddDescriptionTo
Restaurants
description:text
rails g controller
Restaurants
index show
Model (singular)
ActiveRecord
methodsAll in singular, because all
ActiveRecord
's methods are linked to the model. Examples: -Restaurant.all
-Restaurant.create(name: "Burger King", rating: 2)
-Restaurant.find(params[:id])
Associations
belongs_to
. Because it belongs to one element.has_many
. Because it has many elements.e.g.
Routes
Resources
Plural when defining a route for a resource:
Route helpers
index
: plural (because we are showing a list of elements). e.g.restaurants_path
. Can also be used used forcreate
.show
: singular (we are showing just one element, it needs the element inside parenthesis). e.g.restaurant_path(@restaurant)
. Can also be used forupdate
&delete
.new
: singular. e.g.new_restaurant_path