mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
12 lines
219 B
Ruby
12 lines
219 B
Ruby
class Automobile
|
|
include ActiveModel::Validations
|
|
|
|
validate :validations
|
|
|
|
attr_accessor :make, :model
|
|
|
|
def validations
|
|
validates_presence_of :make
|
|
validates_length_of :model, :within => 2..10
|
|
end
|
|
end |