lita-github-pinger 0.2.7 → 0.2.8
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: 87fd5c9f0fcdb16fbdf00c9a1ead0a4db2dcb660
|
|
4
|
+
data.tar.gz: 4433e81e4ce2452319ac87c2cea2a26348b0497b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f40fd49b22219dbdd639990dc393565321229017e0246f19d10a2624a6847cee7680c58a2b41ecb30f59c6be70552e2b9eaa6cb1bfc1a20217d2be8c1b79276
|
|
7
|
+
data.tar.gz: 7ab096a43118f51805f562def41a2b40584c5895eda147361417eb2d3c558af0aee9365749898a4cc05128545c22e89ea78012c792563058aa870b818327ca5f
|
|
@@ -30,7 +30,7 @@ module Lita
|
|
|
30
30
|
def send_dm(username, content)
|
|
31
31
|
if user = Lita::User.fuzzy_find(username)
|
|
32
32
|
source = Lita::Source.new(user: user)
|
|
33
|
-
robot.send_message(source, "New PR comment! #{
|
|
33
|
+
robot.send_message(source, "New PR comment! #{content}")
|
|
34
34
|
else
|
|
35
35
|
puts "Could not find user with name #{username}"
|
|
36
36
|
end
|
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.2.
|
|
3
|
+
spec.version = "0.2.8"
|
|
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."
|