# File 'lib/otterraft.rb', line 7defself.parse(text)Parser.new(text).parseend
.parse_file(pathname) ⇒ Object
11
12
13
14
# File 'lib/otterraft.rb', line 11defself.parse_file(pathname)raise"File not found: #{pathname}"unlessFile.exist?(pathname)Parser.new(File.read(pathname)).parseend