capnotify 0.1.5pre → 0.1.6pre
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/capnotify.rb +2 -4
- data/lib/capnotify/version.rb +1 -1
- metadata +1 -1
data/lib/capnotify.rb
CHANGED
@@ -59,14 +59,12 @@ module Capnotify
|
|
59
59
|
|
60
60
|
# short message for the start of a deployment
|
61
61
|
_cset(:capnotify_deploy_start_msg) do
|
62
|
-
"#{ capnotify.appname } deployment starting
|
63
|
-
Ref: #{ fetch(:real_revision) }"
|
62
|
+
"#{ capnotify.appname } deployment starting.\nRef: #{ fetch(:real_revision) }"
|
64
63
|
end
|
65
64
|
|
66
65
|
# short message for the completion of a deployment
|
67
66
|
_cset(:capnotify_deploy_complete_msg) do
|
68
|
-
"#{ capnotify.appname } deployment completed
|
69
|
-
Ref: #{ fetch(:real_revision) }"
|
67
|
+
"#{ capnotify.appname } deployment completed.\nRef: #{ fetch(:real_revision) }"
|
70
68
|
end
|
71
69
|
|
72
70
|
# short message for putting up a maintenance page
|
data/lib/capnotify/version.rb
CHANGED