lita-github_pr_list 0.0.13 → 0.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +1 -1
- data/lib/lita/github_pr_list/status.rb +1 -1
- data/lib/lita/github_pr_list/version.rb +1 -1
- data/spec/lita/handlers/pull_request_spec.rb +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: 850224d702e0b26ea9455ecd7467cf5d0fc73934
|
4
|
+
data.tar.gz: 8210f0fb068dd059c4c9344d4f4079cdd04e032c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b657122ac32c84e570b93ecd35e8eabd53ad81649e78f4fe4dd1edfc3b23d31222a0d0e1d172693145a12daa58aab9cb147b4b7917e42d4f9512372b0e0e9ef
|
7
|
+
data.tar.gz: 46e9dacb4cf541c6d910c887affa4ad4ecc2e29eb8b12fc1b7d3fb21cd8fdb85dc25768765b341d728a743bbf81db8b6f4c552bc35d20865a7aeccb104df18db
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
## 2014-10-09
|
2
|
+
|
3
|
+
Bug Fixes:
|
4
|
+
|
5
|
+
* Hipchat doesn't recognize (hankey), reverting to (poop). ([#30][], [@MathieuGilbert][])
|
6
|
+
|
1
7
|
## 2014-10-07
|
2
8
|
|
3
9
|
Features:
|
@@ -13,5 +19,6 @@ Features:
|
|
13
19
|
<!--- The following link definition list is generated by PimpMyChangelog --->
|
14
20
|
[#28]: https://github.com/amaabca/lita-github_pr_list/issues/28
|
15
21
|
[#29]: https://github.com/amaabca/lita-github_pr_list/issues/29
|
22
|
+
[#30]: https://github.com/amaabca/lita-github_pr_list/issues/30
|
16
23
|
[@MathieuGilbert]: https://github.com/MathieuGilbert
|
17
24
|
[@rubene]: https://github.com/rubene
|
data/README.md
CHANGED
@@ -39,7 +39,7 @@ will display it, otherwise it will display :new:.
|
|
39
39
|
New - :new: - This is the default state, shown (new) if none of the other states are set.
|
40
40
|
Pass - :elephant: :elephant: :elephant: = (elephant)(elephant)(elephant)
|
41
41
|
In Review - :book: = (book)
|
42
|
-
Fail - :poop:
|
42
|
+
Fail - :poop: OR :hankey: = (poop)
|
43
43
|
Fixed - :wave: = (wave)
|
44
44
|
|
45
45
|
## Contributing
|
@@ -51,7 +51,7 @@ describe Lita::Handlers::GithubPrList, lita_handler: true do
|
|
51
51
|
send_command("pr list")
|
52
52
|
|
53
53
|
expect(replies.last).to include("waffles (elephant)(elephant)(elephant) Found a bug https://github.com/octocat/Hello-World/pull/1347")
|
54
|
-
expect(replies.last).to include("waffles (
|
54
|
+
expect(replies.last).to include("waffles (poop) Found a waffle https://github.com/octocat/Hello-World/pull/1347")
|
55
55
|
end
|
56
56
|
|
57
57
|
it "displays the status of the PR (in review/fixed)" do
|