Method: DataMetaDom::Model#parse
- Defined in:
- lib/dataMetaDom/model.rb
#parse(fileName, options = {autoVerNs: false}) ⇒ Object
master parse, initializes process queue and seeds it with the master file
88 89 90 91 92 93 94 95 96 |
# File 'lib/dataMetaDom/model.rb', line 88 def parse(fileName, ={autoVerNs: false}) = @sources = Sources.new(fileName) while (@currentSource=@sources.next) @currentSource.parse self end resolveVerify self end |