Skip to content

Instantly share code, notes, and snippets.

@HungYuHei
Created September 5, 2011 12:53
Show Gist options
  • Select an option

  • Save HungYuHei/1194923 to your computer and use it in GitHub Desktop.

Select an option

Save HungYuHei/1194923 to your computer and use it in GitHub Desktop.
reject-blank-params
MODEL.where(params[:student].select{|k,v| !v.blank?})
MODEL.where(params[:student].reject{|k,v| v.blank?})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment