lita-github-pinger 0.6.3 → 0.6.4
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 +1 -1
- 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: b47d661992de6f9c83802dc773fe17f277a2f914
|
|
4
|
+
data.tar.gz: 4aa1609575c70836123de79de1dffef05ae7141a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0b480158396eddb35f2133d605218c76ffee39319b6eeb568748b38727049ee21e6caa294c30e6db8e1c24b611f9386cd36ad9f85fe0c1a9473b3cbc42da147
|
|
7
|
+
data.tar.gz: 125877c564639f555dd2a28a57e2f2f810d301cf7b76a63b76936b2b503833f13574773b76da4208d432cc8d308a35c1a220e2b5d310fd8ae364c9d8c7f2cea6
|
|
@@ -139,7 +139,7 @@ module Lita
|
|
|
139
139
|
puts "Found @mentions in the body of the comment! Extracting usernames... "
|
|
140
140
|
|
|
141
141
|
# get each @mentioned engineer in the comment
|
|
142
|
-
mentions = comment.split("@")[1..-1].map { |snip| snip.split(" ").first.gsub(/[^0-9a-z ]/i }
|
|
142
|
+
mentions = comment.split("@")[1..-1].map { |snip| snip.split(" ").first.gsub(/[^0-9a-z ]/i) }
|
|
143
143
|
|
|
144
144
|
puts "Done. Got #{mentions}"
|
|
145
145
|
puts "Converting usernames to engineers..."
|
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.6.
|
|
3
|
+
spec.version = "0.6.4"
|
|
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."
|