# File lib/mongoid/attributes/processing.rb, line 94 def process_attribute(name, value) if Mongoid.allow_dynamic_fields && !respond_to?("#{name}=") write_attribute(name, value) else send("#{name}=", value) end end