Skip to content

Instantly share code, notes, and snippets.

@mayra-cabrera
Last active August 29, 2015 14:28
Show Gist options
  • Save mayra-cabrera/01576869bf1e10591a2f to your computer and use it in GitHub Desktop.
Save mayra-cabrera/01576869bf1e10591a2f to your computer and use it in GitHub Desktop.
class User
has_many :departments
def department_name
departaments.join(",")
end
end
def user_info(user)
"Name: #{user.name}. Dept: #{user.department_name}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment