Created
April 24, 2015 20:32
-
-
Save coderdave/9af1a5593d8fb00f793b to your computer and use it in GitHub Desktop.
Ruby nil_chain FTW
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
module Kernel | |
def nil_chain(ret_val = nil, &block) | |
begin | |
result = yield | |
return ret_val if result.nil? | |
result | |
rescue NoMethodError | |
rescue NameError | |
return ret_val | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Stop using try!
Full disclosure, this is a complete rip off from https://github.com/forgecrafted/finishing_moves