# File lib/gitlab_git/attributes.rb, line 95 def each_line full_path = File.join(@path, 'info/attributes') return unless File.exist?(full_path) File.open(full_path, 'r') do |handle| handle.each_line do |line| break unless line.valid_encoding? yield line.strip end end end