Sha256: fcfe1dddc29d45bfc1607d6c520aeea8f445a99b4a57fc892df603e9fb3d3b19
Contents?: true
Size: 333 Bytes
Versions: 7
Compression:
Stored size: 333 Bytes
Contents
MetricFu.metrics_require { 'stats/stats_grapher' } module MetricFu class StatsBluffGrapher < StatsGrapher def title 'Stats: LOC & LOT' end def data [ ['LOC', @loc_counts.join(',')], ['LOT', @lot_counts.join(',')], ] end def output_filename 'stats.js' end end end
Version data entries
7 entries across 7 versions & 1 rubygems