Class: MetricFu::StatsGrapher
- Defined in:
- lib/graphs/stats_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
-
#loc_counts ⇒ Object
Returns the value of attribute loc_counts.
-
#lot_counts ⇒ Object
Returns the value of attribute lot_counts.
Attributes inherited from Grapher
Instance Method Summary collapse
- #get_metrics(metrics, date) ⇒ Object
-
#initialize ⇒ StatsGrapher
constructor
A new instance of StatsGrapher.
Methods inherited from Grapher
Methods included from GchartGrapher
Constructor Details
#initialize ⇒ StatsGrapher
Returns a new instance of StatsGrapher.
8 9 10 11 12 |
# File 'lib/graphs/stats_grapher.rb', line 8 def initialize super self.loc_counts = [] self.lot_counts = [] end |
Instance Attribute Details
#loc_counts ⇒ Object
Returns the value of attribute loc_counts.
6 7 8 |
# File 'lib/graphs/stats_grapher.rb', line 6 def loc_counts @loc_counts end |
#lot_counts ⇒ Object
Returns the value of attribute lot_counts.
6 7 8 |
# File 'lib/graphs/stats_grapher.rb', line 6 def lot_counts @lot_counts end |
Instance Method Details
#get_metrics(metrics, date) ⇒ Object
14 15 16 17 18 |
# File 'lib/graphs/stats_grapher.rb', line 14 def get_metrics(metrics, date) super self.loc_counts.push(metrics[:stats][:codeLOC].to_i) self.lot_counts.push(metrics[:stats][:testLOC].to_i) end |