forked from rspec/rspec-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
73 lines (59 loc) · 1.85 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
72
73
require "bundler"
Bundler.setup
Bundler::GemHelper.install_tasks
task :build => :raise_if_psych_is_defined
task :raise_if_psych_is_defined do
if defined?(Psych)
raise <<-MSG
===============================================================================
Gems compiled in Ruby environments with Psych loaded are incompatible with Ruby
environments that don't have Psych loaded. Try building this gem in Ruby 1.8.7
instead.
===============================================================================
MSG
end
end
require "rake"
require "yaml"
require "rspec/core/rake_task"
require "rspec/core/version"
require "cucumber/rake/task"
Cucumber::Rake::Task.new(:cucumber)
desc "Run all examples"
RSpec::Core::RakeTask.new(:spec) do |t|
t.rspec_opts = %w[--color]
end
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
task :rcov => ["rcov:cleanup", "rcov:spec", "rcov:cucumber"]
end
desc "delete generated files"
task :clobber do
sh %q{find . -name "*.rbc" | xargs rm}
sh 'rm -rf pkg'
sh 'rm -rf tmp'
sh 'rm -rf coverage'
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 push rspec/rspec-core:#{args[:version]}"
sh "rm features/Changelog.md"
end
task :default => [:spec, :cucumber]