~ubuntu-branches/ubuntu/utopic/ruby-excon/utopic

« back to all changes in this revision

Viewing changes to lib/excon/constants.rb

  • Committer: Package Import Robot
  • Author(s): Laurent Bigonville
  • Date: 2013-07-06 23:48:43 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130706234843-vyj5m4o7q6hlhwo4
Tags: 0.25.1-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
  HTTP_1_1 = " HTTP/1.1\r\n"
23
23
 
24
 
  HTTP_VERBS = %w{connect delete get head options post put trace patch}
 
24
  HTTP_VERBS = %w{connect delete get head options patch post put trace}
25
25
 
26
26
  HTTPS = 'https'
27
27
 
35
35
    :chunk_size,
36
36
    :client_key,
37
37
    :client_cert,
 
38
    :certificate,
 
39
    :private_key,
38
40
    :connect_timeout,
39
41
    :connection,
 
42
    :debug_request,
 
43
    :debug_response,
40
44
    :error,
41
45
    :exception,
42
46
    :expects,
50
54
    :middlewares,
51
55
    :mock,
52
56
    :nonblock,
 
57
    :omit_default_port,
53
58
    :password,
54
59
    :path,
55
60
    :pipeline,
63
68
    :retries_remaining,
64
69
    :retry_limit,
65
70
    :scheme,
 
71
    :tcp_nodelay,
66
72
    :uri_parser,
67
73
    :user,
68
74
    :ssl_ca_file,
71
77
    :write_timeout
72
78
  ]
73
79
 
74
 
  VERSION = '0.21.0'
 
80
  VERSION = '0.25.1'
75
81
 
76
82
  unless ::IO.const_defined?(:WaitReadable)
77
83
    class ::IO