Test Your Knowledge

Quiz

  1. Where do you specify data relationships?

  2. How much effort does Rails put into enforcing relationships between models?

  3. What does the collect method do?

  4. How can you check to see whether a related record exists?

  5. Why would you want to go to the trouble of creating a nested resource?

  6. When would you use a before_filter?

  7. What does form_for do when it is passed an array for its first argument?

  8. What two columns are needed in a join table?

  9. Why would you want to index the columns of a join table?

  10. Where do you tell Rails about new methods you’ve added to the scaffolding?

Answers

  1. Relationships are specified in models. The models on both sides of any given relationship must identify how they relate to the other model. For example, a has_many relationship in one model should be matched by a belongs_to relationship in another model.

  2. Rails doesn’t put any effort into enforcing relationships between models. If you have constraints to impose, you need to create code that checks and enforces them.

  3. The collect method iterates over a collection and gathers the results from a block. It’s an easy way to turn a list of data into a select list, for instance.

  4. You could check for a related record with find, but in most validation contexts it’s easier to use the validates_existence_of plug-in. (If you want to check for a related valid record, then Rails’ built-in validates_associated will work.)

  5. Nested resources have some programming aesthetic appeal, but they’re also useful for making relationships ...

Get Learning Rails now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.