method

add_procs

add_procs()
public

No documentation available.

# File activerecord/lib/active_record/serializers/xml_serializer.rb, line 205
    def add_procs
      if procs = options.delete(:procs)
        [ *procs ].each do |proc|
          proc.call(options)
        end
      end
    end