Sha256: 251a2cd1e20a8cf9aafcb234cece0781dcac6ca15704a5ae25dd73b7a741a6a6

Contents?: true

Size: 840 Bytes

Versions: 6

Compression:

Stored size: 840 Bytes

Contents

require 'rake'

require "bundler/gem_tasks"

desc 'Default: Run all specs.'
task :default => 'all:spec'

namespace :all do

  desc "Run specs on all spec apps"
  task :spec do
    success = true
    for_each_directory_of('spec/**/Rakefile') do |directory|
      env = "SPEC=../../#{ENV['SPEC']} " if ENV['SPEC']
      success &= system("cd #{directory} && #{env} bundle exec rake spec")
    end
    fail "Tests failed" unless success
  end

  desc "Bundle all spec apps"
  task :bundle do
    for_each_directory_of('spec/**/Gemfile') do |directory|
      system("cd #{directory} && rm -f Gemfile.lock && bundle install")
    end
  end

end

def for_each_directory_of(path, &block)
  Dir[path].sort.each do |rakefile|
    directory = File.dirname(rakefile)
    puts '', "\033[44m#{directory}\033[0m", ''
    block.call(directory)
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rspec_candy-0.2.8 Rakefile
rspec_candy-0.2.7 Rakefile
rspec_candy-0.2.6 Rakefile
rspec_candy-0.2.5 Rakefile
rspec_candy-0.2.4 Rakefile
rspec_candy-0.2.3 Rakefile