module Typhoeus::Hydra::ConnectOptions::ClassMethods

def self.extended(base)

def self.extended(base)
  class << base
    attr_accessor :allow_net_connect
    attr_accessor :ignore_localhost
  end
  base.allow_net_connect = true
  base.ignore_localhost = false
end