talking-capistrano 0.1.8 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -70,7 +70,7 @@ Capistrano::Configuration.instance.load do
70
70
  namespace :deploy do
71
71
  namespace :say do
72
72
  task :about_to_deploy do
73
- `#{say_command} #{TalkingCapistrano::say_deploy_started fetch(:branch, nil)} -v '#{TalkingCapistrano::say_speaker_name}' &`
73
+ system("#{say_command} #{TalkingCapistrano::say_deploy_started fetch(:branch, nil)} -v '#{TalkingCapistrano::say_speaker_name}' &")
74
74
  end
75
75
  task :setup do
76
76
  TalkingCapistrano.local_rails_env = fetch(:stage, "-unknown env-").to_s
@@ -83,7 +83,7 @@ Capistrano::Configuration.instance.load do
83
83
  task :update_code, :except => { :no_release => true } do
84
84
  on_rollback do
85
85
  fail_str = TalkingCapistrano::say_deploy_failed
86
- `#{say_command} #{fail_str} -v #{TalkingCapistrano::say_speaker_name} &`;
86
+ system("#{say_command} #{fail_str} -v #{TalkingCapistrano::say_speaker_name} &");
87
87
  TalkingCapistrano::SkypeNotification.notify(fail_str)
88
88
  run "rm -rf #{release_path}; true"
89
89
  end
@@ -1,6 +1,6 @@
1
1
  module Talking
2
2
  module Capistrano
3
- VERSION = "0.1.8"
3
+ VERSION = "0.1.9"
4
4
  end
5
5
  end
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: talking-capistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
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: 2013-02-06 00:00:00.000000000 Z
12
+ date: 2013-03-05 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Capisrano task to notify start|end|erros of a capistrano deploy execution
15
15
  email: