lita-debug-queue 0.3.0 → 0.3.1

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: 81cb7c42ab50cfb2dcc68a79f3f12e506e96b3f4
4
- data.tar.gz: f1601cff61d894a7c979bb1a23f9cf25f94ec80e
3
+ metadata.gz: 82c8f70e532fa51c1fec7c8e2beec5b1d13642fb
4
+ data.tar.gz: b0133a26bccee8c2ff3ee32b3b33c7d3a9549570
5
5
  SHA512:
6
- metadata.gz: eceb98b633cbec29a8f09224eb37cf8c7d343f6599a4356338b4459d15dad7c01be5132a5d02b024b0c20f7ea27f952e06366bb9ee2ccc2c794fbe3414b6ffc9
7
- data.tar.gz: 09e2794ffbe2964b58d9ec370baab6af3857ad4fcea7bd5e6911ee37729c46874666c920f70a15afcb56571885b2aca8e14d074aaf7328b1a54b339c9c7b023a
6
+ metadata.gz: eb7fd26bc403bece86a064a1510e9431b325218fd95fb5ecb622f6b573640260afae781b1e3940c9718232aed134b79575eef1fa48f5ef7488b509d9ee20e95e
7
+ data.tar.gz: 0cabfaa2e73af001caa84ead1847bc87a30ff98e0d0f0df9b151d82f9059051d392cfca9382850e017298611026c215e41f7b958e76e70aef0ec6b94b8a0c7da
data/NEWS.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## News
2
2
 
3
+ ### 0.3.1 (2016-04-22)
4
+
5
+ * Make all debug queue commands case insensitive.
6
+
3
7
  ### 0.3.0 (2016-02-21)
4
8
 
5
9
  * The main addition is an API for administrators to interact with the queue.
@@ -6,21 +6,21 @@ module Lita
6
6
  config :classrooms # A mapping from instructor names to classroom channels.
7
7
  config :schedule # A mapping from weekdays to available instructor hours.
8
8
 
9
- route(/debug me/, :add,
9
+ route(/debug me/i, :add,
10
10
  help: { 'debug me' => 'Put your name in the queue for debugging help.' })
11
- route(/debug nvm/, :cancel,
11
+ route(/debug nvm/i, :cancel,
12
12
  help: { 'debug nvm' => 'Remove your name from the queue for debugging help.' })
13
13
  route(/debug queue/i, :show,
14
14
  help: { 'debug queue' => 'Show the current queue for your class.' })
15
15
  route(/debug count/i, :count,
16
16
  help: { 'debug count' => 'Count the number of people waiting for help.' })
17
- route(/debug next/, :next,
17
+ route(/debug next/i, :next,
18
18
  restrict_to: [:instructors, :assistants],
19
19
  help: { 'debug next' => 'Notify the next student to be helped.' })
20
- route(/debug drop\s+(.+)/, :drop,
20
+ route(/debug drop\s+(.+)/i, :drop,
21
21
  restrict_to: [:instructors, :assistants],
22
22
  help: { 'debug drop NAME' => 'Remove the student with NAME from the queue.' })
23
- route(/^debug clear$/, :clear,
23
+ route(/^debug clear$/i, :clear,
24
24
  restrict_to: [:instructors],
25
25
  help: { 'debug clear' => 'Empty the queue.' })
26
26
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "lita-debug-queue"
3
- spec.version = "0.3.0"
3
+ spec.version = "0.3.1"
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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-debug-queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brit Butler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-21 00:00:00.000000000 Z
11
+ date: 2016-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lita