Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 2nd, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Best way to build a multiple filter in rails
  2. class Event < ActiveRecord::Base
  3.   scope :by_continent, lambda {|continent| where(:continent => continent)}
  4.   scope :by_country, lambda {|country| where(:country => country)}
  5.   ...
  6. end