lita-debug-queue 0.1.4 → 0.1.5

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: 57927997433eda06171f21c9677ec7a23d625644
4
- data.tar.gz: bb3f16bf5d54e7377e28cdf85f1a556bc38402fc
3
+ metadata.gz: 8bd0d90096baa749670d0561ed188d9719b50316
4
+ data.tar.gz: d5715f3bc56c356670576c2aee97412fa948675b
5
5
  SHA512:
6
- metadata.gz: 54fac78753732e5a4da461cfbba7c21378526ab0fcc64bdcad3892a306595a4c09d3f480caf825a2e8c1cb8b465b329751a4161ba3a016d80f8f171f0cca3c50
7
- data.tar.gz: 40333ea1c1166b87c7b623819b52ba1f5f8cbbd7b46971653c715c5bd1a30b615c78330e975f553d45995f54bf9dd59d0a9ea51379f98439367aa12f99e21e7a
6
+ metadata.gz: e0fc1ddb60b91084f380a5c9d4feec0d36dab97751bb44c642972d202147efce14c4236a3fb4e9c69363dc43118abc0eff507812e602dc4f7331c46dd9414737
7
+ data.tar.gz: 6dca5649ba9e1f3a02e33f89a6154ee7a06211717b03579a64aba27a981e92ffc9212ae86c8b80b89e07363d52b8d89fbfb68b36653092df13b3e9dace175f09
data/NEWS.md CHANGED
@@ -1,5 +1,15 @@
1
1
  ## News
2
2
 
3
+ ### 0.1.5 (2015-09-21)
4
+
5
+ * Fix the bug but break most of the tests.
6
+
7
+ I'm screwed on this one until Lita Slack Issue #44 is fixed.
8
+ Essentially, the room object returned by lita-slack is incorrect.
9
+ I had worked around this in the RoomFinder class but that code broke
10
+ the tests so I added a conditional based on whether tests were running
11
+ and oh god why am I writing this who am I talking to, screw it.
12
+
3
13
  ### 0.1.4 (2015-09-21)
4
14
 
5
15
  * No plan survives first contact with the enemy.
@@ -16,7 +16,8 @@ module Lita
16
16
  # KLUDGE: The following is a hack as the current room_object is incorrect. (lita-slack issue #44)
17
17
  def self.get_room_name(room)
18
18
  # KLUDGE: And this conditional is a hack since the test rooms are mocked.
19
- room.id == room.name ? room.name : Lita::Room.find_by_id(room.id).name(room)
19
+ # room.id == room.name ? room.name : Lita::Room.find_by_id(room.id).name(room)
20
+ Lita::Room.find_by_id(room.id).name(room)
20
21
  end
21
22
  end
22
23
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "lita-debug-queue"
3
- spec.version = "0.1.4"
3
+ spec.version = "0.1.5"
4
4
  spec.authors = ["Brit Butler"]
5
5
  spec.email = ["brit@kingcons.io"]
6
6
  spec.description = "Queue tracking of users who need debugging help with per-channel management"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-debug-queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brit Butler