capistrano-resque-pool 0.0.0.1 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51638063c549528be77ba8b92f534f59ff3c7e1a
4
- data.tar.gz: 5a8ee1f37aea1d523df586534858b1d7b73cc87b
3
+ metadata.gz: f771aa1d33f72689f13bdf3a7ae1e03386795c64
4
+ data.tar.gz: 10c578c9873d04162252e0248b148ad15e8992ca
5
5
  SHA512:
6
- metadata.gz: fee44ca8652a801834ad360d2f19868af35787aef010ae668e5c84e4d97545ea8ba0b87d74995d273e0990b105d2cf8a1db7dbda4607cc8533ace7f15e418da2
7
- data.tar.gz: f73dd491afb8b6fde5544ae9a4cd74f9dd817b98a8dcbd91ff4960b991826ad28fead99ffda477c578daf05c3241ee8a11c8fdf3a15a5b9ddb95bee787b474da
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
- Capistrano integration for `resque-pool`.
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 install
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
- Start all the workers and queus.
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/resque/pool/version'
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 = Capistrano::Resque::Pool::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}
@@ -4,7 +4,7 @@ namespace :resque do
4
4
  task :start do
5
5
  on roles(workers) do
6
6
  within app_path do
7
- execute :bundle, :exec, 'resque-pool', '--daemon --environment production'
7
+ execute :bundle, :exec, 'resque-pool', "--daemon --environment production"
8
8
  end
9
9
  end
10
10
  end
@@ -0,0 +1,3 @@
1
+ module CapistranoResquePool
2
+ VERSION = "0.0.1"
3
+ end
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.0.1
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-02-01 00:00:00.000000000 Z
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/pool/version.rb
84
- - lib/capistrano/tasks/capistrano-resque-pool.rake
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
@@ -1,7 +0,0 @@
1
- module Capistrano
2
- module Resque
3
- module Pool
4
- VERSION = '0.0.0.1'
5
- end
6
- end
7
- end