mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
17 lines
256 B
Ruby
17 lines
256 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|