Skip to content

Instantly share code, notes, and snippets.

@manishval
Created March 2, 2012 22:07
Show Gist options
  • Save manishval/1961729 to your computer and use it in GitHub Desktop.
Save manishval/1961729 to your computer and use it in GitHub Desktop.
def full_name
if first_name.blank?
last_name
else
[first_name, last_name].compact.join(' ')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment