module Typhoeus::Requests::Operations::ClassMethods

def run(url, options = {})

Returns:
  • (Response) - The response.

Parameters:
  • options (Hash) -- The options hash.
  • url (String) -- The url to request.

Other tags:
    Example: Perform request. -
def run(url, options = {})
  new(url, options).run
end