forked from resque/resque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resque.gemspec
45 lines (37 loc) · 1.75 KB
/
resque.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
$LOAD_PATH.unshift 'lib'
require 'resque/version'
Gem::Specification.new do |s|
s.name = "resque"
s.version = Resque::Version
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Resque is a Redis-backed queueing system."
s.homepage = "http://github.com/defunkt/resque"
s.email = "[email protected]"
s.authors = [ "Chris Wanstrath", "Terence Lee" ]
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 "redis-namespace", "~> 1.0.2"
s.add_dependency "vegas", "~> 0.1.2"
s.add_dependency "sinatra", ">= 0.9.2"
s.add_dependency "multi_json", "~> 1.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.
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