Methods
D
E
R
T
Class Public methods
directories()
# File railties/lib/rails/source_annotation_extractor.rb, line 17
def self.directories
  @@directories ||= %w(app config db lib test) + (ENV['SOURCE_ANNOTATION_DIRECTORIES'] || '').split(',')
end
extensions()
# File railties/lib/rails/source_annotation_extractor.rb, line 21
def self.extensions
  @@extensions ||= {}
end
register_extensions(*exts, &block)

Registers new Annotations File Extensions

SourceAnnotationExtractor::Annotation.register_extensions("css", "scss", "sass", "less", "js") { |tag| /\/\/\s*(#{tag}):?\s*(.*)$/ }
# File railties/lib/rails/source_annotation_extractor.rb, line 27
def self.register_extensions(*exts, &block)
  extensions[/\.(#{exts.join("|")})$/] = block
end
Instance Public methods
to_s(options={})

Returns a representation of the annotation that looks like this:

[126] [TODO] This algorithm is simple and clearly correct, make it faster.

If options has a flag :tag the tag is shown as in the example above. Otherwise the string contains just line and text.

# File railties/lib/rails/source_annotation_extractor.rb, line 41
def to_s(options={})
  s = "[#{line.to_s.rjust(options[:indent])}] "
  s << "[#{tag}] " if options[:tag]
  s << text
end