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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fbaba152330bec153ac825d4253ad8e03b206b0d
4
- data.tar.gz: 33e67772ed7f3f6d5ee2c67ec74dd53d3f9c8aea
3
+ metadata.gz: 850224d702e0b26ea9455ecd7467cf5d0fc73934
4
+ data.tar.gz: 8210f0fb068dd059c4c9344d4f4079cdd04e032c
5
5
  SHA512:
6
- metadata.gz: 44b20749566f1dff804d371551fe8b2d04c9a04f7ebc644dc18bafa8f17687a23ec83f6e08a13a8e90c2217b1c950a2c1c14c1ffd9d3fda17e77cfdf756e2bff
7
- data.tar.gz: d7ffe581b79050a22afe4705080dcf069f29474b0c54a276d75ee49d466c45b7462d91438275145df0733b1e63e8502ced70c339ecfdc1fde05fd33f2c092cde
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: = (poop) OR :hankey: = (hankey)
42
+ Fail - :poop: OR :hankey: = (poop)
43
43
  Fixed - :wave: = (wave)
44
44
 
45
45
  ## Contributing
@@ -11,7 +11,7 @@ module Lita
11
11
 
12
12
  PASS_EMOJI = "(elephant)(elephant)(elephant)"
13
13
  REVIEW_EMOJI = "(book)"
14
- FAIL_EMOJI = "(hankey)"
14
+ FAIL_EMOJI = "(poop)"
15
15
  FIXED_EMOJI = "(wave)"
16
16
 
17
17
  def initialize(params = {})
@@ -1,5 +1,5 @@
1
1
  module Lita
2
2
  module GithubPrList
3
- VERSION = "0.0.13"
3
+ VERSION = "0.0.14"
4
4
  end
5
5
  end
@@ -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 (hankey) Found a waffle https://github.com/octocat/Hello-World/pull/1347")
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-github_pr_list
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael van den Beuken