Created
February 11, 2009 15:57
-
-
Save chrismear/62086 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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