typhoeus 0.1.6 → 0.1.28

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.
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typhoeus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 28
9
+ version: 0.1.28
5
10
  platform: ruby
6
11
  authors:
7
12
  - Paul Dix
@@ -9,84 +14,174 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2009-07-03 00:00:00 -04:00
17
+ date: 2010-06-29 00:00:00 -07:00
13
18
  default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: rack
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ version: "0"
17
30
  type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
31
+ version_requirements: *id001
32
+ - !ruby/object:Gem::Dependency
33
+ name: rspec
34
+ prerelease: false
35
+ requirement: &id002 !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ segments:
40
+ - 0
41
+ version: "0"
42
+ type: :development
43
+ version_requirements: *id002
44
+ - !ruby/object:Gem::Dependency
45
+ name: jeweler
46
+ prerelease: false
47
+ requirement: &id003 !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ segments:
52
+ - 0
53
+ version: "0"
54
+ type: :development
55
+ version_requirements: *id003
56
+ - !ruby/object:Gem::Dependency
57
+ name: diff-lcs
58
+ prerelease: false
59
+ requirement: &id004 !ruby/object:Gem::Requirement
20
60
  requirements:
21
- - - ">"
61
+ - - ">="
22
62
  - !ruby/object:Gem::Version
23
- version: 0.9.0
24
- version:
25
- description:
63
+ segments:
64
+ - 0
65
+ version: "0"
66
+ type: :development
67
+ version_requirements: *id004
68
+ - !ruby/object:Gem::Dependency
69
+ name: sinatra
70
+ prerelease: false
71
+ requirement: &id005 !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ segments:
76
+ - 0
77
+ version: "0"
78
+ type: :development
79
+ version_requirements: *id005
80
+ - !ruby/object:Gem::Dependency
81
+ name: json
82
+ prerelease: false
83
+ requirement: &id006 !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ segments:
88
+ - 0
89
+ version: "0"
90
+ type: :development
91
+ version_requirements: *id006
92
+ description: Like a modern code version of the mythical beast with 100 serpent heads, Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling logic.
26
93
  email: paul@pauldix.net
27
94
  executables: []
28
95
 
29
96
  extensions:
30
97
  - ext/typhoeus/extconf.rb
31
- extra_rdoc_files: []
32
-
98
+ extra_rdoc_files:
99
+ - README.textile
33
100
  files:
101
+ - .gitignore
102
+ - CHANGELOG.markdown
103
+ - README.textile
104
+ - Rakefile
105
+ - VERSION
106
+ - benchmarks/profile.rb
107
+ - benchmarks/vs_nethttp.rb
108
+ - examples/twitter.rb
109
+ - ext/typhoeus/.gitignore
110
+ - ext/typhoeus/Makefile
34
111
  - ext/typhoeus/extconf.rb
35
- - ext/typhoeus/typhoeus_easy.h
112
+ - ext/typhoeus/native.c
113
+ - ext/typhoeus/native.h
36
114
  - ext/typhoeus/typhoeus_easy.c
37
- - ext/typhoeus/typhoeus_multi.h
115
+ - ext/typhoeus/typhoeus_easy.h
38
116
  - ext/typhoeus/typhoeus_multi.c
39
- - ext/typhoeus/Makefile
40
- - ext/typhoeus/native.h
41
- - ext/typhoeus/native.c
117
+ - ext/typhoeus/typhoeus_multi.h
42
118
  - lib/typhoeus.rb
119
+ - lib/typhoeus/.gitignore
43
120
  - lib/typhoeus/easy.rb
121
+ - lib/typhoeus/filter.rb
122
+ - lib/typhoeus/hydra.rb
44
123
  - lib/typhoeus/multi.rb
45
124
  - lib/typhoeus/remote.rb
46
- - lib/typhoeus/remote_proxy_object.rb
47
- - lib/typhoeus/filter.rb
48
125
  - lib/typhoeus/remote_method.rb
49
- - lib/typhoeus/response.rb
50
- - lib/typhoeus/hydra.rb
126
+ - lib/typhoeus/remote_proxy_object.rb
51
127
  - lib/typhoeus/request.rb
128
+ - lib/typhoeus/response.rb
129
+ - lib/typhoeus/service.rb
130
+ - profilers/valgrind.rb
131
+ - spec/fixtures/result_set.xml
132
+ - spec/servers/app.rb
52
133
  - spec/spec.opts
53
134
  - spec/spec_helper.rb
54
135
  - spec/typhoeus/easy_spec.rb
55
- - spec/typhoeus/multi_spec.rb
56
- - spec/typhoeus/remote_spec.rb
57
- - spec/typhoeus/remote_proxy_object_spec.rb
58
136
  - spec/typhoeus/filter_spec.rb
137
+ - spec/typhoeus/hydra_spec.rb
138
+ - spec/typhoeus/multi_spec.rb
59
139
  - spec/typhoeus/remote_method_spec.rb
140
+ - spec/typhoeus/remote_proxy_object_spec.rb
141
+ - spec/typhoeus/remote_spec.rb
142
+ - spec/typhoeus/request_spec.rb
60
143
  - spec/typhoeus/response_spec.rb
61
- - spec/servers/app.rb
144
+ - typhoeus.gemspec
62
145
  has_rdoc: true
63
146
  homepage: http://github.com/pauldix/typhoeus
64
147
  licenses: []
65
148
 
66
149
  post_install_message:
67
- rdoc_options: []
68
-
150
+ rdoc_options:
151
+ - --charset=UTF-8
69
152
  require_paths:
70
153
  - lib
71
- - ext
72
154
  required_ruby_version: !ruby/object:Gem::Requirement
73
155
  requirements:
74
156
  - - ">="
75
157
  - !ruby/object:Gem::Version
158
+ segments:
159
+ - 0
76
160
  version: "0"
77
- version:
78
161
  required_rubygems_version: !ruby/object:Gem::Requirement
79
162
  requirements:
80
163
  - - ">="
81
164
  - !ruby/object:Gem::Version
165
+ segments:
166
+ - 0
82
167
  version: "0"
83
- version:
84
168
  requirements: []
85
169
 
86
170
  rubyforge_project:
87
- rubygems_version: 1.3.5
171
+ rubygems_version: 1.3.6
88
172
  signing_key:
89
- specification_version: 2
173
+ specification_version: 3
90
174
  summary: A library for interacting with web services (and building SOAs) at blinding speed.
91
- test_files: []
92
-
175
+ test_files:
176
+ - spec/servers/app.rb
177
+ - spec/spec_helper.rb
178
+ - spec/typhoeus/easy_spec.rb
179
+ - spec/typhoeus/filter_spec.rb
180
+ - spec/typhoeus/hydra_spec.rb
181
+ - spec/typhoeus/multi_spec.rb
182
+ - spec/typhoeus/remote_method_spec.rb
183
+ - spec/typhoeus/remote_proxy_object_spec.rb
184
+ - spec/typhoeus/remote_spec.rb
185
+ - spec/typhoeus/request_spec.rb
186
+ - spec/typhoeus/response_spec.rb
187
+ - examples/twitter.rb