-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathRakefile
47 lines (38 loc) · 957 Bytes
/
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
41
42
43
44
45
46
47
require 'rubygems'
require 'bundler/setup'
require "bundler/gem_tasks"
desc 'cleanup rcov, doc directories'
task :clean do
rm_rf 'coverage'
rm_rf 'doc'
rm_rf 'measurement'
end
# https://github.com/sferik/twitter/blob/master/Rakefile
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task :test => :spec
if Dir.exist?('./features')
RSpec::Core::RakeTask.new(:features) do |t|
t.pattern = './features/**/*_spec.rb'
t.rspec_opts = '-I ./features'
end
end
begin
require 'rubocop/rake_task'
RuboCop::RakeTask.new
rescue LoadError
task :rubocop do
$stderr.puts 'Rubocop is disabled.'
end
end
require 'yard'
YARD::Rake::YardocTask.new
require 'yardstick/rake/measurement'
Yardstick::Rake::Measurement.new do |measurement|
measurement.output = 'measurement/report.txt'
end
require 'yardstick/rake/verify'
Yardstick::Rake::Verify.new do |verify|
verify.threshold = 59.6
end
task :default => [:spec, :rubocop]