cmd_executable 0.1.10 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +31 -7
- data/cmd_executable.gemspec +5 -1
- data/exe/cmd_executable +3 -1
- data/lib/cmd_executable.rb +10 -7
- data/lib/cmd_executable/parser.rb +116 -0
- data/lib/cmd_executable/runner.rb +63 -0
- data/lib/cmd_executable/version.rb +1 -1
- metadata +47 -4
- data/.travis.yml +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: abe5b341ee72889b2f6fef8fb49674f4a264139c99930a568e454fa39f602595
|
4
|
+
data.tar.gz: 057b080db6987e538dde260cc789eb4033d4821f437da68baebd8bbdf9b52413
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 179e29ce611cb66c883b3619b46102a82356c8b76eee5060efdbd78b1363bd67abb5dc3adae80698fa7d9493aa868de0376312c92ada9f327bfc4af7375d9c7f
|
7
|
+
data.tar.gz: 7518809cc0626aa005aa844d881f4191e6e44cadb674f884873f2775860d498f0e4d4fd8e5a2fb6534ea2ed62448f36be6b79c7d943e6af1d4c1a026d0ddda7b
|
data/README.md
CHANGED
@@ -14,24 +14,48 @@ gem 'cmd_executable'
|
|
14
14
|
|
15
15
|
And then execute:
|
16
16
|
|
17
|
-
|
17
|
+
`$ bundle install`
|
18
18
|
|
19
19
|
Or install it yourself as:
|
20
20
|
|
21
|
-
|
21
|
+
`$ gem install cmd_executable`
|
22
22
|
|
23
23
|
## Usage
|
24
|
+
### as Module (include)
|
24
25
|
```
|
25
26
|
require 'cmd_executable'
|
26
27
|
|
27
28
|
class Klass
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
29
|
+
include CmdExecutable
|
30
|
+
|
31
|
+
def instance_method
|
32
|
+
executable?('/bin/ls')
|
33
|
+
executable?('ls')
|
34
|
+
executable?(:ls)
|
35
|
+
executable?('./bin/setup')
|
36
|
+
end
|
33
37
|
end
|
34
38
|
```
|
39
|
+
### as Module method
|
40
|
+
```
|
41
|
+
CmdExecutable.executable?('/bin/ls')
|
42
|
+
CmdExecutable.executable?('ls')
|
43
|
+
CmdExecutable.executable?(:ls)
|
44
|
+
CmdExecutable.executable?('./bin/setup')
|
45
|
+
```
|
46
|
+
|
47
|
+
### as CLI
|
48
|
+
Check executable? :
|
49
|
+
|
50
|
+
`$ cmd_executable -c [/path/to/command]`
|
51
|
+
or
|
52
|
+
`$ cmd_executable -c [../path/to/command]`
|
53
|
+
or
|
54
|
+
`$ cmd_executable -c [command]`
|
55
|
+
|
56
|
+
Show help :
|
57
|
+
|
58
|
+
`$ cmd_executable -h`
|
35
59
|
|
36
60
|
## Development
|
37
61
|
|
data/cmd_executable.gemspec
CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
16
16
|
|
17
17
|
spec.homepage = 'https://github.com/toshiki670/cmd_executable'
|
18
18
|
spec.license = 'MIT'
|
19
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 2.
|
19
|
+
spec.required_ruby_version = Gem::Requirement.new('>= 2.7.0')
|
20
20
|
|
21
21
|
spec.metadata['homepage_uri'] = spec.homepage
|
22
22
|
spec.metadata['source_code_uri'] = 'https://github.com/toshiki670/cmd_executable'
|
@@ -33,7 +33,11 @@ Gem::Specification.new do |spec|
|
|
33
33
|
|
34
34
|
spec.add_development_dependency 'bundler', '~> 2.1'
|
35
35
|
spec.add_development_dependency 'pry', '~> 0.13.1'
|
36
|
+
spec.add_development_dependency 'pry-doc', '~> 1.1'
|
36
37
|
spec.add_development_dependency 'rake', '~> 13.0'
|
37
38
|
spec.add_development_dependency 'rspec', '~> 3.9'
|
38
39
|
spec.add_development_dependency 'rubocop', '~> 0.85.0'
|
40
|
+
spec.add_development_dependency 'stream_capture', '~> 1.0'
|
41
|
+
|
42
|
+
spec.add_dependency 'thor', '~> 1.0'
|
39
43
|
end
|
data/exe/cmd_executable
CHANGED
data/lib/cmd_executable.rb
CHANGED
@@ -23,6 +23,8 @@
|
|
23
23
|
# THE SOFTWARE.
|
24
24
|
|
25
25
|
require 'English'
|
26
|
+
require 'cmd_executable/parser'
|
27
|
+
require 'cmd_executable/runner'
|
26
28
|
require 'cmd_executable/version'
|
27
29
|
|
28
30
|
# Command Executable
|
@@ -31,7 +33,7 @@ require 'cmd_executable/version'
|
|
31
33
|
# require 'cmd_executable'
|
32
34
|
#
|
33
35
|
# class Klass
|
34
|
-
# include
|
36
|
+
# include CmdExecutable
|
35
37
|
#
|
36
38
|
# def instance_method
|
37
39
|
# executable?('ls')
|
@@ -41,13 +43,14 @@ module CmdExecutable
|
|
41
43
|
class CmdExecutableError < StandardError; end
|
42
44
|
|
43
45
|
def executable?(command)
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
46
|
+
CmdExecutable.executable?(command)
|
47
|
+
end
|
48
|
+
|
49
|
+
def self.executable?(command)
|
50
|
+
parsed = CmdExecutable::Parser.new(command)
|
51
|
+
raise CmdExecutable::ParserError, parsed.raw unless parsed.validate?
|
49
52
|
|
50
|
-
`type
|
53
|
+
`type "#{parsed.command}" > /dev/null 2>&1`.yield_self do
|
51
54
|
$CHILD_STATUS.success?
|
52
55
|
end
|
53
56
|
end
|
@@ -0,0 +1,116 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# The MIT License (MIT)
|
4
|
+
#
|
5
|
+
# Copyright (c) 2020 Toshiki
|
6
|
+
#
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
# of this software and associated documentation files (the "Software"), to deal
|
9
|
+
# in the Software without restriction, including without limitation the rights
|
10
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
# copies of the Software, and to permit persons to whom the Software is
|
12
|
+
# furnished to do so, subject to the following conditions:
|
13
|
+
#
|
14
|
+
# The above copyright notice and this permission notice shall be included in
|
15
|
+
# all copies or substantial portions of the Software.
|
16
|
+
#
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
23
|
+
# THE SOFTWARE.
|
24
|
+
|
25
|
+
require 'English'
|
26
|
+
|
27
|
+
module CmdExecutable
|
28
|
+
class ParserError < StandardError; end
|
29
|
+
|
30
|
+
# Parser for CmdExecutable
|
31
|
+
class Parser
|
32
|
+
attr_reader :raw
|
33
|
+
|
34
|
+
def initialize(raw)
|
35
|
+
@raw = raw
|
36
|
+
@raw.freeze
|
37
|
+
end
|
38
|
+
|
39
|
+
def validate?
|
40
|
+
!@raw.nil? &&
|
41
|
+
command_class_validate? &&
|
42
|
+
!@raw.empty? &&
|
43
|
+
!include_invalid_char?
|
44
|
+
end
|
45
|
+
|
46
|
+
def command
|
47
|
+
parse if @command.nil?
|
48
|
+
@command
|
49
|
+
end
|
50
|
+
|
51
|
+
private
|
52
|
+
|
53
|
+
def command_class_validate?
|
54
|
+
@raw.is_a?(String) ||
|
55
|
+
@raw.is_a?(Symbol)
|
56
|
+
end
|
57
|
+
|
58
|
+
def include_invalid_char?
|
59
|
+
@raw.match?(/\r\n|\r|\n/) ||
|
60
|
+
@raw.match?(/\$\(.*\)/)
|
61
|
+
end
|
62
|
+
|
63
|
+
def parse
|
64
|
+
raise CmdExecutable::ParserError, @raw unless validate?
|
65
|
+
|
66
|
+
path = escape_char(@raw.to_s.chomp)
|
67
|
+
@dirname = parse_dirname(path)
|
68
|
+
@basename = parse_basename(path)
|
69
|
+
@command = @dirname + @basename
|
70
|
+
self
|
71
|
+
end
|
72
|
+
|
73
|
+
def no_separator_at_the_right_end_regex
|
74
|
+
/(?<!#{File::SEPARATOR})\Z/
|
75
|
+
end
|
76
|
+
|
77
|
+
def a_dot_only_regex
|
78
|
+
/\A\.\Z/
|
79
|
+
end
|
80
|
+
|
81
|
+
def current_path_at_the_left_regex
|
82
|
+
/\A\.#{File::SEPARATOR}/
|
83
|
+
end
|
84
|
+
|
85
|
+
def basename_exist?(path)
|
86
|
+
path.match?(no_separator_at_the_right_end_regex)
|
87
|
+
end
|
88
|
+
|
89
|
+
def no_right_separator_exists?(dir)
|
90
|
+
dir.match?(no_separator_at_the_right_end_regex)
|
91
|
+
end
|
92
|
+
|
93
|
+
def current_path?(path)
|
94
|
+
path.match?(current_path_at_the_left_regex)
|
95
|
+
end
|
96
|
+
|
97
|
+
def parse_dirname(path)
|
98
|
+
return path unless basename_exist?(path)
|
99
|
+
|
100
|
+
dir = File.dirname(path)
|
101
|
+
return '' if dir.match?(a_dot_only_regex) && !current_path?(path)
|
102
|
+
|
103
|
+
no_right_separator_exists?(dir) ? (dir + File::SEPARATOR) : dir
|
104
|
+
end
|
105
|
+
|
106
|
+
def parse_basename(path)
|
107
|
+
return '' unless basename_exist?(path)
|
108
|
+
|
109
|
+
File.basename(path).split.first
|
110
|
+
end
|
111
|
+
|
112
|
+
def escape_char(path)
|
113
|
+
path.gsub(/"/, '\"')
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# The MIT License (MIT)
|
4
|
+
#
|
5
|
+
# Copyright (c) 2020 Toshiki
|
6
|
+
#
|
7
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
8
|
+
# of this software and associated documentation files (the "Software"), to deal
|
9
|
+
# in the Software without restriction, including without limitation the rights
|
10
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
11
|
+
# copies of the Software, and to permit persons to whom the Software is
|
12
|
+
# furnished to do so, subject to the following conditions:
|
13
|
+
#
|
14
|
+
# The above copyright notice and this permission notice shall be included in
|
15
|
+
# all copies or substantial portions of the Software.
|
16
|
+
#
|
17
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
19
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
20
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
21
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
22
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
23
|
+
# THE SOFTWARE.
|
24
|
+
|
25
|
+
require 'cmd_executable'
|
26
|
+
require 'thor'
|
27
|
+
|
28
|
+
module CmdExecutable
|
29
|
+
# CLI Runner
|
30
|
+
#
|
31
|
+
# Usage on CLI:
|
32
|
+
# $ cmd_executable ls
|
33
|
+
# > OK
|
34
|
+
class Runner < Thor
|
35
|
+
include CmdExecutable
|
36
|
+
|
37
|
+
def self.exit_on_failure?
|
38
|
+
true
|
39
|
+
end
|
40
|
+
|
41
|
+
map '-c' => :check
|
42
|
+
|
43
|
+
desc '-c [/path/to/command]', "It's return true if given command usable on Linux."
|
44
|
+
def check(command = '')
|
45
|
+
if executable?(command)
|
46
|
+
puts 'OK'
|
47
|
+
exit 0
|
48
|
+
else
|
49
|
+
puts 'NOT FOUND'
|
50
|
+
exit 1
|
51
|
+
end
|
52
|
+
rescue CmdExecutable::ParserError => e
|
53
|
+
warn "Invalid command: `#{e.message}'"
|
54
|
+
exit 16
|
55
|
+
end
|
56
|
+
|
57
|
+
map %w[-v --version] => :version
|
58
|
+
desc '-v --version', 'Show version.'
|
59
|
+
def version
|
60
|
+
puts CmdExecutable::VERSION
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cmd_executable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Toshiki
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 0.13.1
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: pry-doc
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.1'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.1'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: rake
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,6 +94,34 @@ dependencies:
|
|
80
94
|
- - "~>"
|
81
95
|
- !ruby/object:Gem::Version
|
82
96
|
version: 0.85.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: stream_capture
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '1.0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '1.0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: thor
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '1.0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '1.0'
|
83
125
|
description: |2
|
84
126
|
This module adds a method "executable?(command)".
|
85
127
|
it's return true if given command usable on Linux.
|
@@ -94,7 +136,6 @@ files:
|
|
94
136
|
- ".github/workflows/ruby_check.yml"
|
95
137
|
- ".gitignore"
|
96
138
|
- ".rubocop.yml"
|
97
|
-
- ".travis.yml"
|
98
139
|
- CODE_OF_CONDUCT.md
|
99
140
|
- Gemfile
|
100
141
|
- LICENSE
|
@@ -105,6 +146,8 @@ files:
|
|
105
146
|
- cmd_executable.gemspec
|
106
147
|
- exe/cmd_executable
|
107
148
|
- lib/cmd_executable.rb
|
149
|
+
- lib/cmd_executable/parser.rb
|
150
|
+
- lib/cmd_executable/runner.rb
|
108
151
|
- lib/cmd_executable/version.rb
|
109
152
|
homepage: https://github.com/toshiki670/cmd_executable
|
110
153
|
licenses:
|
@@ -121,7 +164,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
121
164
|
requirements:
|
122
165
|
- - ">="
|
123
166
|
- !ruby/object:Gem::Version
|
124
|
-
version: 2.
|
167
|
+
version: 2.7.0
|
125
168
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
126
169
|
requirements:
|
127
170
|
- - ">="
|