module PageByPage

Constants

VERSION

Public Class Methods

fetch(*args, &block) click to toggle source
# File lib/page_by_page.rb, line 8
def fetch(*args, &block)
  Fetch.new(*args, &block).process
end
jump(*args, &block) click to toggle source
# File lib/page_by_page.rb, line 16
def jump(*args, &block)
  Jump.new(*args, &block).process
end
lazy_fetch(*args, &block) click to toggle source
# File lib/page_by_page.rb, line 12
def lazy_fetch(*args, &block)
  Fetch.new(*args, &block).iterator
end