capistrano-resque-pool 0.0.0.1 → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f771aa1d33f72689f13bdf3a7ae1e03386795c64
|
4
|
+
data.tar.gz: 10c578c9873d04162252e0248b148ad15e8992ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 007e3ebd7c81b6c0c144345020f97c9f9ca5d3f7173a98d8c23e718380fb319adf76a799bfb80efd2bbc8bb47e5163ef34fddcd8314c1963c6fe207400f03145
|
7
|
+
data.tar.gz: 812fe4e027bcaeb48defc80e165eb2791e211faa139b86afbb06e0c8d91029cd1882eaa0ddb15f5786bda59d863184cac00e8447135476d15f93ebc9241de5cd
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Capistrano::Resque::Pool
|
2
2
|
|
3
|
-
|
3
|
+
TODO: Write a gem description
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -10,7 +10,7 @@ Add this line to your application's Gemfile:
|
|
10
10
|
|
11
11
|
And then execute:
|
12
12
|
|
13
|
-
$ bundle
|
13
|
+
$ bundle
|
14
14
|
|
15
15
|
Or install it yourself as:
|
16
16
|
|
@@ -18,22 +18,7 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
bundle exec cap production resque:pool:start
|
24
|
-
|
25
|
-
Gracefully shut down workers and shutdown the manager after all workers are done.
|
26
|
-
|
27
|
-
bundle exec cap production resque:pool:stop
|
28
|
-
|
29
|
-
Gracefully shut down workers and immediately shutdown manager.
|
30
|
-
|
31
|
-
bundle exec cap production resque:pool:stop_immediately
|
32
|
-
|
33
|
-
Reload the config file, reload logfiles, restart all workers.
|
34
|
-
|
35
|
-
bundle exec cap production resque:pool:restart
|
36
|
-
|
21
|
+
TODO: Write usage instructions here
|
37
22
|
|
38
23
|
## Contributing
|
39
24
|
|
@@ -3,11 +3,11 @@ lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
4
|
|
5
5
|
# Maintain your gem's version:
|
6
|
-
require 'capistrano
|
6
|
+
require 'capistrano-resque-pool/version'
|
7
7
|
|
8
8
|
Gem::Specification.new do |spec|
|
9
9
|
spec.name = "capistrano-resque-pool"
|
10
|
-
spec.version =
|
10
|
+
spec.version = CapistranoResquePool::VERSION
|
11
11
|
spec.authors = ["Maxim Abramchuk", "Dmitry Zhlobo"]
|
12
12
|
spec.email = ["maximabramchuck@gmail.com"]
|
13
13
|
spec.summary = %q{Capistrano integration for Resque pool}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-resque-pool
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maxim Abramchuk
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2015-
|
12
|
+
date: 2015-01-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -80,8 +80,8 @@ files:
|
|
80
80
|
- README.md
|
81
81
|
- Rakefile
|
82
82
|
- capistrano-resque-pool.gemspec
|
83
|
-
- lib/capistrano/resque
|
84
|
-
- lib/capistrano
|
83
|
+
- lib/capistrano-resque-pool/tasks/capistrano-resque-pool.rake
|
84
|
+
- lib/capistrano-resque-pool/version.rb
|
85
85
|
homepage: https://github.com/datarockets/capistrano-resque-pool
|
86
86
|
licenses:
|
87
87
|
- MIT
|