completely 0.5.2 → 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/completely +1 -1
- data/lib/completely/cli.rb +5 -3
- data/lib/completely/commands/base.rb +2 -2
- data/lib/completely/commands/generate.rb +1 -1
- data/lib/completely/commands/init.rb +1 -1
- data/lib/completely/commands/install.rb +96 -0
- data/lib/completely/commands/test.rb +2 -2
- data/lib/completely/version.rb +1 -1
- metadata +16 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4fbe4bb19567637239bac887b5e785caeac6c0dbf38f82e7d775a994db58a29
|
4
|
+
data.tar.gz: d7449fd83d8e1b6e5ce723deb457e6e8eab4254a92818f739fd6002b939385c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5e3c3985ac71d2db26ce7f321e1717af80ef760def41820b86e505ee884a3921d43618093c94ee41b3f9ed2291d35f9eac49fd6c4c6d4a376e1e981198d3ce9
|
7
|
+
data.tar.gz: 19719cecb29e21e1a226fd45d815a02baf9579c75e0f88ed0876a4ece8c3dee587feb88e71657d9d362cf9a2de5d0222b1423ecff4af759d32906daee0ba42a7
|
data/bin/completely
CHANGED
data/lib/completely/cli.rb
CHANGED
@@ -1,21 +1,23 @@
|
|
1
1
|
require 'mister_bin'
|
2
|
+
require 'completely/version'
|
3
|
+
require 'completely/commands/generate'
|
2
4
|
require 'completely/commands/init'
|
5
|
+
require 'completely/commands/install'
|
3
6
|
require 'completely/commands/preview'
|
4
|
-
require 'completely/commands/generate'
|
5
7
|
require 'completely/commands/test'
|
6
|
-
require 'completely/version'
|
7
8
|
|
8
9
|
module Completely
|
9
10
|
class CLI
|
10
11
|
def self.runner
|
11
12
|
runner = MisterBin::Runner.new version: Completely::VERSION,
|
12
13
|
header: 'Completely - Bash Completions Generator',
|
13
|
-
footer: 'Run
|
14
|
+
footer: 'Run m`completely COMMAND --help` for more information'
|
14
15
|
|
15
16
|
runner.route 'init', to: Commands::Init
|
16
17
|
runner.route 'preview', to: Commands::Preview
|
17
18
|
runner.route 'generate', to: Commands::Generate
|
18
19
|
runner.route 'test', to: Commands::Test
|
20
|
+
runner.route 'install', to: Commands::Install
|
19
21
|
|
20
22
|
runner
|
21
23
|
end
|
@@ -51,8 +51,8 @@ module Completely
|
|
51
51
|
end
|
52
52
|
|
53
53
|
def syntax_warning
|
54
|
-
say! "\
|
55
|
-
say! '
|
54
|
+
say! "\nr`WARNING:`\nr`Your configuration is invalid.`"
|
55
|
+
say! 'r`All patterns must start with the same word.`'
|
56
56
|
end
|
57
57
|
end
|
58
58
|
end
|
@@ -0,0 +1,96 @@
|
|
1
|
+
require 'completely/commands/base'
|
2
|
+
|
3
|
+
module Completely
|
4
|
+
module Commands
|
5
|
+
class Install < Base
|
6
|
+
TARGETS = %W[
|
7
|
+
/usr/share/bash-completion/completions
|
8
|
+
/usr/local/etc/bash_completion.d
|
9
|
+
#{Dir.home}/.bash_completion.d
|
10
|
+
]
|
11
|
+
|
12
|
+
summary 'Install a bash completion script'
|
13
|
+
|
14
|
+
help <<~HELP
|
15
|
+
This command will copy the specified file to one of the following directories:
|
16
|
+
|
17
|
+
#{TARGETS.map { |c| " - #{c}" }.join "\n"}
|
18
|
+
|
19
|
+
The target filename will be the program name, and sudo will be used if necessary.
|
20
|
+
HELP
|
21
|
+
|
22
|
+
usage 'completely install PROGRAM [SCRIPT_PATH --force --dry]'
|
23
|
+
usage 'completely install (-h|--help)'
|
24
|
+
|
25
|
+
option '-f --force', 'Overwrite target file if it exists'
|
26
|
+
option '-d --dry', 'Show the installation command but do not run it'
|
27
|
+
|
28
|
+
param 'PROGRAM', 'Name of the program the completions are for.'
|
29
|
+
param 'SCRIPT_PATH', 'Path to the source bash script [default: completely.bash].'
|
30
|
+
|
31
|
+
def run
|
32
|
+
bounce
|
33
|
+
|
34
|
+
if args['--dry']
|
35
|
+
puts command.join ' '
|
36
|
+
return
|
37
|
+
end
|
38
|
+
|
39
|
+
success = system(*command)
|
40
|
+
raise "Failed running command:\nnb`#{command.join ' '}`" unless success
|
41
|
+
|
42
|
+
say "Saved m`#{target_path}`"
|
43
|
+
say 'You may need to restart your session to test it'
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def bounce
|
49
|
+
unless completions_path
|
50
|
+
raise 'Cannot determine system completions directory'
|
51
|
+
end
|
52
|
+
|
53
|
+
unless File.exist? script_path
|
54
|
+
raise "Cannot find script: m`#{script_path}`"
|
55
|
+
end
|
56
|
+
|
57
|
+
if target_exist? && !args['--force']
|
58
|
+
raise "File exists: m`#{target_path}`\nUse nb`--force` to overwrite"
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def target_exist?
|
63
|
+
File.exist? target_path
|
64
|
+
end
|
65
|
+
|
66
|
+
def command
|
67
|
+
result = root? ? [] : %w[sudo]
|
68
|
+
result + %W[cp #{script_path} #{target_path}]
|
69
|
+
end
|
70
|
+
|
71
|
+
def script_path
|
72
|
+
args['SCRIPT_PATH'] || 'completely.bash'
|
73
|
+
end
|
74
|
+
|
75
|
+
def target_path
|
76
|
+
"#{completions_path}/#{args['PROGRAM']}"
|
77
|
+
end
|
78
|
+
|
79
|
+
def root?
|
80
|
+
Process.uid.zero?
|
81
|
+
end
|
82
|
+
|
83
|
+
def completions_path
|
84
|
+
@completions_path ||= completions_path!
|
85
|
+
end
|
86
|
+
|
87
|
+
def completions_path!
|
88
|
+
TARGETS.each do |tarnet|
|
89
|
+
return tarnet if Dir.exist? tarnet
|
90
|
+
end
|
91
|
+
|
92
|
+
nil
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
@@ -38,14 +38,14 @@ module Completely
|
|
38
38
|
|
39
39
|
def show_compline(compline, filename: nil)
|
40
40
|
filename ||= 'completely-tester.sh'
|
41
|
-
say "
|
41
|
+
say "b`$` g`#{compline}`<tab>"
|
42
42
|
puts tester.test(compline).join "\n"
|
43
43
|
puts
|
44
44
|
|
45
45
|
return unless keep
|
46
46
|
|
47
47
|
File.write filename, tester_script(compline)
|
48
|
-
say "Saved
|
48
|
+
say "Saved m`#{filename}`"
|
49
49
|
end
|
50
50
|
|
51
51
|
def complines
|
data/lib/completely/version.rb
CHANGED
metadata
CHANGED
@@ -1,43 +1,49 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: completely
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danny Ben Shitrit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colsole
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.8.1
|
20
|
+
- - "<"
|
18
21
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
22
|
+
version: '2'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.8.1
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
32
|
+
version: '2'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: mister_bin
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
30
36
|
requirements:
|
31
37
|
- - "~>"
|
32
38
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.7
|
39
|
+
version: '0.7'
|
34
40
|
type: :runtime
|
35
41
|
prerelease: false
|
36
42
|
version_requirements: !ruby/object:Gem::Requirement
|
37
43
|
requirements:
|
38
44
|
- - "~>"
|
39
45
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.7
|
46
|
+
version: '0.7'
|
41
47
|
description: Generate bash completion scripts using simple YAML configuration
|
42
48
|
email: db@dannyben.com
|
43
49
|
executables:
|
@@ -52,6 +58,7 @@ files:
|
|
52
58
|
- lib/completely/commands/base.rb
|
53
59
|
- lib/completely/commands/generate.rb
|
54
60
|
- lib/completely/commands/init.rb
|
61
|
+
- lib/completely/commands/install.rb
|
55
62
|
- lib/completely/commands/preview.rb
|
56
63
|
- lib/completely/commands/test.rb
|
57
64
|
- lib/completely/completions.rb
|
@@ -81,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
88
|
- !ruby/object:Gem::Version
|
82
89
|
version: '0'
|
83
90
|
requirements: []
|
84
|
-
rubygems_version: 3.
|
91
|
+
rubygems_version: 3.4.12
|
85
92
|
signing_key:
|
86
93
|
specification_version: 4
|
87
94
|
summary: Bash Completions Generator
|