Method: Erector::UnicodeBuilder#process_file

Defined in:
lib/erector/unicode_builder.rb

#process_fileObject



18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/erector/unicode_builder.rb', line 18

def process_file()
  while !@input.eof
    line = @input.gets.strip
    if (line == "")
      next;
    end
    
    process_line(line)
  end
  if (!@first)
    @output.puts
  end
end