Skip to content

Instantly share code, notes, and snippets.

@raphaelcm
Created February 3, 2012 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raphaelcm/1732286 to your computer and use it in GitHub Desktop.
Save raphaelcm/1732286 to your computer and use it in GitHub Desktop.
Display specific records first.
class School < ActiveRecord::Base
scope :show_first, lambda{|val| order("(case country when '#{val}' then 0 else 1 end)") }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment