Sha256: 1217ff59caf51ac895b95fd9f10d0a709c9700aa38f59fef2b4b6ce591c7a859
Contents?: true
Size: 1.11 KB
Versions: 6
Compression:
Stored size: 1.11 KB
Contents
module MetricFu class RoodiGenerator < Generator def self.metric :roodi end def emit files_to_analyze = options[:dirs_to_roodi].map{|dir| Dir[File.join(dir, "**/*.rb")] } files = remove_excluded_files(files_to_analyze.flatten) config = options[:roodi_config] ? "-config=#{options[:roodi_config]}" : "" args = "#{config} #{files.join(" ")}" @output = run!(args) 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
6 entries across 6 versions & 1 rubygems