-
Notifications
You must be signed in to change notification settings - Fork 60
/
Rakefile
40 lines (32 loc) · 1.04 KB
/
Rakefile
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
38
39
40
#!/usr/bin/env rake
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)
StoreEngine::Application.load_tasks
begin
require 'rspec/core/rake_task'
task :default => :spec
RSpec::Core::RakeTask.new("spec:acceptance") do |t|
t.rspec_opts = "--tag acceptance"
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