Created
January 11, 2010 01:49
-
-
Save leepfrog/273920 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
def model | |
default_message_if_blank(read_attribute(:model)) | |
end | |
def default_message_if_blank(args) | |
if ["",nil].include? args | |
"None" | |
else | |
args | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment