spec/fixtures/developer.rb in will_paginate-3.0.12 vs spec/fixtures/developer.rb in will_paginate-3.1.0
- old
+ new
@@ -1,14 +1,7 @@
class Developer < User
has_and_belongs_to_many :projects, :join_table => 'developers_projects'
- def self.with_poor_ones(&block)
- options = { :conditions => ['salary <= ?', 80000], :order => 'salary' }
- with_scope({ :find => options }, :overwrite) do
- yield
- end
- end
-
scope :poor, lambda {
where(['salary <= ?', 80000]).order('salary')
}
def self.per_page() 10 end