lita-onewheel-doc 1.0.0 → 1.0.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: decc977034b40bf5eb2e30d28eee02ab48060c2a
4
- data.tar.gz: 687983c64a8bb2c4474d7e0bbcb629c86ec1e9d1
3
+ metadata.gz: 960d720cc52d9f8e4faf0a54b95beb2760454e9a
4
+ data.tar.gz: 354400a1f858a1df48459859cc11f6ee8d4cccd8
5
5
  SHA512:
6
- metadata.gz: bfbe6ed73a4319c0d6745c7ef2a033d378a4602ac39fa56b2cc1a16aeec70c99a191066d47580de71f6cadfa8a7ef26c7844bf0a1fce9c80b75bae4b12934656
7
- data.tar.gz: 05626560bfa0f84c3a858fbf687a24fae976a253e8d105a78b18d175cb4e7e264ee32f77d473c2edd4b648771d9f111523a3f2c57b87f60855b5722cf8fa710d
6
+ metadata.gz: 88da5d4edc0fdc97d49b25fc84a2159b9a20940220054eb0f526ac457195252588563861ebeacd2f9036cca54391366cb78234bfbac8b770620e45b4a213653b
7
+ data.tar.gz: a99ec6de36519fa707f848cb7fa675794f807a57c438f0494fae63c3afc82de4f361eacd46937bc8117210dcee7ca35f6bc1656f0b70cfc3e1fa206b26107cc5
@@ -6,19 +6,19 @@ module Lita
6
6
  route /^docdel\s+([\w\/+_-]+)$/,
7
7
  :command_del_key,
8
8
  command: true,
9
- help: '!docdel key removes a key'
9
+ help: {'!docdel key ' => 'removes a key'}
10
10
  route /^doc\s+([\w\/+_-]+)\s+(.*)$/,
11
11
  :command_add_key,
12
12
  command: true,
13
- help: '!doc key_val http:// Add a key using key_val and the http link'
13
+ help: {'!doc key http://' => 'Add a key using key_val and the http link'}
14
14
  route /^doc$/,
15
15
  :command_list_keys,
16
16
  command: true,
17
- help: '!doc list all keys'
17
+ help: {'!doc ' => 'list all keys'}
18
18
  route /^doc\s+(\w+)$/,
19
19
  :command_fetch_key,
20
20
  command: true,
21
- help: '!doc key_val fetch the value for key_val'
21
+ help: {'!doc key ' => 'fetch the value for key_val'}
22
22
 
23
23
  def command_add_key(response)
24
24
  key = response.matches[0][0]
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'lita-onewheel-doc'
3
- spec.version = '1.0.0'
3
+ spec.version = '1.0.1'
4
4
  spec.authors = ['Andrew Kreps']
5
5
  spec.email = ['andrew.kreps@gmail.com']
6
6
  spec.description = 'Basic key/value store designed for http links.'
@@ -36,4 +36,5 @@ describe Lita::Handlers::OnewheelDoc, lita_handler: true do
36
36
  send_command 'doc pac'
37
37
  expect(replies.last).to eq("pacone: http://one\npactwo: http://two")
38
38
  end
39
+
39
40
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-onewheel-doc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kreps