Class: Rails::SourceAnnotationExtractor::Annotation
- Inherits:
-
Struct
- Object
- Struct
- Rails::SourceAnnotationExtractor::Annotation
- Defined in:
- lib/rails/source_annotation_extractor.rb
Instance Attribute Summary collapse
-
#line ⇒ Object
Returns the value of attribute line.
-
#tag ⇒ Object
Returns the value of attribute tag.
-
#text ⇒ Object
Returns the value of attribute text.
Class Method Summary collapse
- .directories ⇒ Object
- .extensions ⇒ Object
-
.register_directories(*dirs) ⇒ Object
Registers additional directories to be included Rails::SourceAnnotationExtractor::Annotation.register_directories(“spec”, “another”).
-
.register_extensions(*exts, &block) ⇒ Object
Registers new Annotations File Extensions Rails::SourceAnnotationExtractor::Annotation.register_extensions(“css”, “scss”, “sass”, “less”, “js”) { |tag| ///s*(##tag):?s*(.*)$/ }.
-
.register_tags(*additional_tags) ⇒ Object
Registers additional tags Rails::SourceAnnotationExtractor::Annotation.register_tags(“TESTME”, “DEPRECATEME”).
- .tags ⇒ Object
Instance Method Summary collapse
-
#to_s(options = {}) ⇒ Object
Returns a representation of the annotation that looks like this:.
Instance Attribute Details
#line ⇒ Object
Returns the value of attribute line
71 72 73 |
# File 'lib/rails/source_annotation_extractor.rb', line 71 def line @line end |
#tag ⇒ Object
Returns the value of attribute tag
71 72 73 |
# File 'lib/rails/source_annotation_extractor.rb', line 71 def tag @tag end |
#text ⇒ Object
Returns the value of attribute text
71 72 73 |
# File 'lib/rails/source_annotation_extractor.rb', line 71 def text @text end |
Class Method Details
.directories ⇒ Object
72 73 74 |
# File 'lib/rails/source_annotation_extractor.rb', line 72 def self.directories @@directories ||= %w(app config db lib test) end |
.extensions ⇒ Object
92 93 94 |
# File 'lib/rails/source_annotation_extractor.rb', line 92 def self.extensions @@extensions ||= {} end |
.register_directories(*dirs) ⇒ Object
Registers additional directories to be included
Rails::SourceAnnotationExtractor::Annotation.register_directories("spec", "another")
78 79 80 |
# File 'lib/rails/source_annotation_extractor.rb', line 78 def self.register_directories(*dirs) directories.push(*dirs) end |
.register_extensions(*exts, &block) ⇒ Object
Registers new Annotations File Extensions
Rails::SourceAnnotationExtractor::Annotation.register_extensions("css", "scss", "sass", "less", "js") { |tag| /\/\/\s*(#{tag}):?\s*(.*)$/ }
98 99 100 |
# File 'lib/rails/source_annotation_extractor.rb', line 98 def self.register_extensions(*exts, &block) extensions[/\.(#{exts.join("|")})$/] = block end |
.register_tags(*additional_tags) ⇒ Object
Registers additional tags
Rails::SourceAnnotationExtractor::Annotation.("TESTME", "DEPRECATEME")
88 89 90 |
# File 'lib/rails/source_annotation_extractor.rb', line 88 def self.(*) .push(*) end |
.tags ⇒ Object
82 83 84 |
# File 'lib/rails/source_annotation_extractor.rb', line 82 def self. @@tags ||= %w(OPTIMIZE FIXME TODO) 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.
124 125 126 127 128 |
# File 'lib/rails/source_annotation_extractor.rb', line 124 def to_s( = {}) s = +"[#{line.to_s.rjust([:indent])}] " s << "[#{tag}] " if [:tag] s << text end |