rails/activemodel/test/models/custom_reader.rb

16 lines
225 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