forked from ctrochalakis/resque-mongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresque-mongo.gemspec
49 lines (38 loc) · 1.85 KB
/
resque-mongo.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
$LOAD_PATH.unshift 'lib'
require 'resque/version'
Gem::Specification.new do |s|
s.name = "resque-mongo"
s.version = Resque::Version
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Resque-mongo is resque fork with a mongo backend."
s.homepage = "http://github.com/ctrochalakis/resque-mongo"
s.email = "[email protected]"
s.authors = [ "Christos Trochalakis" ]
s.files = %w( README.markdown Rakefile LICENSE HISTORY.md )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("man/**/*")
s.files += Dir.glob("test/**/*")
s.files += Dir.glob("tasks/**/*")
s.executables = [ "resque", "resque-web" ]
s.extra_rdoc_files = [ "LICENSE", "README.markdown" ]
s.rdoc_options = ["--charset=UTF-8"]
s.add_dependency "mongo", ">= 1.0.0"
s.add_dependency "vegas", "~> 0.1.2"
s.add_dependency "sinatra", ">= 0.9.2"
s.add_dependency "json", ">= 1.1.0"
s.description = <<description
Resque-mongo is a fork of resque that uses mongo as a queue backend.
Resque is a Redis-backed Ruby library for creating background jobs,
placing those jobs on multiple queues, and processing them later.
Background jobs can be any Ruby class or module that responds to
perform. Your existing classes can easily be converted to background
jobs or you can create new classes specifically to do work. Or, you
can do both.
Resque is heavily inspired by DelayedJob (which rocks) and is
comprised of three parts:
* A Ruby library for creating, querying, and processing jobs
* A Rake task for starting a worker which processes jobs
* A Sinatra app for monitoring queues, jobs, and workers.
description
end