-
Notifications
You must be signed in to change notification settings - Fork 81
/
Rakefile
49 lines (41 loc) · 1.31 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
require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
def ci?
ENV['CI'] == 'true'
end
default_tasks = []
default_tasks << RSpec::Core::RakeTask.new(:spec) do |t|
t.verbose = ci?
end
unless ci?
require 'rubocop/rake_task'
default_tasks << RuboCop::RakeTask.new(:rubocop)
end
task default: default_tasks.map(&:name)
namespace(:spec) do
desc 'Run all specs on multiple ruby versions (requires rvm)'
task(:portability) do
travis_config_file = File.expand_path('../.travis.yml', __FILE__)
begin
travis_options ||= YAML.load_file(travis_config_file)
rescue => ex
puts "Travis config file '#{travis_config_file}' could not be found: #{ex.message}"
return
end
travis_options['rvm'].each do |version|
system <<-BASH
bash -c 'source ~/.rvm/scripts/rvm;
rvm #{version};
ruby_version_string_size=`ruby -v | wc -m`
echo;
for ((c=1; c<$ruby_version_string_size; c++)); do echo -n "="; done
echo;
echo "`ruby -v`";
for ((c=1; c<$ruby_version_string_size; c++)); do echo -n "="; done
echo;
RBXOPT="-Xrbc.db" bundle install;
RBXOPT="-Xrbc.db" bundle exec rspec spec -f doc 2>&1;'
BASH
end
end
end