lita-debug-queue 0.3.0 → 0.3.1
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 +4 -4
- data/NEWS.md +4 -0
- data/lib/lita/handlers/debug_queue.rb +5 -5
- data/lita-debug-queue.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82c8f70e532fa51c1fec7c8e2beec5b1d13642fb
|
|
4
|
+
data.tar.gz: b0133a26bccee8c2ff3ee32b3b33c7d3a9549570
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb7fd26bc403bece86a064a1510e9431b325218fd95fb5ecb622f6b573640260afae781b1e3940c9718232aed134b79575eef1fa48f5ef7488b509d9ee20e95e
|
|
7
|
+
data.tar.gz: 0cabfaa2e73af001caa84ead1847bc87a30ff98e0d0f0df9b151d82f9059051d392cfca9382850e017298611026c215e41f7b958e76e70aef0ec6b94b8a0c7da
|
data/NEWS.md
CHANGED
|
@@ -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
|
|
9
|
+
route(/debug me/i, :add,
|
|
10
10
|
help: { 'debug me' => 'Put your name in the queue for debugging help.' })
|
|
11
|
-
route(/debug nvm
|
|
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
|
|
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+(.+)
|
|
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
|
|
23
|
+
route(/^debug clear$/i, :clear,
|
|
24
24
|
restrict_to: [:instructors],
|
|
25
25
|
help: { 'debug clear' => 'Empty the queue.' })
|
|
26
26
|
|
data/lita-debug-queue.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "lita-debug-queue"
|
|
3
|
-
spec.version = "0.3.
|
|
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.
|
|
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-
|
|
11
|
+
date: 2016-04-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: lita
|