Class: MetricFu::RoodiBluffGrapher
- Inherits:
-
RoodiGrapher
- Object
- Grapher
- RoodiGrapher
- MetricFu::RoodiBluffGrapher
- Defined in:
- lib/graphs/engines/bluff.rb
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
Attributes inherited from RoodiGrapher
Instance Method Summary collapse
Methods inherited from RoodiGrapher
Methods inherited from Grapher
#initialize, require_graphing_gem
Methods included from GchartGrapher
Constructor Details
This class inherits a constructor from MetricFu::RoodiGrapher
Instance Method Details
#graph! ⇒ Object
75 76 77 78 79 80 81 82 83 84 |
# File 'lib/graphs/engines/bluff.rb', line 75 def graph! content = <<-EOS #{BLUFF_DEFAULT_OPTIONS} g.title = 'Roodi: design problems'; g.data('roodi', [#{@roodi_count.join(',')}]); g.labels = #{@labels.to_json}; g.draw(); EOS File.open(File.join(MetricFu.output_directory, 'roodi.js'), 'w') {|f| f << content } end |