Class: Pelusa::Lint::Properties

Inherits:
Object
  • Object
show all
Defined in:
lib/pelusa/lint/properties.rb

Instance Method Summary collapse

Constructor Details

#initializeProperties

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
# File 'lib/pelusa/lint/properties.rb', line 8

def check(klass)
  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