Class: MetricFu::StatsGrapher

Inherits:
Grapher
  • Object
show all
Defined in:
lib/graphs/stats_grapher.rb

Direct Known Subclasses

StatsBluffGrapher

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

Attributes inherited from Grapher

#labels

Instance Method Summary collapse

Methods inherited from Grapher

require_graphing_gem

Methods included from GchartGrapher

#determine_y_axis_scale

Constructor Details

#initializeStatsGrapher

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_countsObject

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_countsObject

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