module Browsed class Configuration attr_accessor :driver, :browser, :environment attr_accessor :phantomjs_path, :download_path attr_accessor :maximum_processes, :processes_max_ttl attr_accessor :verbose def initialize self.driver = :poltergeist self.browser = :phantomjs self.environment = :production self.phantomjs_path = "/usr/local/bin/phantomjs" self.download_path = nil self.maximum_processes = nil self.processes_max_ttl = 60 * 30 # 30 minutes self.verbose = false end def verbose? self.verbose end end end