capistrano-slackify 2.0.0 → 2.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.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/capistrano-slackify.gemspec +1 -1
- data/lib/capistrano-slackify.rb +0 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb7a88b489f738c1ba6819ba9f906818bad7c576
|
|
4
|
+
data.tar.gz: 2bc0070ea65b7a95b9e1494aa8d5813ff977523d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a6a1e2e739bf9091632ffbb43c521a6a9acc7fdd12f9834c0fb96b6916b36ab99f09ce53b62315cdbdafa03e0ce29980b851a35392237d8c54b2bc3951007763
|
|
7
|
+
data.tar.gz: b575a0979c90d7f0a216de5584eeb85e0de0969058962de83e9344313f718d76cd90b9c0e75d4b54bee80005c928fc7d172706ab11247ac21ac9a65929595277
|
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Publish deploy notifications to [Slack](https://slack.com) - for [Capistrano v3]
|
|
|
6
6
|
|
|
7
7
|
Add this line to your application's Gemfile:
|
|
8
8
|
|
|
9
|
-
gem 'capistrano-slackify'
|
|
9
|
+
gem 'capistrano-slackify', require: false
|
|
10
10
|
|
|
11
11
|
And then execute:
|
|
12
12
|
|
|
@@ -35,7 +35,7 @@ The task will run automatically on deploy. Alternatively, you can notify of a de
|
|
|
35
35
|
|
|
36
36
|
Or to notify of a finished deploy:
|
|
37
37
|
|
|
38
|
-
bundle exec cap production slack:
|
|
38
|
+
bundle exec cap production slack:notify_finished
|
|
39
39
|
|
|
40
40
|
By default, this will publish something along the lines of:
|
|
41
41
|
|
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.0.
|
|
7
|
+
spec.version = '2.0.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}
|
|
File without changes
|
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.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- seenmyfate
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-11-
|
|
11
|
+
date: 2014-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -95,6 +95,7 @@ files:
|
|
|
95
95
|
- README.md
|
|
96
96
|
- Rakefile
|
|
97
97
|
- capistrano-slackify.gemspec
|
|
98
|
+
- lib/capistrano-slackify.rb
|
|
98
99
|
- lib/capistrano/slackify.rb
|
|
99
100
|
- lib/capistrano/tasks/slackify.cap
|
|
100
101
|
- lib/slackify.rb
|
|
@@ -127,3 +128,4 @@ summary: Publish deployment notifications to Slack via the incoming webhooks int
|
|
|
127
128
|
test_files:
|
|
128
129
|
- spec/lib/slackify_spec.rb
|
|
129
130
|
- spec/spec_helper.rb
|
|
131
|
+
has_rdoc:
|