typhoeus 0.7.2 → 0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/CHANGELOG.md +7 -1
- data/lib/typhoeus/easy_factory.rb +2 -2
- data/lib/typhoeus/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
NTc5MzlkNmIyM2VmYTdlMmMzNzM0OTFkN2QwNGIyY2I2YTNhZDg3NQ==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 258c4fa9fa36f07af4d6b3b5aff63ff005927660
|
4
|
+
data.tar.gz: b6258b32116ff79087392c2e3003ad809a9d5c50
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
ZDZjZWQ5ZGUzODg5YTljZWJmMjNiOWYwZTUyNmU3N2QzOGQ3YjQ5M2VlMTky
|
11
|
-
NmExOTZiMDAyYmYyYjJlNjc1MDk1Njg1MGY1ODU5MmI5MmI2ZjY=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
ODA0MTQxYzE5YTczYmRlNDE2ZTZiZDIxODJmZDYwMjg4OWE1ODAyNmQzNTFj
|
14
|
-
OWU1OWU3NjZmZTllMGUzMTNmZmY1Yjg1MDMyYWYwZjk0YzYzNWJmYmJjMjE3
|
15
|
-
Yjc3NjVkYmUwZGNkZGM2OWJjMmQ1MmM4ZTExNTA5MzY3NjYxYWQ=
|
6
|
+
metadata.gz: 482769a76a20585b3c02aa42b356c4316a10e6765c542a777f51ba5d8e0b7723d7657fb2b9a8ba961feea9cf53f36644afcd35d0ff459af46a908e41e71656f7
|
7
|
+
data.tar.gz: 53adcad9bb067d2a10be8ddfb19342924887b02bc140b508ba061d1608b085946d9521f681d5766554fa3dbb3602bd0c312536709854ee64593ccbfc426f3d88
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,13 @@
|
|
2
2
|
|
3
3
|
## Master
|
4
4
|
|
5
|
-
[Full Changelog](http://github.com/typhoeus/typhoeus/compare/v0.7.
|
5
|
+
[Full Changelog](http://github.com/typhoeus/typhoeus/compare/v0.7.3...master)
|
6
|
+
|
7
|
+
## 0.7.3
|
8
|
+
|
9
|
+
[Full Changelog](http://github.com/typhoeus/typhoeus/compare/v0.7.2...v0.7.3)
|
10
|
+
|
11
|
+
* Add on_body callbacks individually to allow Ethon to recognize the return code
|
6
12
|
|
7
13
|
## 0.7.2
|
8
14
|
|
@@ -115,8 +115,8 @@ module Typhoeus
|
|
115
115
|
response = Response.new(Ethon::Easy::Mirror.from_easy(easy).options)
|
116
116
|
request.execute_headers_callbacks(response)
|
117
117
|
end
|
118
|
-
|
119
|
-
|
118
|
+
request.on_body.each do |callback|
|
119
|
+
easy.on_body do |chunk, easy|
|
120
120
|
callback.call(chunk, response)
|
121
121
|
end
|
122
122
|
end
|
data/lib/typhoeus/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: typhoeus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Balatero
|
@@ -10,20 +10,20 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2015-
|
13
|
+
date: 2015-08-08 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: ethon
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
18
|
requirements:
|
19
|
-
- -
|
19
|
+
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
21
|
version: 0.7.4
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
|
-
- -
|
26
|
+
- - ">="
|
27
27
|
- !ruby/object:Gem::Version
|
28
28
|
version: 0.7.4
|
29
29
|
description: Like a modern code version of the mythical beast with 100 serpent heads,
|
@@ -34,9 +34,9 @@ executables: []
|
|
34
34
|
extensions: []
|
35
35
|
extra_rdoc_files: []
|
36
36
|
files:
|
37
|
-
- .gitignore
|
38
|
-
- .rspec
|
39
|
-
- .travis.yml
|
37
|
+
- ".gitignore"
|
38
|
+
- ".rspec"
|
39
|
+
- ".travis.yml"
|
40
40
|
- CHANGELOG.md
|
41
41
|
- CONTRIBUTING.md
|
42
42
|
- Gemfile
|
@@ -135,12 +135,12 @@ require_paths:
|
|
135
135
|
- lib
|
136
136
|
required_ruby_version: !ruby/object:Gem::Requirement
|
137
137
|
requirements:
|
138
|
-
- -
|
138
|
+
- - ">="
|
139
139
|
- !ruby/object:Gem::Version
|
140
140
|
version: '0'
|
141
141
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
|
-
- -
|
143
|
+
- - ">="
|
144
144
|
- !ruby/object:Gem::Version
|
145
145
|
version: 1.3.6
|
146
146
|
requirements: []
|