capistrano-slackify 2.6.0 → 2.6.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a94d352feaf5e2722d469cef6ee88feaeee669db
4
- data.tar.gz: 31b967ad931fd534f248ed669a97aa572f97d7fb
3
+ metadata.gz: fb3fa384bc27b780d15af96cd889c8b8ee950014
4
+ data.tar.gz: c61d527edf8eddc4bcc0128fade1a36fb49a264e
5
5
  SHA512:
6
- metadata.gz: 5c43261a2604a207f4a871adb4e559b53b1eb838a17bbc92d486e1d9c25070945bb5a4b3a494bb509f29a155782b378cf11cde9de8e8b89256dc1daa01ec270f
7
- data.tar.gz: 5752ff84c5b8087f2f96cb19db3e609b9a2aa24e4cfb626d9af419d38d05c0d9ff6c48d18aa370e984ebe83c630175388a8ef36b10e8e50a3547ada5f5490096
6
+ metadata.gz: 5ef42e7abc717b0db2da30851c5b20004645dc22a574ca6b17d1e50243667a9e4cb048eeeabb8785ce77df2bd38aa2367ff3beff8ee66d11dcddbc9f34381e77
7
+ data.tar.gz: 2f137a74a78104609ecfa801e4062d8797894ea44f237aa70fcb705d01459897f7bd76e12a45ea99e59ca83fab47abd90788b92a6b69e6573af94c6a28cb622a
@@ -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.0'
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.0
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: 2015-08-07 00:00:00.000000000 Z
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.4.5
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