Sha256: bfaa0dc661e9a34041d30070f2006f12aa43a1a8c698da374ee172ee76bb34a3
Contents?: true
Size: 492 Bytes
Versions: 1
Compression:
Stored size: 492 Bytes
Contents
namespace :metrics do task :prepare do RAILS_ENV = 'test' end desc "Useful for continuous integration" task :all_with_migrate => [:prepare, "db:migrate", :all] if MetricFu::RAILS desc "Generate coverage, cyclomatic complexity, flog, stats, and churn reports" task :all => [:coverage, :saikuro, :flog, :churn, :stats] else desc "Generate coverage, cyclomatic complexity, flog, and churn reports" task :all => [:coverage, :saikuro, :flog, :churn] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
indirect-metric_fu-0.8.1 | lib/tasks/metric_fu.rake |