~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: 2012-04-17 17:46:25 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120417174625-lw1k4ybpynvvrqsd
Tags: 0.13.4-1
* New upstream release
* debian/patches/01_use_ca-certificate.patch: Use SSL certificates from
  ca-certificate package
* debian/control: Recommends ca-certificates package

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
module Excon
2
2
  unless const_defined?(:VERSION)
3
 
    VERSION = '0.10.0'
 
3
    VERSION = '0.13.4'
4
4
  end
5
5
 
6
6
  unless const_defined?(:CHUNK_SIZE)
11
11
    CR_NL = "\r\n"
12
12
  end
13
13
 
 
14
  unless const_defined?(:DEFAULT_CA_FILE)
 
15
    DEFAULT_CA_FILE = '/etc/ssl/certs/ca-certificates.crt'
 
16
  end
 
17
 
14
18
  unless const_defined?(:DEFAULT_RETRY_LIMIT)
15
19
    DEFAULT_RETRY_LIMIT = 4
16
20
  end