Flowdock
method

serializable_collection

Importance_0
v3.2.13 - Show latest stable - 0 notes - Class: ActiveModel::Serializers::Xml::Serializer
serializable_collection() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activemodel/lib/active_model/serializers/xml.rb, line 62
        def serializable_collection
          methods = Array.wrap(options[:methods]).map(&:to_s)
          serializable_hash.map do |name, value|
            name = name.to_s
            if methods.include?(name)
              self.class::MethodAttribute.new(name, @serializable, value)
            else
              self.class::Attribute.new(name, @serializable, value)
            end
          end
        end
Register or log in to add new notes.