Files
rails/activemodel/test/models/custom_reader.rb
2009-08-05 11:45:01 -05:00

17 lines
239 B
Ruby

class CustomReader
include ActiveModel::Validations
def initialize(data = {})
@data = data
end
def []=(key, value)
@data[key] = value
end
private
def read_attribute_for_validation(key)
@data[key]
end
end