Skip to content

Instantly share code, notes, and snippets.

@baweaver
Created August 13, 2014 03:26
Show Gist options
  • Save baweaver/f65117ba71667298afac to your computer and use it in GitHub Desktop.
Save baweaver/f65117ba71667298afac to your computer and use it in GitHub Desktop.
Person.where(
{}.tap { |filters|
filters[:name] = params[:name] if params[:name]
filters[:age] = params[:age] if params[:age]
filters[:gender] = params[:gender] if params[:gender]
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment