# File lib/elif.rb, line 23 def self.foreach(name, sep_string = $/) open(name) do |file| while line = file.gets(sep_string) yield line end end end