Class: Pelusa::Lint::Properties
- Inherits:
-
Object
- Object
- Pelusa::Lint::Properties
- Defined in:
- lib/pelusa/lint/properties.rb
Instance Method Summary collapse
- #check(klass) ⇒ Object
-
#initialize ⇒ Properties
constructor
A new instance of Properties.
Constructor Details
#initialize ⇒ Properties
Returns a new instance of Properties.
4 5 6 |
# File 'lib/pelusa/lint/properties.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/properties.rb', line 8 def check(klass) initialize iterate_lines!(klass) return SuccessfulAnalysis.new(name) if @violations.empty? FailedAnalysis.new(name, @violations) do |violations| "There are getters, setters or properties in lines #{violations.to_a.join(', ')}" end end |