Skip to content

Instantly share code, notes, and snippets.

@mostlyobvious
Created July 1, 2011 11:52
Show Gist options
  • Save mostlyobvious/1058385 to your computer and use it in GitHub Desktop.
Save mostlyobvious/1058385 to your computer and use it in GitHub Desktop.
#!/usr/bin/env rake
task "test:first" do
puts "yada yada"
end
task "test:second" do
puts "kaka dudu"
end
task :test do
Rake::Task["test:first"].invoke
end
task :test do
Rake::Task["test:second"].invoke
end
task :default => :test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment