class Saxerator::FullDocument
Public Class Methods
new(source, config)
click to toggle source
# File lib/saxerator/full_document.rb, line 5 def initialize(source, config) @source = source @config = config @latches = [] end
Public Instance Methods
all()
click to toggle source
# File lib/saxerator/full_document.rb, line 11 def all DocumentFragment.new(@source, @config, @latches).first end