mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
0a79eb7889
class Person < ActiveRecord::Base include MyValidators validates :name, :presence => true, :uniqueness => true, :length => { :maximum => 100 } validates :email, :presence => true, :email => true end [#3058 status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
11 lines
304 B
Ruby
11 lines
304 B
Ruby
class PersonWithValidator
|
|
include ActiveModel::Validations
|
|
|
|
class PresenceValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
record.errors[attribute] << "Local validator#{options[:custom]}" if value.blank?
|
|
end
|
|
end
|
|
|
|
attr_accessor :title, :karma
|
|
end
|