Sha256: 879cf24e36210c9c72f89d184a4ec0f29c66c0a143caaeeb9fc51522461cd1b5

Contents?: true

Size: 397 Bytes

Versions: 17

Compression:

Stored size: 397 Bytes

Contents

#!/usr/bin/env rake
require 'bundler/gem_tasks'
require 'rake/testtask'
require './test/test_helper.rb'

TestApp.load_tasks

task default: :test

desc 'Run tests in isolated processes'
namespace :test do
  task :isolated do
    Dir[test_task.pattern].each do |file|
      cmd = ['ruby']
      test_task.libs.each { |l| cmd << '-I' << l }
      cmd << file
      sh cmd.join(' ')
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
jsonapi-resources-0.7.1.beta1 Rakefile
jsonapi-resources-0.7.0 Rakefile
jsonapi-resources-0.6.2 Rakefile
jsonapi-resources-0.6.1 Rakefile
jsonapi-resources-0.6.0 Rakefile
jsonapi-resources-0.5.9 Rakefile
jsonapi-resources-0.5.8 Rakefile
jsonapi-resources-0.5.7 Rakefile
jsonapi-resources-0.5.6 Rakefile
jsonapi-resources-0.5.5 Rakefile
jsonapi-resources-0.5.4 Rakefile
jsonapi-resources-0.5.3 Rakefile
jsonapi-resources-0.5.2 Rakefile
jsonapi-resources-0.5.1 Rakefile
jsonapi-resources-0.5.0 Rakefile
jsonapi-resources-0.4.4 Rakefile
jsonapi-resources-0.4.3 Rakefile