Skip to content

Instantly share code, notes, and snippets.

@chrismear
Created February 11, 2009 15:57
Show Gist options
  • Save chrismear/62086 to your computer and use it in GitHub Desktop.
Save chrismear/62086 to your computer and use it in GitHub Desktop.
# This...
task :my_task do
some_code
end
# becomes this...
task :my_task do
begin
some_code
rescue
puts "Ignoring error."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment