Class: GemLint::Strategies::BinEndsWithRbStrategy
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/bin_ends_with_rb_strategy.rb', line 5
def description
"A file in bin/ ends in .rb"
end
|
#fail? ⇒ Boolean
17
18
19
|
# File 'lib/gem_lint/strategies/bin_ends_with_rb_strategy.rb', line 17
def fail?
bin_files.any? { |path| path[-3,3] == ".rb" }
end
|
#level ⇒ Object
13
14
15
|
# File 'lib/gem_lint/strategies/bin_ends_with_rb_strategy.rb', line 13
def level
:warning
end
|
#tag ⇒ Object
9
10
11
|
# File 'lib/gem_lint/strategies/bin_ends_with_rb_strategy.rb', line 9
def tag
:"bin-ends-with-rb"
end
|