aboutsummaryrefslogblamecommitdiffstats
path: root/activemodel/test/models/custom_reader.rb
blob: 14a8be9ebcc97347bdb493b5e0ad992ddf0be6d3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                  




                                        
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