slackbot-notifier 1.0.0 → 1.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 +4 -0
- data/lib/slackbot_notifier.rb +1 -1
- data/slackbot-notifier.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 129936b6b78944953206b095d882a796a0c3c249
|
|
4
|
+
data.tar.gz: 8a8adf52ef441363695968b02647d90ab0fcc12e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fe9ae64e411c44427f116dc43560b89d291b6d56a8bf9a47f228b7c4bd99d1b4bf9901d67a1feed77fb9b28e3428796bc9eb2fdddf31261f213d6b3ada59f21
|
|
7
|
+
data.tar.gz: 02641d93cbd3d82ad00b2a3c71e1265946cf9da867a059ccdc0152b5e11e4807b687e4e9a4ae60d51bf4529bab364367dcde1703c4da64b3ff69f5688a5eeb47
|
data/README.md
CHANGED
|
@@ -12,8 +12,12 @@ Create an initializer named `slackbot_notifier` that has the following stuff:
|
|
|
12
12
|
require 'slackbot_notifier'
|
|
13
13
|
|
|
14
14
|
SlackbotNotifier.slackbot_url = YOUR_SLACKBOT_URL
|
|
15
|
+
SlackbotNotifier.development_room = DEVELOPMENT_ROOM
|
|
16
|
+
SlackbotNotifier.production = true
|
|
15
17
|
```
|
|
16
18
|
|
|
19
|
+
If the variable `production` is `true` then it will notify to the room specified, if it\'s `false` it will notify to the room specified in the `dvelopment_room` variable.
|
|
20
|
+
|
|
17
21
|
Usage
|
|
18
22
|
-----
|
|
19
23
|
|
data/lib/slackbot_notifier.rb
CHANGED
data/slackbot-notifier.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.platform = Gem::Platform::RUBY
|
|
3
3
|
s.name = 'slackbot-notifier'
|
|
4
|
-
s.version = '1.0.
|
|
4
|
+
s.version = '1.0.1'
|
|
5
5
|
s.date = '2015-05-30'
|
|
6
6
|
s.summary = "Slackbot notifier"
|
|
7
7
|
s.description = "This gem wraps the notification to a slack's room by through slackbot"
|