capistrano-git-plugins 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/capistrano-git-plugins.gemspec +11 -11
- data/lib/capistrano/git/plugins/kill_resque_workers.rb +1 -1
- metadata +6 -6
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.3
|
@@ -4,14 +4,14 @@
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name =
|
8
|
-
s.version = "0.0.
|
7
|
+
s.name = "capistrano-git-plugins"
|
8
|
+
s.version = "0.0.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = [
|
12
|
-
s.date =
|
13
|
-
s.description =
|
14
|
-
s.email =
|
11
|
+
s.authors = ["Ryan Moran"]
|
12
|
+
s.date = "2011-12-21"
|
13
|
+
s.description = "Plugins to support capistrano-git deployments"
|
14
|
+
s.email = "ryan.moran@gmail.com"
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE.txt",
|
17
17
|
"README.rdoc"
|
@@ -35,11 +35,11 @@ Gem::Specification.new do |s|
|
|
35
35
|
"test/helper.rb",
|
36
36
|
"test/test_capistrano-git-plugins.rb"
|
37
37
|
]
|
38
|
-
s.homepage =
|
39
|
-
s.licenses = [
|
40
|
-
s.require_paths = [
|
41
|
-
s.rubygems_version =
|
42
|
-
s.summary =
|
38
|
+
s.homepage = "https://github.com/RevolutionPrep/capistrano-git-plugins"
|
39
|
+
s.licenses = ["MIT"]
|
40
|
+
s.require_paths = ["lib"]
|
41
|
+
s.rubygems_version = "1.8.12"
|
42
|
+
s.summary = "Plugins to support capistrano-git deployments"
|
43
43
|
|
44
44
|
if s.respond_to? :specification_version then
|
45
45
|
s.specification_version = 3
|
@@ -5,7 +5,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
5
5
|
desc 'restart resque workers'
|
6
6
|
task :restart, :roles=> :god do
|
7
7
|
puts "\n\n### RESTART RESQUE WORKERS!: Killing the resque workers, God will resurrect them.\n\n"
|
8
|
-
run "sudo #{deploy_to}/config/god/kill_resque_workers.sh"
|
8
|
+
run "sudo #{deploy_to}/config/god/kill_resque_workers.sh; exit 0"
|
9
9
|
end
|
10
10
|
end
|
11
11
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-git-plugins
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 3
|
10
|
+
version: 0.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ryan Moran
|
@@ -15,9 +15,10 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-12-21 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
|
+
type: :development
|
21
22
|
requirement: &id001 !ruby/object:Gem::Requirement
|
22
23
|
none: false
|
23
24
|
requirements:
|
@@ -32,7 +33,6 @@ dependencies:
|
|
32
33
|
version_requirements: *id001
|
33
34
|
name: jeweler
|
34
35
|
prerelease: false
|
35
|
-
type: :development
|
36
36
|
description: Plugins to support capistrano-git deployments
|
37
37
|
email: ryan.moran@gmail.com
|
38
38
|
executables: []
|
@@ -89,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
89
|
requirements: []
|
90
90
|
|
91
91
|
rubyforge_project:
|
92
|
-
rubygems_version: 1.8.
|
92
|
+
rubygems_version: 1.8.12
|
93
93
|
signing_key:
|
94
94
|
specification_version: 3
|
95
95
|
summary: Plugins to support capistrano-git deployments
|