Skip to content

Instantly share code, notes, and snippets.

@defsan
Created January 17, 2013 01:07
Show Gist options
  • Save defsan/4552616 to your computer and use it in GitHub Desktop.
Save defsan/4552616 to your computer and use it in GitHub Desktop.
What is the best way? Notes: employee is association presence will return nil if blank?
employee ? employee.full_name : 'None'
or this:
employee.try(:full_name).presence || 'None'
@gregorym
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment