capistrano-deploy-management 0.1.18 → 0.1.19

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
  s.name = 'capistrano-deploy-management'
4
4
  s.description = 'Collection of Capistrano recipes for deploying Rails apps into high-performance environments'
5
- s.version = '0.1.18'
5
+ s.version = '0.1.19'
6
6
  s.platform = Gem::Platform::RUBY
7
7
  s.authors = ['Dominik Rodler']
8
8
  s.email = ['dominik.rodler@gmail.com']
data/changelog.md CHANGED
@@ -1,4 +1,7 @@
1
- - 0.1.17
1
+ - 0.1.19
2
+ unicorn restart
3
+
4
+ - 0.1.17 / 0.1.18
2
5
  removed rails_assets recipes, as they are included in capistrano by default now; just load 'deploy/assets' in your Capfile
3
6
 
4
7
  - 0.1.13 / 0.1.14 / 0.1.15 / 0.1.16
@@ -22,7 +22,8 @@ module CapistranoDeployManagement
22
22
 
23
23
  desc 'Stop unicorn.'
24
24
  task :stop, :roles => :app do
25
- run "test -s #{unicorn_pidfile} && kill $(#{unicorn_pid}) || echo 'unicorn not running. nothing to kill.'"
25
+ # run "cd #{current_path} && kill $(#{unicorn_pid})"
26
+ run "cd #{current_path} && test -s #{unicorn_pidfile} && kill $(#{unicorn_pid}) || echo 'Unicorn not running. Nothing to kill.'"
26
27
  end
27
28
  end
28
29
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-deploy-management
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.19
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-04 00:00:00.000000000 Z
12
+ date: 2012-08-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano