rest-client 1.4.1 → 1.4.2
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/VERSION +1 -1
- data/history.md +5 -0
- data/lib/restclient/exceptions.rb +1 -1
- data/lib/restclient/request.rb +2 -2
- metadata +3 -3
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.4.
|
|
1
|
+
1.4.2
|
data/history.md
CHANGED
data/lib/restclient/request.rb
CHANGED
|
@@ -141,8 +141,8 @@ module RestClient
|
|
|
141
141
|
net.read_timeout = @timeout if @timeout
|
|
142
142
|
net.open_timeout = @open_timeout if @open_timeout
|
|
143
143
|
|
|
144
|
-
RestClient.before_execution_procs.each do |
|
|
145
|
-
|
|
144
|
+
RestClient.before_execution_procs.each do |before_proc|
|
|
145
|
+
before_proc.call(req, args)
|
|
146
146
|
end
|
|
147
147
|
|
|
148
148
|
log_request
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 4
|
|
8
|
-
-
|
|
9
|
-
version: 1.4.
|
|
8
|
+
- 2
|
|
9
|
+
version: 1.4.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Adam Wiggins
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-03-
|
|
18
|
+
date: 2010-03-13 00:00:00 +01:00
|
|
19
19
|
default_executable: restclient
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|