Skip to content

Instantly share code, notes, and snippets.

@kpumuk
Created March 16, 2010 14:16
Show Gist options
  • Save kpumuk/334006 to your computer and use it in GitHub Desktop.
Save kpumuk/334006 to your computer and use it in GitHub Desktop.
Perform some actions before the rake task execution (something like "before" action)
before all
hello
task :hello do
puts 'hello'
end
task :before do
puts 'before all'
end
task :hello => :before
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment