forked from guard/rb-fsevent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
32 lines (30 loc) · 1.01 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
# -*- encoding: utf-8 -*-
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"
task(:portability) do
versions = %w[2.2.2 2.3.0-dev rbx-2.5.5 jruby-1.7.9]
versions.each do |version|
# system <<-BASH
# bash -c 'source ~/.rvm/scripts/rvm;
# rvm #{version};
# echo "--------- version #{version} ----------\n";
# bundle install;
# rake spec'
# BASH
system <<-BASH
bash -c 'export PATH="$HOME/.rbenv/bin:$PATH";
[[ `which rbenv` ]] && eval "$(rbenv init -)";
[[ ! -a $HOME/.rbenv/versions/#{version} ]] && rbenv install #{version};
rbenv shell #{version};
rbenv which bundle 2> /dev/null || gem install bundler;
bundle install;
rake spec;'
BASH
end
end
end