rails/activemodel/test/models/automobile.rb

12 lines
219 B
Ruby
Raw Normal View History

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