-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathresque-pause.gemspec
33 lines (27 loc) · 1.31 KB
/
resque-pause.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "version"
Gem::Specification.new do |s|
s.name = "resque-pause"
s.version = Resque::Plugins::Pause::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Wandenberg Peixoto"]
s.email = ["wandenberg@gmail.com"]
s.homepage = ""
s.summary = %q{A Resque plugin to add functionality to pause resque jobs through the web interface.}
s.description = %q{A Resque plugin to add functionality to pause resque jobs through the web interface.
Using a `pause` allows you to stop the job for a slice of time.
The job finish the process it are doing and don't get a new task to do,
until the queue is released.
You can use this functionality to do some maintenance whithout kill workers, for example.}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency('resque', '>= 1.9.10')
s.add_dependency('multi_json', '~> 1.0')
s.add_development_dependency('rspec', '>= 2.3.0')
s.add_development_dependency('rack', '>= 2.1.4')
s.add_development_dependency('rack-test')
s.add_development_dependency('simplecov', '>= 0.4.2')
end