module Typhoeus::Request::Operations

def run

Returns:
  • (Response) - The response.

Other tags:
    Example: Run a request. -
def run
  easy = EasyFactory.new(self).get
  easy.perform
  response
end