Sha256: 2dd65e00190e69aaeed18b4d41c64e5ff018e62bb29a05cc99dcfc7d61f67fc6
Contents?: true
Size: 365 Bytes
Versions: 54
Compression:
Stored size: 365 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
54 entries across 41 versions & 5 rubygems