Guest User

Untitled

a guest
Jul 16th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. task :name => [:prereq1, :prereq2] do
  2. print "blabla"
  3. end
  4.  
  5. file "sample.txt" do
  6. # some file actions
  7. end
  8.  
  9. rule '.o' => ['.c'] do |t|
  10. sh "cc #{t.source} -c -o #{t.name}"
  11. end
Add Comment
Please, Sign In to add comment