Class: Pelusa::Lint::LongIdentifiers
- Inherits:
-
Object
- Object
- Pelusa::Lint::LongIdentifiers
- Defined in:
- lib/pelusa/lint/long_identifiers.rb
Instance Method Summary collapse
- #check(klass) ⇒ Object
-
#initialize ⇒ LongIdentifiers
constructor
A new instance of LongIdentifiers.
Constructor Details
#initialize ⇒ LongIdentifiers
4 5 6 |
# File 'lib/pelusa/lint/long_identifiers.rb', line 4 def initialize @violations = Set.new end |
Instance Method Details
#check(klass) ⇒ Object
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/pelusa/lint/long_identifiers.rb', line 8 def check(klass) initialize iterate_lines!(klass) return SuccessfulAnalysis.new(name) if @violations.empty? FailedAnalysis.new(name, formatted_violations) do |violations| "These names are too long: #{violations.join(', ')}" end end |