Module: Browsed

Defined in:
lib/browsed.rb,
lib/browsed/chrome.rb,
lib/browsed/client.rb,
lib/browsed/errors.rb,
lib/browsed/browser.rb,
lib/browsed/firefox.rb,
lib/browsed/manager.rb,
lib/browsed/proxies.rb,
lib/browsed/version.rb,
lib/browsed/constants.rb,
lib/browsed/phantomjs.rb,
lib/browsed/configuration.rb,
lib/browsed/proxies/chrome/proxy_authentication.rb

Defined Under Namespace

Modules: Browser, Chrome, Firefox, Phantomjs, Proxies Classes: Client, Configuration, Constants, InvalidBrowserError, Manager, PotentiallyStaleProxyError, TooManyProcessesError

Constant Summary collapse

VERSION =
"0.3.3"

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.configurationObject



37
38
39
# File 'lib/browsed.rb', line 37

def self.configuration
  @configuration ||= ::Browsed::Configuration.new
end

Class Method Details

.configure {|configuration| ... } ⇒ Object

Yields:



45
46
47
# File 'lib/browsed.rb', line 45

def self.configure
  yield(configuration)
end

.resetObject



41
42
43
# File 'lib/browsed.rb', line 41

def self.reset
  @configuration = ::Browsed::Configuration.new
end