Kamil Politowicz
Results
3
issues of
Kamil Politowicz
With this change rake test called from features works like charm.
Trivial example: ``` class Person < < ActiveRecord::Base scope :paged, lambda { |p| page(p) } end ``` Now: ``` irb(main):002:0> Person.paged(1).current_page => nil irb(main):003:0> Person.page(1).current_page => page 1 ``` #...