summaryrefslogtreecommitdiff
path: root/test/rake/data/chains/Rakefile
blob: 31bdc2578d72e54c4453e8932868169eac787d8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- ruby -*-

task :default => "play.app"

file "play.scpt" => "base" do |t|
  cp t.prerequisites.first, t.name
end

rule ".app" => ".scpt" do |t|
  cp t.source, t.name
end

file 'base' do
  touch 'base'
end