slackistrano 0.0.2 → 0.0.3

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: 716e9f3712c4c0bc15c6eba80a712c7ae6d59a1d
4
- data.tar.gz: b8b88f167551b83dc3853597a323887c147412d7
3
+ metadata.gz: 8194a34a9dc8688b59c486cb4a5fd9cb98e22f16
4
+ data.tar.gz: 2902162b56cdabedab3f70b0c39c2adb6bfe4939
5
5
  SHA512:
6
- metadata.gz: 2e2445367296595c3c7942b08e78fe03c85dbc57a511618f56ede066bc4be15fbe641db8096659e24cbcdbb18380f7744bc418bb9559fa47662bc859c67554b3
7
- data.tar.gz: 21b0a20d303c52c7d87c8a69079e03b8c8006c9674b748304098ad7a55a7742537b03de9841fbd71f6abf1b6f316fc98c12688e506114e58d6f6b0e7a2a20877
6
+ metadata.gz: 0a93278de3d2a14034701e93dfb08667e0e6c48d267d2a786e433119e227e0c715fdac05d5e92d8e9fbffbe8db74144c7f6b5faf6dfc70c9ef41c740343182a0
7
+ data.tar.gz: 230e9ffac88d1cffd60ddeccee87d3f002370d8b8a9a8413fa8fb468fe9210be99fd755eac8c6b2f10c17f99dc84d3ee937703d840bc1d988cc6f9ee581694d6
@@ -0,0 +1 @@
1
+ pkg
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Slackistrano
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/slackistrano.png)](http://badge.fury.io/rb/slackistrano)
4
+
3
5
  Send notifications to [Slack](https://slack.com) about [Capistrano](http://www.capistranorb.com) deployments.
4
6
 
5
7
  If you need Capistrano v2 support, check out [capistrano-slack](https://github.com/j-mcnally/capistrano-slack).
@@ -44,6 +44,6 @@ namespace :load do
44
44
  set :slack_token, ->{ nil } # Token from Incoming WebHooks. Required.
45
45
  set :slack_icon_url, ->{ "http://gravatar.com/avatar/885e1c523b7975c4003de162d8ee8fee?r=g&s=40" }
46
46
  set :slack_channel, ->{ "#general" }
47
- set :slack_username, ->{ "Capistrano" }
47
+ set :slack_username, ->{ "Slackistrano" }
48
48
  end
49
49
  end
@@ -1,3 +1,3 @@
1
1
  module Slackistrano
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slackistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip Hallstrom
@@ -31,6 +31,7 @@ executables: []
31
31
  extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
+ - .gitignore
34
35
  - Gemfile
35
36
  - LICENSE.txt
36
37
  - README.md