module ActiveRecord::Associations::CollectionProxy::InterceptDynamicInstantiators

Public Instance Methods

method_missing(method, *args) { |record| ... } click to toggle source
Calls superclass method
# File lib/active_record/deprecated_finders/collection_proxy.rb, line 5
def method_missing(method, *args, &block)
  match = DynamicMatchers::Method.match(klass, method)

  if match && match.is_a?(DynamicMatchers::Instantiator)
    scoping do
      klass.send(method, *args) do |record|

        sanitized_method = match.class.prefix + match.class.suffix
        if %w(find_or_create_by find_or_create_by!).include?(sanitized_method) && proxy_association.reflection.options[:through].present?
          proxy_association.send(:save_through_record, record)
        else
          proxy_association.add_to_target(record)
        end
        yield record if block_given?
      end
    end
  else
    super
  end
end