lita-github-pinger 0.1.7 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 67d929336fc72546a61b9696fa8fc16f0283d90d
4
- data.tar.gz: 1d44bc1672edb1ad9cd4b3219a8c3373a1a5e11d
3
+ metadata.gz: 80370f63b75bbc667a90e4e9b353a945da00858f
4
+ data.tar.gz: 6a73783bf7382617242f7cb13e79bd7822575d76
5
5
  SHA512:
6
- metadata.gz: b3701ed7c9338dd35b832bac51cded52c4b84fbdf1fadad4c87b7b626e25940fb7601e1e1d6dd1f63933b4bbed626b7760b7f65230bdda04b0d2ffe999916551
7
- data.tar.gz: df0201ce3f0c729a10a20ec3e397769461c0c94a076bf7736e231fc9b56e9bf19ff4f4277cd27fea046be5c31f7c12d4562831ffb0397b5fb3099b3128defb68
6
+ metadata.gz: 0815ed89a5a02f549e0432ee4e6c4d5002818fbf28caec746449787a21f404f24e09f237ff473e6e0f20951a1df2c7c421ecfc1f5fee83404f647dabf3b3018d
7
+ data.tar.gz: 497b7e93bd042edfefe945d314b3b9be456e9c0c0d985d3484662205386b85ffdea6b43c39f7277b82b306378b7941fffe6e8d0252c724caceb772930ed372ed
@@ -7,6 +7,11 @@ module Lita
7
7
  config :engineers, type: Array, required: true
8
8
 
9
9
  route(GITHUB_PR_COMMENT_REGEX, :detect_comment, command: false)
10
+ route(/testing/, :see_what_happens, command: false)
11
+
12
+ def see_what_happens(message)
13
+ message.reply message.message.body
14
+ end
10
15
 
11
16
  def detect_comment(message)
12
17
  pr_id,
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "lita-github-pinger"
3
- spec.version = "0.1.7"
3
+ spec.version = "0.1.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."
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-github-pinger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Lapeyre