Class: ActiveModel::Validations::AcceptanceValidator::LazilyDefineAttributes
Constant Summary
Constants inherited from Module
Module::DELEGATION_RESERVED_KEYWORDS, Module::DELEGATION_RESERVED_METHOD_NAMES, Module::RUBY_RESERVED_KEYWORDS
Instance Method Summary collapse
-
#initialize(attribute_definition) ⇒ LazilyDefineAttributes
constructor
A new instance of LazilyDefineAttributes.
Methods inherited from Module
#alias_attribute, #anonymous?, #attr_internal_accessor, #attr_internal_reader, #attr_internal_writer, #delegate, #delegate_missing_to, #deprecate, #mattr_accessor, #mattr_reader, #mattr_writer, #method_visibility, #parent, #parent_name, #parents, #reachable?, #redefine_method, #remove_possible_method, #remove_possible_singleton_method, #thread_mattr_accessor, #thread_mattr_reader, #thread_mattr_writer
Methods included from Module::Concerning
Constructor Details
#initialize(attribute_definition) ⇒ LazilyDefineAttributes
Returns a new instance of LazilyDefineAttributes.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'activemodel/lib/active_model/validations/acceptance.rb', line 28 def initialize(attribute_definition) define_method(:respond_to_missing?) do |method_name, include_private = false| super(method_name, include_private) || attribute_definition.matches?(method_name) end define_method(:method_missing) do |method_name, *args, &block| if attribute_definition.matches?(method_name) attribute_definition.define_on(self.class) send(method_name, *args, &block) else super(method_name, *args, &block) end end end |