ruboty-help_query 1.0.0 → 1.0.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/CHANGELOG.md +10 -0
- data/README.md +2 -1
- data/lib/ruboty/handlers/help_query.rb +1 -1
- data/lib/ruboty/help_query/version.rb +1 -1
- data/spec/ruboty/help_query/actions/help_spec.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e87808e523c2c1bff9b4a05ee169e18e1486cc9d
|
|
4
|
+
data.tar.gz: 0bcb34437781f88e4b560808308b743f439b8206
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15f35700d5022dcc06f629e1148e8eaa5831ac57a34b8c0aa2cb3df38b4085075228e8cb91307276638f9ccba332a9462ae216e4bc89e41b14983510b9b199ec
|
|
7
|
+
data.tar.gz: 99413ea32edecbddf12e1b09e2220f4987db6126da3cac855ca1d7a6638f439333c618c75febf655d08629a839d72c66370190b9d1ff90e111796bf32522188b
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
An Ruboty Handler + Actions to show all help commands that match <query>.
|
|
4
4
|
|
|
5
|
+
[](http://badge.fury.io/rb/ruboty-help_query)
|
|
5
6
|
[](https://travis-ci.org/tbpgr/ruboty-help_query)
|
|
6
7
|
[](https://coveralls.io/r/tbpgr/ruboty-help_query)
|
|
7
8
|
|
|
@@ -28,7 +29,7 @@ Or install it yourself as:
|
|
|
28
29
|
|
|
29
30
|
|Command|Pattern|Description|
|
|
30
31
|
|:--|:--|:--|
|
|
31
|
-
|help|/help *(?<query>
|
|
32
|
+
|help|/help *(?<query>.+)\z/|Show all help commands that match <query>.|
|
|
32
33
|
|
|
33
34
|
## Usage
|
|
34
35
|
### help
|
|
@@ -33,7 +33,7 @@ describe Ruboty::HelpQuery::Actions::Help do
|
|
|
33
33
|
case_title: 'exist user case',
|
|
34
34
|
query: '.*p.*',
|
|
35
35
|
expected: <<-EOS
|
|
36
|
-
robot /help\\s*(?<query
|
|
36
|
+
robot /help\\s*(?<query>.+)\\z/ - Show all help commands that match <query>.
|
|
37
37
|
robot /help( me)?\\z/i - Show this help message
|
|
38
38
|
robot /ping\\z/i - Return PONG to PING
|
|
39
39
|
EOS
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruboty-help_query
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tbpgr
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-12-
|
|
11
|
+
date: 2014-12-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruboty
|
|
@@ -92,6 +92,7 @@ files:
|
|
|
92
92
|
- .rspec
|
|
93
93
|
- .rubocop.yml
|
|
94
94
|
- .travis.yml
|
|
95
|
+
- CHANGELOG.md
|
|
95
96
|
- Gemfile
|
|
96
97
|
- LICENSE.txt
|
|
97
98
|
- README.md
|