forked from guard/guard-rspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
34 lines (31 loc) · 902 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
require 'bundler'
Bundler::GemHelper.install_tasks
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task :default => :spec
namespace(:spec) do
desc "Run all specs on multiple ruby versions (requires rvm)"
task(:portability) do
%w[1.8.7 1.9.2].each do |version|
system <<-BASH
bash -c 'source ~/.rvm/scripts/rvm;
rvm #{version};
echo "--------- version #{version} ----------\n";
bundle install;
rake spec:prepare_fixtures
rake spec'
BASH
end
end
desc "Run bundle install on each fixtures directories with Gemfile"
task(:prepare_fixtures) do
Dir.foreach("spec/fixtures") do |dir|
if File.exists?("spec/fixtures/#{dir}/Gemfile")
system <<-BASH
cd spec/fixtures/#{dir};
bundle install
BASH
end
end
end
end