ruboty-github 0.1.2 → 0.1.3

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: 858be07d2d4a6b4c7175e4ec8d6016106bfaecb1
4
- data.tar.gz: e7f1756359a7903812438a6953a612bc67e819fe
3
+ metadata.gz: c3b88329f4ad8ac7d2307f4461a7cbc8187841f5
4
+ data.tar.gz: b17c904b6ddeee65a580ea31028835cf5bf67ce3
5
5
  SHA512:
6
- metadata.gz: 3649533a6835fc21a2600582359d40093eb6e54c388b13f9070ad1a536a6b19f348a68eb6da594af63d052a9f25d690a04a709c5bfc2bb3f2142958ee2613fa0
7
- data.tar.gz: 853d6eabb9f68f4f3c2f4e2c5a3476e99442abb87ba374619579fa176c3d2a23ccad193b7eb780bd103056dff8cd0ca6133d5ec93fbf08ba98e8be885272a2ef
6
+ metadata.gz: 46395eaee13332168a55a3b7640c2d5b3b337fb782729029137a0a172b7fd540653c4fb3c0d8958aef5c7cfa40e2365ca99fa94c043bf8c476eae7adc8184688
7
+ data.tar.gz: d299ae74ffd476a3ed3530222aa8a1f0237a84103be76888f289c0b1ffde0da61a84e6c880b17c59f96e8fc36276948755b91dc23a263102bce6f48fccb9aa85
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.1.3
2
+ - Fix bug that would not respond to issue URL
3
+
1
4
  ## 0.1.2
2
5
  - Allow merge & issue commands to take issue's URL
3
6
  - `close issue <target>` -> `close[ issue] <target>`
@@ -1,5 +1,5 @@
1
1
  module Ruboty
2
2
  module Github
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
@@ -1,7 +1,7 @@
1
1
  module Ruboty
2
2
  module Handlers
3
3
  class Github < Base
4
- ISSUE_PATTERN = %r<(?:https?://[^/]+/)?(?<repo>.+)(?:#|/pull/|/issue/)(?<number>\d+) ?>
4
+ ISSUE_PATTERN = %r<(?:https?://[^/]+/)?(?<repo>.+)(?:#|/pull/|/issues/)(?<number>\d+) ?>
5
5
 
6
6
  env :GITHUB_HOST, "Pass GitHub Host if needed (e.g. github.example.com)", optional: true
7
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruboty-github
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura