samson_hipchat 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/hipchat_notification.rb +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c960ef6657c16fd3a86eae4fd7f0f1a1028db703
|
4
|
+
data.tar.gz: ce65455d9a9cc20849d80255840764ec8ab09ba8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5437b2773ad4c92c0ac24999e36c85ca39414d1dae723be526ee57562fefee34959c69848a755e2bc3391ea7030b73c53624814039f68034fe434ae9b90ca9cb
|
7
|
+
data.tar.gz: b7631d5b46b7a67c4381a2be69171120795e0c70addaf372a01371a48a3ac7c97c13ffc4fa2f203469a6df39317b641552fb5c1d763548d20565af9c48c355ff
|
@@ -66,8 +66,7 @@ class HipchatNotification
|
|
66
66
|
|
67
67
|
subject
|
68
68
|
else
|
69
|
-
|
70
|
-
subject = "#{@user.name} successfully deploy <strong>#{@project.name}</strong> @ <a href='#{diff_url}'>#{@deploy.commit}</a> on <strong>#{@stage.name}</strong><br>" if @deploy.job.succeeded?
|
69
|
+
subject = "#{@user.name} successfully deployed <strong>#{@project.name}</strong> @ <a href='#{diff_url}'>#{@deploy.commit}</a> to <strong>#{@stage.name}</strong><br>" if @deploy.job.succeeded?
|
71
70
|
end
|
72
71
|
end
|
73
72
|
|