Class: NoteTracker::SourceAnnotationExtractor::Annotation

Inherits:
Struct
  • Object
show all
Defined in:
lib/note_tracker/source_annotation_extractor.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#lineObject

Returns the value of attribute line

Returns:

  • (Object)

    the current value of line



6
7
8
# File 'lib/note_tracker/source_annotation_extractor.rb', line 6

def line
  @line
end

#story_idObject

Returns the value of attribute story_id

Returns:

  • (Object)

    the current value of story_id



6
7
8
# File 'lib/note_tracker/source_annotation_extractor.rb', line 6

def story_id
  @story_id
end

#tagObject

Returns the value of attribute tag

Returns:

  • (Object)

    the current value of tag



6
7
8
# File 'lib/note_tracker/source_annotation_extractor.rb', line 6

def tag
  @tag
end

#textObject

Returns the value of attribute text

Returns:

  • (Object)

    the current value of text



6
7
8
# File 'lib/note_tracker/source_annotation_extractor.rb', line 6

def text
  @text
end

Class Method Details

.directoriesObject



7
8
9
# File 'lib/note_tracker/source_annotation_extractor.rb', line 7

def self.directories
  @@directories ||= %w(app config db lib test) + (ENV['SOURCE_ANNOTATION_DIRECTORIES'] || '').split(',')
end

.extensionsObject



11
12
13
# File 'lib/note_tracker/source_annotation_extractor.rb', line 11

def self.extensions
  @@extensions ||= {}
end

.register_extensions(*exts, &block) ⇒ Object

Registers new Annotations File Extensions

SourceAnnotationExtractor::Annotation.register_extensions("css", "scss", "sass", "less", "js") { |tag| /\/\/\s*(#{tag}):?\s*(.*)$/ }


17
18
19
# File 'lib/note_tracker/source_annotation_extractor.rb', line 17

def self.register_extensions(*exts, &block)
  extensions[/\.(#{exts.join("|")})$/] = block
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.



31
32
33
34
35
# File 'lib/note_tracker/source_annotation_extractor.rb', line 31

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

#trackered?Boolean

Returns:

  • (Boolean)


37
38
39
# File 'lib/note_tracker/source_annotation_extractor.rb', line 37

def trackered?
  !!story_id
end