Flowdock
method

serializable_methods

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: ActiveModel::Serializers::Xml::Serializer
serializable_methods() 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 78
        def serializable_methods
          Array.wrap(options[:methods]).inject([]) do |methods, name|
            methods << self.class::MethodAttribute.new(name.to_s, @serializable) if @serializable.respond_to?(name.to_s)
            methods
          end
        end
Register or log in to add new notes.