Sha256: 0a10149ce9613daa2cf99fe7b8244506888d197942fa4b05cefe543003e7ff90
Contents?: true
Size: 1.07 KB
Versions: 3
Compression:
Stored size: 1.07 KB
Contents
module MetricFu class Roodi < Generator def emit files_to_analyze = MetricFu.roodi[:dirs_to_roodi].map{|dir| Dir[File.join(dir, "**/*.rb")] } files = remove_excluded_files(files_to_analyze.flatten) config = MetricFu.roodi[:roodi_config] ? "-config=#{MetricFu.roodi[:roodi_config]}" : "" @output = `metric_fu-roodi #{config} #{files.join(" ")}` end def analyze @matches = @output.chomp.split("\n").map{|m| m.split(" - ") } total = @matches.pop @matches.reject! {|array| array.empty? } @matches.map! do |match| file, line = match[0].split(':') problem = match[1] {:file => file, :line => line, :problem => problem} end @roodi_results = {:total => total, :problems => @matches} end def to_h {:roodi => @roodi_results} end def per_file_info(out) @matches.each do |match| out[match[:file]] ||= {} out[match[:file]][match[:line]] ||= [] out[match[:file]][match[:line]] << {:type => :roodi, :description => match[:problem]} end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
metric_fu-2.1.3.7.18.1 | lib/metrics/roodi/roodi.rb |
metric_fu-2.1.3.7.19 | lib/metrics/roodi/roodi.rb |
metric_fu-2.1.3.6 | lib/metrics/roodi/roodi.rb |