-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
37 lines (32 loc) · 864 Bytes
/
Rakefile
File metadata and controls
37 lines (32 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
task :default => [:test]
namespace :test do
task :coverage do
require 'simplecov'
SimpleCov.start
Rake::Task["test"].execute
end
end
namespace :sanitation do
desc "Check line lengths & whitespace with Cane"
task :lines do
puts ""
puts "== using cane to check line length =="
system("cane --no-abc --style-glob 'lib/**/*.rb' --no-doc")
puts "== done checking line length =="
puts ""
end
desc "Check method length with Reek"
task :methods do
puts ""
puts "== using reek to check method length =="
system("reek -n lib/*.rb 2>&1 | grep -v ' 0 warnings'")
puts "== done checking method length =="
puts ""
end
desc "Check both line length and method length"
task :all => [:lines, :methods]
end
task :default => :test
task :test do
Dir.glob('./test/*_test.rb').each { |file| require file}
end