woodhouse 0.1.1 → 0.1.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/lib/woodhouse.rb +0 -1
- data/lib/woodhouse/version.rb +1 -1
- data/woodhouse.gemspec +3 -4
- metadata +12 -29
data/lib/woodhouse.rb
CHANGED
data/lib/woodhouse/version.rb
CHANGED
data/woodhouse.gemspec
CHANGED
@@ -9,16 +9,15 @@ Gem::Specification.new do |s|
|
|
9
9
|
s.authors = ["Matthew Boeh"]
|
10
10
|
s.email = ["matt@crowdcompass.com", "matthew.boeh@gmail.com"]
|
11
11
|
s.homepage = "http://github.com/mboeh/woodhouse"
|
12
|
-
s.summary = %q{An AMQP-based background worker system for Ruby
|
13
|
-
s.description = %q{An AMQP-based background worker system for Ruby
|
12
|
+
s.summary = %q{An AMQP-based background worker system for Ruby}
|
13
|
+
s.description = %q{An AMQP-based background worker system for Ruby designed to make managing heterogenous tasks relatively easy.
|
14
14
|
|
15
15
|
The use case for Woodhouse is for reliable and sane performance in situations where jobs on a single queue may vary significantly in length. The goal is to permit large numbers of quick jobs to be serviced even when many slow jobs are in the queue. A secondary goal is to provide a sane way for jobs on a given queue to be given special priority or dispatched to a server more suited to them.
|
16
16
|
|
17
|
-
Clients (i.e., your application) may be using either Ruby 1.
|
17
|
+
Clients (i.e., your application) may be using either Ruby 1.9 in any VM.}
|
18
18
|
|
19
19
|
s.rubyforge_project = "woodhouse"
|
20
20
|
|
21
|
-
s.add_dependency 'fiber18', '>= 1.0.1'
|
22
21
|
s.add_dependency 'celluloid'
|
23
22
|
s.add_dependency 'bunny', "~> 0.9.0.pre4"
|
24
23
|
s.add_dependency 'connection_pool'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: woodhouse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,22 +11,6 @@ bindir: bin
|
|
11
11
|
cert_chain: []
|
12
12
|
date: 2013-03-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
-
- !ruby/object:Gem::Dependency
|
15
|
-
name: fiber18
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ! '>='
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 1.0.1
|
22
|
-
type: :runtime
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
|
-
requirements:
|
27
|
-
- - ! '>='
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: 1.0.1
|
30
14
|
- !ruby/object:Gem::Dependency
|
31
15
|
name: celluloid
|
32
16
|
requirement: !ruby/object:Gem::Requirement
|
@@ -171,15 +155,14 @@ dependencies:
|
|
171
155
|
- - ! '>='
|
172
156
|
- !ruby/object:Gem::Version
|
173
157
|
version: '0'
|
174
|
-
description: ! "An AMQP-based background worker system for Ruby
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
JRuby in 1.8 or 1.9 mode efficiently. MRI 1.9 and Rubinius support is planned."
|
158
|
+
description: ! "An AMQP-based background worker system for Ruby designed to make managing
|
159
|
+
heterogenous tasks relatively easy.\n \n The use case for Woodhouse is for reliable
|
160
|
+
and sane performance in situations where jobs on a single queue may vary significantly
|
161
|
+
in length. The goal is to permit large numbers of quick jobs to be serviced even
|
162
|
+
when many slow jobs are in the queue. A secondary goal is to provide a sane way
|
163
|
+
for jobs on a given queue to be given special priority or dispatched to a server
|
164
|
+
more suited to them.\n \n Clients (i.e., your application) may be using either
|
165
|
+
Ruby 1.9 in any VM."
|
183
166
|
email:
|
184
167
|
- matt@crowdcompass.com
|
185
168
|
- matthew.boeh@gmail.com
|
@@ -266,7 +249,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
266
249
|
version: '0'
|
267
250
|
segments:
|
268
251
|
- 0
|
269
|
-
hash:
|
252
|
+
hash: 545045486718124014
|
270
253
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
271
254
|
none: false
|
272
255
|
requirements:
|
@@ -275,11 +258,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
275
258
|
version: '0'
|
276
259
|
segments:
|
277
260
|
- 0
|
278
|
-
hash:
|
261
|
+
hash: 545045486718124014
|
279
262
|
requirements: []
|
280
263
|
rubyforge_project: woodhouse
|
281
264
|
rubygems_version: 1.8.25
|
282
265
|
signing_key:
|
283
266
|
specification_version: 3
|
284
|
-
summary: An AMQP-based background worker system for Ruby
|
267
|
+
summary: An AMQP-based background worker system for Ruby
|
285
268
|
test_files: []
|