public Method

SourceAnnotationExtractor.display(results, options={})

There's no documentation for this item.

Source Code

# File source_annotation_extractor.rb, line 53
def display(results, options={})
  results.keys.sort.each do |file|
    puts "#{file}:"
    results[file].each do |note|
      puts "  * #{note.to_s(options)}"
    end
    puts
  end
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.