gabriel 0.0.2 → 0.0.3
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.
- data/README.md +1 -1
- data/VERSION +1 -1
- data/scripts/gabriel.bash +6 -1
- metadata +4 -4
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Gabriel gives you tab-completion for god commands, options, tasks, and groups in
|
|
|
6
6
|
How to Use
|
|
7
7
|
----------
|
|
8
8
|
|
|
9
|
-
Run `
|
|
9
|
+
Run `gabriel-install`, follow the directions given, and you're good to go.
|
|
10
10
|
|
|
11
11
|
$ god st<TAB>
|
|
12
12
|
start status stop
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.3
|
data/scripts/gabriel.bash
CHANGED
|
@@ -54,12 +54,17 @@ _god() {
|
|
|
54
54
|
COMPREPLY=( $(compgen -W "${__god_log_levels}" -- ${cur}) )
|
|
55
55
|
return 0
|
|
56
56
|
;;
|
|
57
|
+
load|-P|-l|-c|--config-file)
|
|
58
|
+
# Use default completions
|
|
59
|
+
;;
|
|
57
60
|
god)
|
|
58
61
|
COMPREPLY=( $(compgen -W "${__god_commands} ${__god_options}" -- ${cur}) )
|
|
59
62
|
return 0
|
|
60
63
|
;;
|
|
61
64
|
*)
|
|
62
|
-
|
|
65
|
+
COMPREPLY=( $(compgen -W "${__god_options}" -- ${cur}) )
|
|
66
|
+
return 0
|
|
67
|
+
;;
|
|
63
68
|
esac
|
|
64
69
|
}
|
|
65
70
|
complete -o bashdefault -o default -o nospace -F _god god
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 3
|
|
9
|
+
version: 0.0.3
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Enrico Bianco
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-
|
|
17
|
+
date: 2010-09-07 00:00:00 -04:00
|
|
18
18
|
default_executable: gabriel-install
|
|
19
19
|
dependencies: []
|
|
20
20
|
|
|
@@ -39,7 +39,7 @@ has_rdoc: true
|
|
|
39
39
|
homepage: http://github.com/enricob/gabriel
|
|
40
40
|
licenses: []
|
|
41
41
|
|
|
42
|
-
post_install_message:
|
|
42
|
+
post_install_message: " ** To set up gabriel's completions for your environment, run gabriel-install and follow the directions given. **\n"
|
|
43
43
|
rdoc_options:
|
|
44
44
|
- --charset=UTF-8
|
|
45
45
|
require_paths:
|