my_help 0.7.0 → 0.7.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/bin/my_help +1 -3
- data/lib/my_help/my_help_controll.rb +0 -1
- data/lib/my_help/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 329496bbae92a57e90f94b719ddd2be82e2ef5d3
|
4
|
+
data.tar.gz: 813ed1f72d37fa2d93c529ed7eea68340373d1ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec29d078e2e359b1b207359f83eb1ee2bcc844fab35995f97e3c42936904cd31f71e33f0ef9ff16603f6fe205c6bb160a03f4caa5e33f2a705a77bf1175bf602
|
7
|
+
data.tar.gz: 994d20e42858e1df0192f6b91efc8df0c3f5da0b037c961e4065824ac0d35d6eeef6cf66c5d542ff2867a4dcc67a3e6daa5c86cbd0a899441bddfb5168506d9b
|
data/bin/my_help
CHANGED
@@ -15,7 +15,6 @@ desc 'list all helps, specific HELP, or item'
|
|
15
15
|
arg_name 'HELP_NAME, ITEM'
|
16
16
|
command :list do |c|
|
17
17
|
c.action do |global_options,options,args|
|
18
|
-
p args
|
19
18
|
file, item = args
|
20
19
|
if file.nil?
|
21
20
|
$control.list_all
|
@@ -31,8 +30,7 @@ desc 'edit HELP_NAME help'
|
|
31
30
|
arg_name 'HELP_NAME'
|
32
31
|
command :edit do |c|
|
33
32
|
c.action do |global_options,options,args|
|
34
|
-
|
35
|
-
$control.edit_help(args[0])
|
33
|
+
$control.edit_help(args[0])
|
36
34
|
end
|
37
35
|
end
|
38
36
|
|
data/lib/my_help/version.rb
CHANGED