module Typhoeus::Requests::BlockConnection

def run

Other tags:
    Example: Run request. -
def run
  if Typhoeus::Config.block_connection
    raise Typhoeus::Errors::NoStub.new(self)
  else
    super
  end
end