Sha256: 7bfcebf8405de56e4fd09b051eae6d1a88646a170fcc1c23038b8d88cec4eb60

Contents?: true

Size: 612 Bytes

Versions: 13

Compression:

Stored size: 612 Bytes

Contents

require "bundler/gem_tasks"
require "rake/testtask"

task :default => [:test]

Rake::TestTask.new(:test) do |test|
  test.libs << "test"
  test.verbose = true

  test_files = FileList["test/**/*_test.rb"]

  if RUBY_VERSION == "2.0.0"
    # test_files = test_files - %w{test/dry_container_test.rb test/2.1.0-pipetree_test.rb}
    test_files = test_files - %w{test/step_test.rb}      + %w{test/ruby-2.0.0/step_test.rb}
    test_files = test_files - %w{test/operation_test.rb} + %w{test/ruby-2.0.0/operation_test.rb}
  else
    test_files -= FileList["test/ruby-2.0.0/*"]
  end

  test.test_files = test_files
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
trailblazer-operation-0.4.1 Rakefile
trailblazer-operation-0.4.0 Rakefile
trailblazer-operation-0.3.1 Rakefile
trailblazer-operation-0.3.0 Rakefile
trailblazer-operation-0.2.5 Rakefile
trailblazer-operation-0.2.4 Rakefile
trailblazer-operation-0.2.3 Rakefile
trailblazer-operation-0.2.2 Rakefile
trailblazer-operation-0.2.1 Rakefile
trailblazer-operation-0.2.0 Rakefile
trailblazer-operation-0.1.3 Rakefile
trailblazer-operation-0.1.2 Rakefile
trailblazer-operation-0.1.1 Rakefile