lita-github-pinger 0.4.0 → 0.4.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/lib/lita/handlers/github_pinger.rb +3 -3
- data/lita-github-pinger.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: 52923748b67e031bd482eb22ae77fa5f7ac4b942
|
|
4
|
+
data.tar.gz: dbdcec2ad578a16af316d44753b1685e89e264da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b346d324ed71664c210377403c0e2333450f102ae6e262027b4a824e2f2a6ba2fb6941dd90d4db6930cfbac1e314ab1bbc44ceb6e71214f440ec0241fa5652b0
|
|
7
|
+
data.tar.gz: 808d697851dba6670bb518923b826a6b7a2aff6b64978f6a9d9575e9360574393c4e653ed075ce93e7c0f047474e48e49f9d051510336ae4c9dc38c5a584802a
|
|
@@ -25,11 +25,11 @@ module Lita
|
|
|
25
25
|
|
|
26
26
|
# add them to the list of usernames to ping
|
|
27
27
|
usernames_to_ping = usernames_to_ping.concat(mentions).uniq
|
|
28
|
-
|
|
29
|
-
# slackify all of the users
|
|
30
|
-
usernames_to_ping.map! { |user| github_to_slack_username(user) }
|
|
31
28
|
end
|
|
32
29
|
|
|
30
|
+
# slackify all of the users
|
|
31
|
+
usernames_to_ping.map! { |user| github_to_slack_username(user) }
|
|
32
|
+
|
|
33
33
|
puts "Got a comment on something, sending messages to #{usernames_to_ping}"
|
|
34
34
|
usernames_to_ping.each do |user|
|
|
35
35
|
|
data/lita-github-pinger.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "lita-github-pinger"
|
|
3
|
-
spec.version = "0.4.
|
|
3
|
+
spec.version = "0.4.1"
|
|
4
4
|
spec.authors = ["Taylor Lapeyre"]
|
|
5
5
|
spec.email = ["taylorlapeyre@gmail.com"]
|
|
6
6
|
spec.description = "A Lita handler that detects github comment notifications and regurgitates a ping to the correct slack username."
|