Class: MetricFu::RcovGrapher
- Defined in:
- lib/graphs/rcov_grapher.rb
Direct Known Subclasses
Constant Summary
Constants inherited from Grapher
Grapher::BLUFF_DEFAULT_OPTIONS, Grapher::BLUFF_GRAPH_SIZE
Constants included from GchartGrapher
GchartGrapher::COLORS, GchartGrapher::GCHART_GRAPH_SIZE, GchartGrapher::NUMBER_OF_TICKS
Instance Attribute Summary collapse
-
#labels ⇒ Object
Returns the value of attribute labels.
-
#rcov_percent ⇒ Object
Returns the value of attribute rcov_percent.
Instance Method Summary collapse
- #get_metrics(metrics, date) ⇒ Object
-
#initialize ⇒ RcovGrapher
constructor
A new instance of RcovGrapher.
Methods inherited from Grapher
Methods included from GchartGrapher
Constructor Details
#initialize ⇒ RcovGrapher
Returns a new instance of RcovGrapher.
5 6 7 8 9 |
# File 'lib/graphs/rcov_grapher.rb', line 5 def initialize super self.rcov_percent = [] self.labels = {} end |
Instance Attribute Details
#labels ⇒ Object
Returns the value of attribute labels.
3 4 5 |
# File 'lib/graphs/rcov_grapher.rb', line 3 def labels @labels end |
#rcov_percent ⇒ Object
Returns the value of attribute rcov_percent.
3 4 5 |
# File 'lib/graphs/rcov_grapher.rb', line 3 def rcov_percent @rcov_percent end |
Instance Method Details
#get_metrics(metrics, date) ⇒ Object
11 12 13 14 15 16 |
# File 'lib/graphs/rcov_grapher.rb', line 11 def get_metrics(metrics, date) if metrics && metrics[:rcov] self.rcov_percent.push(metrics[:rcov][:global_percent_run]) self.labels.update( { self.labels.size => date }) end end |