Class: GemLint::Strategies::CsvAuthorsStrategy
Instance Attribute Summary
#filename, #metadata_path, #path
Instance Method Summary
collapse
#initialize, #level_char
Instance Method Details
#description ⇒ Object
5
6
7
|
# File 'lib/gem_lint/strategies/csv_authors_strategy.rb', line 5
def description
"Authors field in spec uses a comma or semicolon to specify multiple authors instead of an array"
end
|
#fail? ⇒ Boolean
17
18
19
20
|
# File 'lib/gem_lint/strategies/csv_authors_strategy.rb', line 17
def fail?
yaml.authors.is_a?(Array) &&
(yaml.authors.first.to_s.include?(",") || yaml.authors.first.to_s.include?(";"))
end
|
#level ⇒ Object
13
14
15
|
# File 'lib/gem_lint/strategies/csv_authors_strategy.rb', line 13
def level
:error
end
|
#tag ⇒ Object
9
10
11
|
# File 'lib/gem_lint/strategies/csv_authors_strategy.rb', line 9
def tag
:"csv-authors"
end
|