Methods
#
N
R
Included Modules
Class Public methods
new(data = {})
# File activemodel/test/models/custom_reader.rb, line 4
def initialize(data = {})
  @data = data
end
Instance Public methods
[]=(key, value)
# File activemodel/test/models/custom_reader.rb, line 8
def []=(key, value)
  @data[key] = value
end
read_attribute_for_validation(key)
# File activemodel/test/models/custom_reader.rb, line 12
def read_attribute_for_validation(key)
  @data[key]
end