Skip to content

Instantly share code, notes, and snippets.

@hsbt
Created February 10, 2012 22:47
Show Gist options
  • Save hsbt/1793682 to your computer and use it in GitHub Desktop.
Save hsbt/1793682 to your computer and use it in GitHub Desktop.
task :mybefore do
puts :foo
end
task :myafter do
puts :bar
end
task :buzz do
puts :buzz
end
Rake::Task[:buzz].enhance([:mybefore]) do
Rake::Task[:myafter].invoke
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment