excon 0.20.0 → 0.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile.lock +1 -1
- data/changelog.txt +6 -0
- data/excon.gemspec +2 -2
- data/lib/excon/connection.rb +3 -0
- data/lib/excon/constants.rb +1 -1
- data/lib/excon/middlewares/idempotent.rb +1 -0
- metadata +3 -3
data/Gemfile.lock
CHANGED
data/changelog.txt
CHANGED
data/excon.gemspec
CHANGED
|
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
## If your rubyforge_project name is different, then edit it and comment out
|
|
14
14
|
## the sub! line in the Rakefile
|
|
15
15
|
s.name = 'excon'
|
|
16
|
-
s.version = '0.20.
|
|
17
|
-
s.date = '2013-03-
|
|
16
|
+
s.version = '0.20.1'
|
|
17
|
+
s.date = '2013-03-19'
|
|
18
18
|
s.rubyforge_project = 'excon'
|
|
19
19
|
|
|
20
20
|
## Make sure your summary is short. The description may be as long
|
data/lib/excon/connection.rb
CHANGED
|
@@ -40,6 +40,9 @@ module Excon
|
|
|
40
40
|
# merge does not deep-dup, so make sure headers is not the original
|
|
41
41
|
@data[:headers] = @data[:headers].dup
|
|
42
42
|
|
|
43
|
+
# the same goes for :middlewares
|
|
44
|
+
@data[:middlewares] = @data[:middlewares].dup
|
|
45
|
+
|
|
43
46
|
@data.merge!(params)
|
|
44
47
|
|
|
45
48
|
if @data[:scheme] == HTTPS && (ENV.has_key?('https_proxy') || ENV.has_key?('HTTPS_PROXY'))
|
data/lib/excon/constants.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: excon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.20.
|
|
4
|
+
version: 0.20.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2013-03-
|
|
14
|
+
date: 2013-03-19 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: activesupport
|
|
@@ -233,7 +233,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
233
233
|
version: '0'
|
|
234
234
|
segments:
|
|
235
235
|
- 0
|
|
236
|
-
hash:
|
|
236
|
+
hash: 3520724384366135063
|
|
237
237
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
238
238
|
none: false
|
|
239
239
|
requirements:
|