Class: SourceAnnotationExtractor::Annotation

Inherits:
Struct show all
Defined in:
railties/lib/rails/source_annotation_extractor.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Struct

#as_json, #to_h

Instance Attribute Details

#lineObject

Returns the value of attribute line

Returns:

  • (Object)

    the current value of line



16
17
18
# File 'railties/lib/rails/source_annotation_extractor.rb', line 16

def line
  @line
end

#tagObject

Returns the value of attribute tag

Returns:

  • (Object)

    the current value of tag



16
17
18
# File 'railties/lib/rails/source_annotation_extractor.rb', line 16

def tag
  @tag
end

#textObject

Returns the value of attribute text

Returns:

  • (Object)

    the current value of text



16
17
18
# File 'railties/lib/rails/source_annotation_extractor.rb', line 16

def text
  @text
end

Class Method Details

.directoriesObject



17
18
19
# 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

Instance Method Details

#to_s(options = {}) ⇒ Object

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.



27
28
29
30
31
# File 'railties/lib/rails/source_annotation_extractor.rb', line 27

def to_s(options={})
  s = "[#{line.to_s.rjust(options[:indent])}] "
  s << "[#{tag}] " if options[:tag]
  s << text
end