Sha256: 47e28019e7970131b6f3528708c1e88232a51babaf355de678e91dbfc03eb115

Contents?: true

Size: 557 Bytes

Versions: 2

Compression:

Stored size: 557 Bytes

Contents

# A template to simplify running multiple tests for an examples.
# This file is meant to be embedded in another Rakefile.
#--
# Copyright 2006-2007 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 |path|
      parent, runner = File.dirname(path), File.basename(path)

      cd parent do
        sh 'rake', '-f', runner, *ARGV
      end
    end
  end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruby-vpi-17.0.0 lib/ruby-vpi/runner_proxy.rb
ruby-vpi-18.0.0 lib/ruby-vpi/runner_proxy.rb