forked from rspec/rspec-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
72 lines (57 loc) · 1.68 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
65
66
67
68
69
70
71
require "bundler"
Bundler.setup
Bundler::GemHelper.install_tasks
require "rake"
require "yaml"
require "rake/rdoctask"
require "rspec/core/rake_task"
require "rspec/core/version"
require "cucumber/rake/task"
class Cucumber::Rake::Task::ForkedCucumberRunner
# When cucumber shells out, we still need it to run in the context of our
# bundle.
def run
sh "bundle exec #{RUBY} " + args.join(" ")
end
end
desc "Run all examples"
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_path = 'bin/rspec'
t.rspec_opts = %w[--color]
t.verbose = false
end
Cucumber::Rake::Task.new(:cucumber)
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
task :rcov => ["rcov:cleanup", "rcov:spec", "rcov:cucumber"]
task :default => [:spec, :cucumber]
task :clobber do
rm_rf 'pkg'
rm_rf 'tmp'
rm_rf 'coverage'
end
desc "Push cukes to relishapp using the relish-client-gem"
task :relish, :version do |t, args|
raise "rake relish[VERSION]" unless args[:version]
sh "relish push --organization rspec --project rspec-core -v #{args[:version]}"
end
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "rspec-core #{RSpec::Core::Version::STRING}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end