Sha256: c2c12bbf98320a21f8646564db1690324f0bbdd25d63dd01609389a6f7ebb100

Contents?: true

Size: 365 Bytes

Versions: 11

Compression:

Stored size: 365 Bytes

Contents

import %w(truth)

task(:hello) {
    puts "hello"
} % "print hello"

file("rm.t") { |t|
    sys.touch t.name
} %
"touch rm.t" %
"this file is useless"

task :sys_pipe do |t|
    sys.touch %w(a.t b.t)
    test(?f, "a.t") && test(?f, "b.t") or t.fail
    sys["*.t"] % :rm
    test(?f, "a.t") || test(?f, "b.t") and t.fail
end

drag :AutoClean, :clean

# vim:ft=ruby

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rant-0.4.0 test/import/truth/Rantfile
rant-0.4.2 test/import/truth/Rantfile
rant-0.4.4 test/import/truth/Rantfile
rant-0.4.6 test/import/truth/Rantfile
rant-0.4.8 test/import/truth/Rantfile
rant-0.5.0 test/import/truth/Rantfile
rant-0.5.4 test/import/truth/Rantfile
rant-0.5.6 test/import/truth/Rantfile
rant-0.3.8 test/import/truth/Rantfile
rant-0.5.2 test/import/truth/Rantfile
rant-0.5.7 test/import/truth/Rantfile