slackiq 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 +2 -2
- data/lib/slackiq/version.rb +1 -1
- data/slackiq.gemspec +1 -1
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 731c6cdaae7339442ae156e046a4d4d85f3b6816
|
|
4
|
+
data.tar.gz: 318ba55d2ffd9fe0ff8ae44a8eec62140ecdb4d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 95af720e875a6092d25413b399748fd1d7b02966b50e74bda68217798b0152e678a8e46da3682f6cf68c68e2ecd5fec29f298f59de5df76484183c756819d750
|
|
7
|
+
data.tar.gz: 6f4bd1c577355d35b7405edf7474615ba1c14733d3d950249f699d8993f6f147abb40da2bc77271c1da76dbf671ff36a46e8108bdbc0a3513c81698800ace839
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Slackiq
|
|
2
2
|
|
|
3
|
-
Slackiq integrates [Slack](https://slack.com/) and [Sidekiq
|
|
3
|
+
Slackiq integrates [Slack](https://slack.com/) and [Sidekiq](http://sidekiq.org) so that you can have vital information about your Sidekiq jobs sent directly to your team's Slack.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
@@ -31,7 +31,7 @@ Slackiq.configure( web_scrapes: 'https://hooks.slack.com/services/HA298HF2/ALSKF
|
|
|
31
31
|
|
|
32
32
|
You can call `notify` to send a nicely-formatted notification to your Slack. You can call `notify`
|
|
33
33
|
|
|
34
|
-
* Inside the Sidekiq Pro `on_success` or `on_complete`
|
|
34
|
+
* Inside the Sidekiq Pro `on_success` or `on_complete` callback (not available on regular Sidekiq--only Pro)
|
|
35
35
|
* From inside a Sidekiq worker while it's running, in which case you should pass in the `bid` to the `perform` method of the worker
|
|
36
36
|
|
|
37
37
|
The `notify` method has a single Hash parameter. Here are the keys and values in the Hash:
|
data/lib/slackiq/version.rb
CHANGED
data/slackiq.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ['Jason Lew']
|
|
10
10
|
spec.email = ['jason@mightysignal.com']
|
|
11
11
|
spec.summary = 'MightySignal: Slack and Sidekiq Pro integration'
|
|
12
|
-
spec.description = "Slackiq (by MightySignal) integrates Slack and Sidekiq
|
|
12
|
+
spec.description = "Slackiq (by MightySignal) integrates Slack and Sidekiq so that you can have vital information about your Sidekiq jobs sent directly to your team's Slack."
|
|
13
13
|
spec.homepage = 'https://github.com/MightySignal/slackiq'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
15
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: slackiq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Lew
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-09-
|
|
11
|
+
date: 2015-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
@@ -52,9 +52,8 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '10.0'
|
|
55
|
-
description: Slackiq (by MightySignal) integrates Slack and Sidekiq
|
|
56
|
-
|
|
57
|
-
Slack.
|
|
55
|
+
description: Slackiq (by MightySignal) integrates Slack and Sidekiq so that you can
|
|
56
|
+
have vital information about your Sidekiq jobs sent directly to your team's Slack.
|
|
58
57
|
email:
|
|
59
58
|
- jason@mightysignal.com
|
|
60
59
|
executables: []
|