Sha256: 0c51b5d1e1a94f437ca93657b47054fb211e8bbcfd36ff70594069176b556852
Contents?: true
Size: 265 Bytes
Versions: 12
Compression:
Stored size: 265 Bytes
Contents
task :default => [:a, :b] do |t, args| puts "task default" end def stuff sleep(1) end task :a => [:x, :y] do puts "task a" stuff end task :b do puts "task b" stuff end task :x do puts "task x" stuff end task :y do puts "task y" stuff end
Version data entries
12 entries across 12 versions & 1 rubygems