vegantech/sims

View on GitHub
lib/erb_cov.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ErbCov
  def self.diff
    read = File.read('tmp/rendered_erb').split("\n").uniq
    all =Dir.glob(Rails.root.join("app","views","**/*.erb"))
    (all-read).sort
  end
end