Created
September 11, 2011 22:15
-
-
Save softwaregravy/1210203 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
# What I really wanted my logic to be | |
def my_method(options = {}) | |
if options.has_key?(:key) && !options[:key].nil? | |
if options[:key] | |
# do something using the option here | |
else | |
# do something else | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment