jruby-rack-worker 0.4-jruby → 0.5-jruby
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +11 -5
- data/lib/jruby-rack-worker_0.5.jar +0 -0
- data/lib/jruby/rack/worker/version.rb +1 -1
- metadata +6 -6
- data/lib/jruby-rack-worker_0.4.jar +0 -0
data/README.md
CHANGED
@@ -4,7 +4,7 @@ Thread based workers on top of [jruby-rack](http://github.com/jruby/jruby-rack).
|
|
4
4
|
|
5
5
|
With out of the box [JRuby](http://jruby.org) "adapters" for:
|
6
6
|
|
7
|
-
* [Resque](http://github.com/defunkt/resque)
|
7
|
+
* [Resque](http://github.com/defunkt/resque)
|
8
8
|
* [Delayed::Job](http://github.com/collectiveidea/delayed_job)
|
9
9
|
* [Navvy](http://github.com/jeffkreeftmeijer/navvy)
|
10
10
|
|
@@ -160,17 +160,23 @@ JRuby "adapted" worker code for inspiration.
|
|
160
160
|
|
161
161
|
## Build
|
162
162
|
|
163
|
-
[JRuby](http://jruby.org) 1.
|
163
|
+
[JRuby](http://jruby.org) 1.6+ is required to build the project.
|
164
|
+
|
164
165
|
The build is performed by [rake](http://rake.rubyforge.org) which should be part
|
165
166
|
of your JRuby installation, if you're experiencing conflicts with another Ruby and
|
166
|
-
it's rake executable use `jruby -S rake` instead
|
167
|
+
it's `rake` executable use `jruby -S rake` instead.
|
167
168
|
Besides you'll to need [ant](http://ant.apache.org/) installed for the Java part.
|
168
169
|
|
169
|
-
Build the
|
170
|
+
Build the *jruby-rack-worker_[VERSION].jar* using :
|
170
171
|
|
171
172
|
rake jar
|
172
173
|
|
173
|
-
Build the gem (
|
174
|
+
Build the gem (includes the .jar packaged) :
|
174
175
|
|
175
176
|
rake gem
|
176
177
|
|
178
|
+
|
179
|
+
## Copyright
|
180
|
+
|
181
|
+
Copyright (c) 2012 [Karol Bucek](https://github.com/kares).
|
182
|
+
See LICENSE (http://www.apache.org/licenses/LICENSE-2.0) for details.
|
Binary file
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: jruby-rack-worker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: "0.
|
5
|
+
version: "0.5"
|
6
6
|
platform: jruby
|
7
7
|
authors:
|
8
8
|
- Karol Bucek
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-10-05 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: jruby-rack
|
@@ -20,10 +20,10 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 1.1.
|
23
|
+
version: 1.1.10
|
24
24
|
type: :runtime
|
25
25
|
version_requirements: *id001
|
26
|
-
description: Implements a thread based worker pattern on top of JRuby-Rack. Useful if you'd like to run
|
26
|
+
description: Implements a thread based worker pattern on top of JRuby-Rack. Useful if you'd like to run background workers within your (deployed) web-application (concurrently in 'native' threads) instead of using separate daemon processes. Provides (thread-safe) implementations for popular worker libraries such as Resque and Delayed::Job, but one can easily write their own 'daemon' scripts as well.
|
27
27
|
email:
|
28
28
|
- self@kares.org
|
29
29
|
executables: []
|
@@ -35,7 +35,7 @@ extra_rdoc_files: []
|
|
35
35
|
files:
|
36
36
|
- README.md
|
37
37
|
- LICENSE
|
38
|
-
- lib/jruby-rack-worker_0.
|
38
|
+
- lib/jruby-rack-worker_0.5.jar
|
39
39
|
- lib/jruby_rack_worker.rb
|
40
40
|
- lib/jruby/rack/worker/version.rb
|
41
41
|
homepage: http://github.com/kares/jruby-rack-worker
|
@@ -64,6 +64,6 @@ rubyforge_project: "[none]"
|
|
64
64
|
rubygems_version: 1.8.15
|
65
65
|
signing_key:
|
66
66
|
specification_version: 3
|
67
|
-
summary:
|
67
|
+
summary: Threaded Workers with JRuby-Rack
|
68
68
|
test_files: []
|
69
69
|
|
Binary file
|