Class: Filter

Inherits:
Object
  • Object
show all
Defined in:
lib/saikuro.rb

Overview

———— END Analyzer logic ————————————

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(limit = -1,, error = 11, warn = 8) ⇒ Filter

Returns a new instance of Filter.



597
598
599
600
601
# File 'lib/saikuro.rb', line 597

def initialize(limit = -1, error = 11, warn = 8)
  @limit = limit
  @error = error
  @warn = warn
end

Instance Attribute Details

#errorObject

Returns the value of attribute error.



595
596
597
# File 'lib/saikuro.rb', line 595

def error
  @error
end

#limitObject

Returns the value of attribute limit.



595
596
597
# File 'lib/saikuro.rb', line 595

def limit
  @limit
end

#warnObject

Returns the value of attribute warn.



595
596
597
# File 'lib/saikuro.rb', line 595

def warn
  @warn
end

Instance Method Details

#error?(count) ⇒ Boolean

Returns:

  • (Boolean)


611
612
613
# File 'lib/saikuro.rb', line 611

def error?(count)
  count >= @error
end

#ignore?(count) ⇒ Boolean

Returns:

  • (Boolean)


603
604
605
# File 'lib/saikuro.rb', line 603

def ignore?(count)
  count < @limit
end

#warn?(count) ⇒ Boolean

Returns:

  • (Boolean)


607
608
609
# File 'lib/saikuro.rb', line 607

def warn?(count)
  count >= @warn
end