Module: MissCleo::CoverageFilter

Defined in:
lib/miss_cleo/coverage_filter.rb

Constant Summary collapse

GEM_PATHS =
ENV["GEM_PATH"].split(":")
RUBY_PATH =
`which ruby`.chomp.gsub("/bin/ruby","")

Class Method Summary collapse

Class Method Details

.filter_and_trim(result_hash) ⇒ Object



24
25
26
27
# File 'lib/miss_cleo/coverage_filter.rb', line 24

def filter_and_trim(result_hash)
  filtered = filter_core(result_hash)
  normalize_paths(filtered)
end