Sha256: d106dc0ed724572edb0c807eb8be75c424a3f73db9473fe727cfda238d171bb9

Contents?: true

Size: 441 Bytes

Versions: 2

Compression:

Stored size: 441 Bytes

Contents

# A template to simplify running multiple tests for an examples.
# This file is meant to be embedded in another Rakefile.
#--
# Copyright 2006 Suraj N. Kurapati
# See the file named LICENSE for details.

# supress errors about nonexistent tasks
task :default

ARGV.each do |t|
  task t
end

# invoke each test runner with the command-line args
at_exit do
  FileList['**/*.rake'].each do |runner|
    sh 'rake', '-f', runner, *ARGV
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruby-vpi-21.1.0 lib/ruby-vpi/runner_proxy.rb
ruby-vpi-21.0.0 lib/ruby-vpi/runner_proxy.rb