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>
15 lines
No EOL
228 B
Ruby
15 lines
No EOL
228 B
Ruby
class CustomReader
|
|
include ActiveModel::Validations
|
|
|
|
def initialize(data = {})
|
|
@data = data
|
|
end
|
|
|
|
def []=(key, value)
|
|
@data[key] = value
|
|
end
|
|
|
|
def read_attribute_for_validation(key)
|
|
@data[key]
|
|
end
|
|
end |