gist: 1885 Download_button fork
public
Public Clone URL: git://gist.github.com/1885.git
Text only
1
2
3
4
5
def slow_each(options, &block)
  0.step(count(options), options[:limit]) do |offset|
    find(:all, options.merge(:offset => offset)).each(&block)
  end
end

Owner

brandon

Revisions