Sha256: 3eb6987b6df02d088d76a556e3a912dd4f7ec02a0cccdf73a5a687a1b149b193

Contents?: true

Size: 1.01 KB

Versions: 6814

Compression:

Stored size: 1.01 KB

Contents

module Typhoeus
  class Request

    # This module contains everything what is necessary
    # to make a single request.
    module Operations

      # Run a request.
      #
      # @example Run a request.
      #  Typhoeus::Request.new("www.example.com").run
      #
      # @return [ Response ] The response.
      def run
        easy = EasyFactory.new(self).get
        easy.perform
        response
      end

      # Sets a response, the request on the response
      # and executes the callbacks.
      #
      # @param [Typhoeus::Response] response The response.
      # @param [Boolean] bypass_memoization Wether to bypass
      #   memoization or not. Decides how the response is set.
      #
      # @return [Typhoeus::Response] The response.
      def finish(response, bypass_memoization = nil)
        if bypass_memoization
          @response = response
        else
          self.response = response
        end
        self.response.request = self
        execute_callbacks
        response
      end
    end
  end
end

Version data entries

6,814 entries across 6,811 versions & 27 rubygems

Version Path
cloudsmith-api-0.49.9 vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/request/operations.rb
cloudsmith-api-0.44.4 vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.1/lib/typhoeus/request/operations.rb
dadapush_client-1.0.1 vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/request/operations.rb
approveapi-1.0.8 vendor/bundle/ruby/2.6.0/gems/typhoeus-1.3.1/lib/typhoeus/request/operations.rb
approveapi-1.0.5 vendor/bundle/ruby/2.6.0/gems/typhoeus-1.3.1/lib/typhoeus/request/operations.rb
typhoeus-1.3.1 lib/typhoeus/request/operations.rb
cloudsmith-api-0.30.7 vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/request/operations.rb
color_me_shop-1.0.0 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.3.0/lib/typhoeus/request/operations.rb
cloudsmith-api-0.21.4 vendor/bundle/ruby/2.3.0/gems/typhoeus-1.3.0/lib/typhoeus/request/operations.rb
typhoeus-1.3.0 lib/typhoeus/request/operations.rb
typhoeus-1.1.2 lib/typhoeus/request/operations.rb
typhoeus-1.1.1 lib/typhoeus/request/operations.rb
typhoeus-1.1.0 lib/typhoeus/request/operations.rb
typhoeus-1.0.2 lib/typhoeus/request/operations.rb
typhoeus-1.0.1 lib/typhoeus/request/operations.rb
typhoeus-1.0.0 lib/typhoeus/request/operations.rb
dwolla_swagger-1.0.6 vendor/bundle/ruby/2.2.0/gems/typhoeus-0.8.0/lib/typhoeus/request/operations.rb
typhoeus-0.8.0 lib/typhoeus/request/operations.rb
typhoeus-0.7.3 lib/typhoeus/request/operations.rb
typhoeus-0.7.2 lib/typhoeus/request/operations.rb