forked from ai/autoprefixer-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
48 lines (43 loc) · 1.25 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
# coding: utf-8
require 'rubygems'
require 'bundler/setup'
Bundler::GemHelper.install_tasks
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new
task :default => :spec
task :clobber_package do
rm_r 'pkg' rescue nil
end
desc 'Delete all generated files'
task :clobber => [:clobber_package]
desc 'Test all Gemfiles from spec/*.gemfile'
task :test_all do
require 'pty'
require 'shellwords'
cmd = 'bundle update && bundle exec rake --trace'
statuses = Dir.glob('./sprockets*.gemfile').map do |gemfile|
Bundler.with_clean_env do
env = { 'BUNDLE_GEMFILE' => gemfile }
$stderr.puts "Testing #{ File.basename(gemfile) }:"
$stderr.puts " export BUNDLE_GEMFILE=#{ gemfile }"
$stderr.puts " #{ cmd }"
PTY.spawn(env, cmd) do |r, _w, pid|
begin
r.each_line { |l| puts l }
rescue Errno::EIO
# Errno:EIO error means that the process has finished giving output.
ensure
::Process.wait pid
end
end
[$? && $?.exitstatus == 0, gemfile]
end
end
failed = statuses.reject(&:first).map(&:last)
if failed.empty?
$stderr.puts "✓ Tests pass with all #{ statuses.size } gemfiles"
else
$stderr.puts "❌ FAILING #{ failed * "\n" }"
exit 1
end
end