capistrano-deploy-management 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  Gem::Specification.new do |s|
3
3
  s.name = 'capistrano-deploy-management'
4
- s.version = '0.1.7'
4
+ s.version = '0.1.8'
5
5
  s.platform = Gem::Platform::RUBY
6
6
  s.authors = ['Dominik Rodler']
7
7
  s.email = ['dominik.rodler@gmail.com']
data/changelog.md CHANGED
@@ -1,4 +1,4 @@
1
- - 0.1.3 / 0.1.4 / 0.1.5 / 0.1.6
1
+ - 0.1.3 / 0.1.4 / 0.1.5 / 0.1.6 / 0.1.7 / 0.1.8
2
2
  unicorn recipe: only stop unicorn, if pid file exists
3
3
 
4
4
  - 0.1.2
@@ -9,19 +9,19 @@ module CapistranoDeployManagement
9
9
 
10
10
  namespace :unicorn do
11
11
  desc 'Restart unicorn.'
12
- task :restart, :roles => :app, :except => {:no_release => true} do
13
- # unicorn.stop
12
+ task :restart, :roles => :app do
13
+ unicorn.stop
14
14
  unicorn.start
15
15
  # run "cd #{current_path} && kill -USR2 #{unicorn_pid}"
16
16
  end
17
17
 
18
18
  desc 'Start unicorn.'
19
- task :start, :roles => :app, :except => {:no_release => true} do
19
+ task :start, :roles => :app do
20
20
  run "cd #{current_path} && unicorn -c #{unicorn_config} -E production -D"
21
21
  end
22
22
 
23
23
  desc 'Stop unicorn.'
24
- task :stop, :roles => :app, :except => {:no_release => true} do
24
+ task :stop, :roles => :app do
25
25
  # run "if test -s #{unicorn_pidfile}; then cd #{current_path} && kill $(#{unicorn_pid}) fi"
26
26
  # above line fails with error -c: line 1: syntax error: unexpected end of file
27
27
  run "cd #{current_path} && kill -QUIT $(#{unicorn_pid})"
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.7
4
+ version: 0.1.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: