Module: Excon

Defined in:
lib/excon.rb,
lib/excon/errors.rb,
lib/excon/response.rb,
lib/excon/connection.rb

Defined Under Namespace

Modules: Errors Classes: Connection, Response

Constant Summary collapse

VERSION =
'0.6.1'
CHUNK_SIZE =

1 megabyte

1048576

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.ssl_ca_pathString

Returns The filesystem path to the SSL Certificate Authority.

Returns:

  • (String)

    The filesystem path to the SSL Certificate Authority



25
26
27
# File 'lib/excon.rb', line 25

def ssl_ca_path
  @ssl_ca_path
end

.ssl_verify_peertrue, false

Returns Whether or not to verify the peer’s SSL certificate / chain.

Returns:

  • (true, false)

    Whether or not to verify the peer’s SSL certificate / chain



28
29
30
# File 'lib/excon.rb', line 28

def ssl_verify_peer
  @ssl_verify_peer
end

Class Method Details

.mockObject

Status of mocking



37
38
39
# File 'lib/excon.rb', line 37

def mock
  @mock
end

.mock=(new_mock) ⇒ Object

Change the status of mocking false is the default and works as expected true returns a value from stubs or raises



44
45
46
# File 'lib/excon.rb', line 44

def mock=(new_mock)
  @mock = new_mock
end

.new(url, params = {}) ⇒ Object

Initializes a new keep-alive session for a given remote host

@param [String] url The destination URL
@param [Hash<Symbol, >] params One or more option params to set on the Connection instance
@return [Connection] A new Excon::Connection instance


53
54
55
# File 'lib/excon.rb', line 53

def new(url, params = {})
  Excon::Connection.new(url, params)
end

.stub(request_params, response_params = nil) ⇒ Object

push an additional stub onto the list to check for mock requests

@param [Hash<Symbol, >] request params to match against, omitted params match all
@param [Hash<Symbol, >] response params to return from matched request or block to call with params


66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/excon.rb', line 66

def stub(request_params, response_params = nil)
  if block_given?
    if response_params
      raise(ArgumentError.new("stub requires either response_params OR a block"))
    else
      stub = [request_params, Proc.new]
    end
  elsif response_params
    stub = [request_params, response_params]
  else
    raise(ArgumentError.new("stub requires either response_params OR a block"))
  end
  stubs << stub
  stub
end

.stubsObject

get a list of defined stubs



83
84
85
# File 'lib/excon.rb', line 83

def stubs
  @stubs ||= []
end