capistrano-slackify 2.6.0 → 2.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/capistrano-slackify.gemspec +1 -1
- data/lib/capistrano/tasks/slackify.cap +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb3fa384bc27b780d15af96cd889c8b8ee950014
|
4
|
+
data.tar.gz: c61d527edf8eddc4bcc0128fade1a36fb49a264e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5ef42e7abc717b0db2da30851c5b20004645dc22a574ca6b17d1e50243667a9e4cb048eeeabb8785ce77df2bd38aa2367ff3beff8ee66d11dcddbc9f34381e77
|
7
|
+
data.tar.gz: 2f137a74a78104609ecfa801e4062d8797894ea44f237aa70fcb705d01459897f7bd76e12a45ea99e59ca83fab47abd90788b92a6b69e6573af94c6a28cb622a
|
data/capistrano-slackify.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = 'capistrano-slackify'
|
7
|
-
spec.version = '2.6.
|
7
|
+
spec.version = '2.6.1'
|
8
8
|
spec.authors = ['seenmyfate']
|
9
9
|
spec.email = ['seenmyfate@gmail.com']
|
10
10
|
spec.summary = %q{Publish deployment notifications to Slack via the incoming webhooks integration}
|
@@ -8,7 +8,7 @@ namespace :slack do
|
|
8
8
|
if fetch(:slack_notify_events).include? :started
|
9
9
|
info 'Notifying Slack of deploy starting'
|
10
10
|
|
11
|
-
execute :curl, '-X POST', '--data-urlencode',
|
11
|
+
execute :curl, '-X POST', '-s', '--data-urlencode',
|
12
12
|
Slackify::Payload.build(self, :starting),
|
13
13
|
fetch(:slack_url)
|
14
14
|
end
|
@@ -25,7 +25,7 @@ namespace :slack do
|
|
25
25
|
if fetch(:slack_notify_events).include? :finished
|
26
26
|
info 'Notifying Slack of deploy finished'
|
27
27
|
|
28
|
-
execute :curl, '-X POST', '--data-urlencode',
|
28
|
+
execute :curl, '-X POST', '-s', '--data-urlencode',
|
29
29
|
Slackify::Payload.build(self, :success),
|
30
30
|
fetch(:slack_url)
|
31
31
|
end
|
@@ -42,7 +42,7 @@ namespace :slack do
|
|
42
42
|
if fetch(:slack_notify_events).include? :failed
|
43
43
|
info 'Notifying Slack of deploy failed'
|
44
44
|
|
45
|
-
execute :curl, '-X POST', '--data-urlencode',
|
45
|
+
execute :curl, '-X POST', '-s', '--data-urlencode',
|
46
46
|
Slackify::Payload.build(self, :failed),
|
47
47
|
fetch(:slack_url)
|
48
48
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-slackify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- seenmyfate
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: capistrano
|
@@ -121,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
121
121
|
version: '0'
|
122
122
|
requirements: []
|
123
123
|
rubyforge_project:
|
124
|
-
rubygems_version: 2.
|
124
|
+
rubygems_version: 2.6.1
|
125
125
|
signing_key:
|
126
126
|
specification_version: 4
|
127
127
|
summary: Publish deployment notifications to Slack via the incoming webhooks integration
|