mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
16 lines
210 B
Text
16 lines
210 B
Text
|
# -*- 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
|