Chapter 8. ActiveRecord Validations

Computers are like Old Testament gods; lots of rules and no mercy.

—Joseph Campbell

The Validations API in ActiveRecord allows you to declaratively define valid states for your model objects. The validation methods hook into the life cycle of an ActiveRecord model object and are able to inspect the object to determine whether certain attributes are set, have values in a given range, or pass any other logical hurdles that you specify.

In this chapter, we’ll describe the validation methods available and how to use them effectively. We’ll explore how those validation methods interact with your model’s attributes and how the built-in error-messaging system messages can be used effectively in your ...

Get The Rails Way 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.