2010-10-03 21:00:33 +00:00
|
|
|
require 'bundler'
|
|
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
|
|
|
|
require 'rspec/core/rake_task'
|
|
|
|
RSpec::Core::RakeTask.new(:spec)
|
2010-10-08 13:00:45 +00:00
|
|
|
task :default => :spec
|
|
|
|
|
2011-05-15 09:47:37 +00:00
|
|
|
require 'rbconfig'
|
2010-10-08 13:00:45 +00:00
|
|
|
namespace(:spec) do
|
2011-06-16 11:14:51 +00:00
|
|
|
if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/i
|
2011-05-15 09:47:37 +00:00
|
|
|
desc "Run all specs on multiple ruby versions (requires pik)"
|
|
|
|
task(:portability) do
|
|
|
|
%w[187 192 161].each do |version|
|
|
|
|
system "cmd /c echo -----------#{version}------------ & " +
|
|
|
|
"pik use #{version} & " +
|
|
|
|
"bundle install & " +
|
2011-07-20 23:42:32 +00:00
|
|
|
"bundle exec rspec spec"
|
2011-05-15 09:47:37 +00:00
|
|
|
end
|
2010-10-08 13:00:45 +00:00
|
|
|
end
|
2011-05-15 09:47:37 +00:00
|
|
|
else
|
|
|
|
desc "Run all specs on multiple ruby versions (requires rvm)"
|
|
|
|
task(:portability) do
|
2011-07-20 23:42:32 +00:00
|
|
|
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|
|
2011-05-15 09:47:37 +00:00
|
|
|
system <<-BASH
|
|
|
|
bash -c 'source ~/.rvm/scripts/rvm;
|
|
|
|
rvm #{version};
|
2011-07-20 23:42:32 +00:00
|
|
|
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;
|
2011-09-05 08:16:11 +00:00
|
|
|
RBXOPT="-Xrbc.db" bundle install;
|
|
|
|
RBXOPT="-Xrbc.db" bundle exec rspec spec -f doc 2>&1;'
|
2011-05-15 09:47:37 +00:00
|
|
|
BASH
|
|
|
|
end
|
|
|
|
end
|
2011-06-08 07:10:26 +00:00
|
|
|
end
|
2011-06-16 11:14:51 +00:00
|
|
|
end
|