Sha256: 164eb917bfc261cfafdfa642238552b6263c004c451fc672308fe087f2eeac71

Contents?: true

Size: 366 Bytes

Versions: 139

Compression:

Stored size: 366 Bytes

Contents

# 

task :default => ["temp_main"]

file "temp_main" => [:all_apps]  do touch "temp_main" end

task :all_apps => [:one, :two]
task :one => ["temp_one"]
task :two => ["temp_two"]

file "temp_one" do |t|
  touch "temp_one"
end
file "temp_two" do |t|
  touch "temp_two"
end

task :clean do
  ["temp_one", "temp_two", "temp_main"].each do |file|
    rm_f file
  end
end

Version data entries

139 entries across 111 versions & 11 rubygems

Version Path
craigmarksmith-rake-0.8.3.100 test/data/dryrun/Rakefile
craigmarksmith-rake-0.8.4.101 test/data/dryrun/Rakefile
craigmarksmith-rake-0.8.4.102 test/data/dryrun/Rakefile
craigmarksmith-rake-0.8.4.103 test/data/dryrun/Rakefile
elliottcable-echoe-3.1.1 vendor/rake/test/data/dryrun/Rakefile
elliottcable-echoe-3.1.2 vendor/rake/test/data/dryrun/Rakefile
jimweirich-rake-0.8.1.10 test/data/dryrun/Rakefile
jimweirich-rake-0.8.1.11 test/data/dryrun/Rakefile
jimweirich-rake-0.8.1.5 test/data/dryrun/Rakefile
jimweirich-rake-0.8.1.6 test/data/dryrun/Rakefile
jimweirich-rake-0.8.1.7 test/data/dryrun/Rakefile
jimweirich-rake-0.8.1.8 test/data/dryrun/Rakefile
jimweirich-rake-0.8.1.9 test/data/dryrun/Rakefile
jimweirich-rake-0.8.2.99 test/data/dryrun/Rakefile
jimweirich-rake-0.8.2 test/data/dryrun/Rakefile
jimweirich-rake-0.8.3.1 test/data/dryrun/Rakefile
jimweirich-rake-0.8.3.100 test/data/dryrun/Rakefile
jimweirich-rake-0.8.3.99 test/data/dryrun/Rakefile
jimweirich-rake-0.8.3 test/data/dryrun/Rakefile
jimweirich-rake-0.8.4.99 test/data/dryrun/Rakefile