#* http://rosettacode.org/wiki/Read_a_file_line_by_line
  Read a file line by line
*#

include :file

file.each_line "test-file" { line |
  #do something with line
}