crushserver 1.0.0 → 1.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.
@@ -99,17 +99,14 @@ Capistrano::Configuration.instance(:must_exist).load do
99
99
 
100
100
  task :notify_deploy_started do
101
101
  on_rollback do
102
- hipchat_client[hipchat_room_name].
103
- send(deploy_user, deploy_canceled_message, hipchat_announce)
102
+ hipchat_client[hipchat_room_name].send(deploy_user, deploy_canceled_message, :notify => hipchat_announce, :color => "red")
104
103
  end
105
104
 
106
- hipchat_client[hipchat_room_name].
107
- send(deploy_user, deploy_started_message, hipchat_announce)
105
+ hipchat_client[hipchat_room_name].send(deploy_user, deploy_started_message, :notify => hipchat_announce, :color => "yellow")
108
106
  end
109
107
 
110
108
  task :notify_deploy_finished do
111
- hipchat_client[hipchat_room_name].
112
- send(deploy_user, deploy_finished_message, hipchat_announce)
109
+ hipchat_client[hipchat_room_name].send(deploy_user, deploy_finished_message, :notify => hipchat_announce, :color => "green")
113
110
  end
114
111
  end
115
112
 
@@ -1,3 +1,3 @@
1
1
  module Crushserver
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crushserver
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - PJ Kelly