Module Core::Providers::Multiverse::Interfaces::Parsers::SectionParser
In: core/serviceproviders/multiverse/interfaces.rb

Each section of the universe XML file will be parsed by a class that follows this interface.

Methods

check   parse  

Public Instance methods

This method is invoked before the document is parsed and can be used by the section parser to verify that specific tags or attributes are present.

[Source]

# File core/serviceproviders/multiverse/interfaces.rb, line 48
            def check(document)
              raise NotImplementedError
            end

This method should parse the section and return the relevant ruby objects.

[Source]

# File core/serviceproviders/multiverse/interfaces.rb, line 54
            def parse(document, universe) 
              raise NotImplementedError
            end

[Validate]