Created
January 25, 2013 09:18
-
-
Save anonymous/4633029 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
status = 'solved' | |
case status | |
when 'solved', 'closed' | |
puts true | |
end | |
puts true if %w[solved closed].include? status | |
puts true if status == 'solved' or status == 'closed' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment