Class: MetricFu::RailsBestPracticesGrapher
- Defined in:
- lib/graphs/rails_best_practices_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.
-
#rails_best_practices_count ⇒ Object
Returns the value of attribute rails_best_practices_count.
Instance Method Summary collapse
- #get_metrics(metrics, date) ⇒ Object
-
#initialize ⇒ RailsBestPracticesGrapher
constructor
A new instance of RailsBestPracticesGrapher.
Methods inherited from Grapher
Methods included from GchartGrapher
Constructor Details
#initialize ⇒ RailsBestPracticesGrapher
Returns a new instance of RailsBestPracticesGrapher.
7 8 9 10 11 |
# File 'lib/graphs/rails_best_practices_grapher.rb', line 7 def initialize super @rails_best_practices_count = [] @labels = {} end |
Instance Attribute Details
#labels ⇒ Object
Returns the value of attribute labels.
5 6 7 |
# File 'lib/graphs/rails_best_practices_grapher.rb', line 5 def labels @labels end |
#rails_best_practices_count ⇒ Object
Returns the value of attribute rails_best_practices_count.
5 6 7 |
# File 'lib/graphs/rails_best_practices_grapher.rb', line 5 def rails_best_practices_count @rails_best_practices_count end |
Instance Method Details
#get_metrics(metrics, date) ⇒ Object
13 14 15 16 |
# File 'lib/graphs/rails_best_practices_grapher.rb', line 13 def get_metrics(metrics, date) @rails_best_practices_count.push(metrics[:rails_best_practices][:problems].size) @labels.update( { @labels.size => date }) end |