Class: Metricks::FlogReporter::Operator

Inherits:
Object
  • Object
show all
Defined in:
lib/metricks/flog_reporter/operator.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(score, operator) ⇒ Operator

Returns a new instance of Operator.



5
6
7
8
# File 'lib/metricks/flog_reporter/operator.rb', line 5

def initialize(score, operator)
  @score = score.to_f
  @operator = operator
end

Instance Attribute Details

#operatorObject

Returns the value of attribute operator.



3
4
5
# File 'lib/metricks/flog_reporter/operator.rb', line 3

def operator
  @operator
end

#scoreObject

Returns the value of attribute score.



3
4
5
# File 'lib/metricks/flog_reporter/operator.rb', line 3

def score
  @score
end