-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
executable file
·64 lines (54 loc) · 1.65 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
require "bundler/setup"
require "rake"
require "rspec/core/rake_task"
require "cucumber/rake/task"
require "appraisal"
desc "Default: Run all specs and cucumber features under all supported Rails versions."
task :default do
exec("appraisal install ; appraisal rake spec cucumber")
end
desc "Run all specs"
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = %w[--color]
end
Cucumber::Rake::Task.new(:cucumber)
if RUBY_VERSION.to_f == 1.8
namespace :rcov do
task :cleanup do
rm_rf "coverage.data"
end
RSpec::Core::RakeTask.new :spec do |t|
t.rcov = true
t.rcov_opts = %[-Ilib -Ispec --exclude "gems/*,features"]
t.rcov_opts << %[--no-html --aggregate coverage.data]
end
Cucumber::Rake::Task.new :cucumber do |t|
t.cucumber_opts = %w{--format progress}
t.rcov = true
t.rcov_opts = %[-Ilib -Ispec --exclude "gems/*,features"]
t.rcov_opts << %[--text-report --sort coverage --aggregate coverage.data]
end
end
desc "run specs and cukes with rcov"
task :rcov => ["rcov:cleanup", "rcov:spec", "rcov:cucumber"]
end
desc "Push docs/cukes to relishapp using the relish-client-gem"
task :relish, :version do |t, args|
raise "rake relish[VERSION]" unless args[:version]
sh "cp Changelog.md features/"
sh "relish versions:add rspec-subject-extensions:#{args[:version]}"
sh "relish push ZenCocoon/rspec-subject-extensions:#{args[:version]}"
sh "rm features/Changelog.md"
end
task :clobber do
rm_rf "pkg"
rm_rf "tmp"
rm_rf "coverage"
rm "coverage.data"
end
namespace :clobber do
desc "remove generated rbc files"
task :rbc do
Dir["**/*.rbc"].each {|f| File.delete(f)}
end
end