Guest User

Untitled

a guest
Jun 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. named_scope :price, lambda {
  2. |start, finish| {
  3. if start == "0"
  4. :conditions => ['cost = ?', 0]
  5. elsif finish == "101"
  6. :conditions => ['cost => ?', 101]
  7. else
  8. :conditions => ['cost IN (?)', start..finish]
  9. end
  10. }
  11. }
Add Comment
Please, Sign In to add comment