Sha256: cf45c485f1cb46af8a94e3d17fc8dc0b2debbc5100d9a592bbac2639394c8f68

Contents?: true

Size: 369 Bytes

Versions: 2

Compression:

Stored size: 369 Bytes

Contents

require 'page_by_page/version'
require 'page_by_page/fetch'
require 'page_by_page/jump'

module PageByPage

  class << self
    def fetch(*args, &block)
      Fetch.new(*args, &block).process
    end

    def lazy_fetch(*args, &block)
      Fetch.new(*args, &block).iterator
    end

    def jump(*args, &block)
      Jump.new(*args, &block).process
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
page_by_page-0.1.14 lib/page_by_page.rb
page_by_page-0.1.13 lib/page_by_page.rb