Sha256: e61591635708ab7800697937682f4742b1a454b498573a7f0212bf1b50d52680
Contents?: true
Size: 851 Bytes
Versions: 1
Compression:
Stored size: 851 Bytes
Contents
require 'nokogiri' require 'capybara/poltergeist' require 'net/http/persistent' require 'webrick/cookie' %w( sunbro/version sunbro/settings sunbro/dynamic_http sunbro/http sunbro/page ).each do |f| require f end module Sunbro MAX_RETRIES = 5 def get_page(link, opts={}) @http ||= HTTP.new fetch_with_connection(@http, link, opts) end def render_page(link, opts={}) @dhttp ||= DynamicHTTP.new fetch_with_connection(@dhttp, link, opts) end def fetch_with_connection(conn, link, opts) page, tries = nil, MAX_RETRIES begin page = conn.fetch_page(link, opts) sleep 1 end until page.try(:present?) || (tries -= 1).zero? page.discard_doc! unless page.is_valid? page end def close_http_connections @http.close if @http @dhttp.close if @dhttp rescue IOError end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sunbro-0.0.1 | lib/sunbro.rb |