Skip to content

Instantly share code, notes, and snippets.

@petelacey
Created June 11, 2009 16:34
Show Gist options
  • Save petelacey/128036 to your computer and use it in GitHub Desktop.
Save petelacey/128036 to your computer and use it in GitHub Desktop.
def best_name
return given_name unless self.given_name.blank?
return "#{first_name} #{last_name}".strip unless self.last_name.blank?
return user_name unless self.user_name.blank?
return uid
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment