-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathresque-igo.gemspec
More file actions
47 lines (38 loc) · 1.88 KB
/
resque-igo.gemspec
File metadata and controls
47 lines (38 loc) · 1.88 KB
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
$LOAD_PATH.unshift 'lib'
require 'resque/version'
Gem::Specification.new do |s|
s.name = "resque-igo"
s.version = Resque::Version
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Resque-igo is a mongo-backed queueing system"
s.homepage = "http://github.com/mediocretes/resque-mongo"
s.email = "nacuff@igodigital.com"
s.authors = [ "Nathan D Acuff" ]
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 "vegas", "~> 0.1.2"
s.add_dependency "sinatra", ">= 0.9.2"
s.add_dependency "json", "1.5.1"
s.add_dependency "mongo", "~> 1.3.0"
s.description = <<description
Resque is a Redis-backed Ruby library for creating background jobs,
placing those jobs on multiple queues, and processing them later.
Resque-igo is the same thing, but for mongo. It would not exist without the work of defunkt and ctrochalakis on github.
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