Skip to content

Instantly share code, notes, and snippets.

@rojotek
Created May 15, 2014 21:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rojotek/f53fbf648a286a65d51d to your computer and use it in GitHub Desktop.
Save rojotek/f53fbf648a286a65d51d to your computer and use it in GitHub Desktop.
rails has_one with a proc.
class Project
# as above
has_one :project_department, ->(department) { where department: department }, class_name: 'ProjectDepartment'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment