Sha256: 9c1ab8c1698b963f0f703e4a71a853aaed6ebffccd120596f968ed174dd40b5e
Contents?: true
Size: 407 Bytes
Versions: 10
Compression:
Stored size: 407 Bytes
Contents
# require 'simplecov' task default: [:test] task :test do sh 'rspec' end task audit: [:style, :complexity, :duplication, :design, :documentation] task :style do sh 'rubocop' end task :complexity do sh 'flog *.rb **/*.rb' end task :duplication do sh 'flay' end task :design do sh 'roodi' sh 'reek *.rb **/*.rb' end task :rework do sh 'churn' end task :documentation do sh 'inch' end
Version data entries
10 entries across 10 versions & 1 rubygems