Sha256: 04e3366a0602dfc72fa07f7cd8c71f52cf37c4680b59aaa91e75228d821c982e

Contents?: true

Size: 286 Bytes

Versions: 2

Compression:

Stored size: 286 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 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.12 lib/page_by_page.rb
page_by_page-0.1.11 lib/page_by_page.rb