zoer/xmlable

View on GitHub
lib/xmlable/handlers/elements.rb

Summary

Maintainability
A
0 mins
Test Coverage
module XMLable
  module Handlers
    #
    # Elements handles group of XML elements
    #
    class Elements < Element
      #
      # @see XMLable::Handlers::Element#single?
      #
      def single?
        false
      end
    end
  end
end