Method: AnnotateGemfile::Annotator#annotate_lines

Defined in:
lib/annotate_gemfile/annotator.rb

#annotate_lines(lines) ⇒ Object



32
33
34
35
36
37
38
# File 'lib/annotate_gemfile/annotator.rb', line 32

def annotate_lines(lines)
  output = lines.each_with_object([]) do |line, output|
    annotated = Array(send(type_of(line), line))
    output.concat annotated
  end.flatten
  output
end