cmd_executable 0.1.8 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5ea980a7333175768f46f2280975fc3e83e27da85d4ceece524788d7493eae3
4
- data.tar.gz: 77a169245a60ff3c05a64a67225d15f0389a6ec28b1796420ddaeab3449d2fdc
3
+ metadata.gz: 9eb46221d3ed8c07d273bc3d2590dc588d9b647821aa30878570aab30e95f583
4
+ data.tar.gz: 85e9a6bf88a681af1a74edc1974f6eb10d786f8973a54197d9824b74179de5da
5
5
  SHA512:
6
- metadata.gz: 5c81df74d0d61a19794e66096578216f7c3089d4aa389e12d4ef6dad4e81f6c85f4bae9d7c1194ea6fff742451a54a339682a3b2da7cc4a4303b701006f79136
7
- data.tar.gz: 46284763fa3f13ec196be342e00cf0b3ead3438992e0109a714a65347a34144fff4a1434ad164418c8526c33b070425cce3ae59b2dfc6358a56435667a76ea73
6
+ metadata.gz: b07679a1c1e9f161962c932347d855363416274276a993d55d03eec1242b98e92a3c9f98f1cf3583a2dcb401fc9de68930d8e6e9181d4932ca64662b7c8d44b0
7
+ data.tar.gz: '087e5ddeb2a3a923097c5b9c28cf86a5355df624c7a5b48dce0b970d6e712a3a447f4bf9d77b600b67c5ce0f276d0cdf87ab9eee8624ae0c64b590cf082d8a88'
data/README.md CHANGED
@@ -14,24 +14,48 @@ gem 'cmd_executable'
14
14
 
15
15
  And then execute:
16
16
 
17
- $ bundle install
17
+ `$ bundle install`
18
18
 
19
19
  Or install it yourself as:
20
20
 
21
- $ gem install cmd_executable
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
- include 'CmdExecutable'
29
-
30
- def instance_method
31
- executable?('ls')
32
- end
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
 
@@ -14,9 +14,9 @@ Gem::Specification.new do |spec|
14
14
  it's return true if given command usable on Linux.
15
15
  DESC
16
16
 
17
- spec.homepage = 'https://github.com/toshiki670/cmd_executable/wiki'
17
+ spec.homepage = 'https://github.com/toshiki670/cmd_executable'
18
18
  spec.license = 'MIT'
19
- spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
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,10 @@ 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
+
41
+ spec.add_dependency 'thor', '~> 1.0'
39
42
  end
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'cmd_executable'
4
+ require 'cmd_executable/runner'
5
+
6
+ CmdExecutable::Runner.start(ARGV)
@@ -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 'CmdExecutable'
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
- path = File.split(command).yield_self do |dirname, basename|
45
- dirname = File.absolute_path?(dirname) ? dirname : ''
46
- dirname += File::SEPARATOR if dirname.rindex(File::SEPARATOR)
47
- dirname + basename.split.first
48
- end
46
+ CmdExecutable.executable?(command)
47
+ end
48
+
49
+ def self.executable?(command)
50
+ parsed = CmdExecutable::Parser.new(command)
51
+ raise ArgumentError unless parsed.validate?
49
52
 
50
- `type '#{path}' > /dev/null 2>&1`.yield_self do
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,96 @@
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
+ def initialize(raw)
33
+ @raw = raw
34
+ @raw.freeze
35
+ end
36
+
37
+ def validate?
38
+ !@raw.nil? &&
39
+ command_class_validate? &&
40
+ !@raw.empty?
41
+ end
42
+
43
+ def command
44
+ parse if @command.nil?
45
+ @command
46
+ end
47
+
48
+ private
49
+
50
+ def command_class_validate?
51
+ @raw.is_a?(String) ||
52
+ @raw.is_a?(Symbol)
53
+ end
54
+
55
+ def parse
56
+ raise CmdExecutable::ParserError unless validate?
57
+
58
+ path = @raw.to_s.chomp
59
+ @dirname = parse_dirname(path)
60
+ @basename = parse_basename(path)
61
+ @command = @dirname + @basename
62
+ self
63
+ end
64
+
65
+ def no_separator_at_the_right_end_regex
66
+ /(?<!#{File::SEPARATOR})\Z/
67
+ end
68
+
69
+ def a_dot_only_regex
70
+ /\A\.\Z/
71
+ end
72
+
73
+ def basename_exist?(path)
74
+ path.match?(no_separator_at_the_right_end_regex)
75
+ end
76
+
77
+ def no_right_separator_exists?(dir)
78
+ dir.match?(no_separator_at_the_right_end_regex)
79
+ end
80
+
81
+ def parse_dirname(path)
82
+ return path unless basename_exist?(path)
83
+
84
+ dir = File.dirname(path)
85
+ return '' if dir.match?(a_dot_only_regex)
86
+
87
+ no_right_separator_exists?(dir) ? (dir + File::SEPARATOR) : dir
88
+ end
89
+
90
+ def parse_basename(path)
91
+ return '' unless basename_exist?(path)
92
+
93
+ File.basename(path).split.first
94
+ end
95
+ end
96
+ end
@@ -0,0 +1,56 @@
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
+ map '-c' => :check
38
+
39
+ desc '-c [/path/to/command]', "It's return true if given command usable on Linux."
40
+ def check(command = '')
41
+ if executable?(command)
42
+ puts 'OK'
43
+ exit 0
44
+ else
45
+ puts 'NOT FOUND'
46
+ exit 1
47
+ end
48
+ end
49
+
50
+ map %w[-v --version] => :version
51
+ desc '-v --version', 'Show version.'
52
+ def version
53
+ puts CmdExecutable::VERSION
54
+ end
55
+ end
56
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CmdExecutable
4
- VERSION = '0.1.8'
4
+ VERSION = '1.1.0'
5
5
  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: 0.1.8
4
+ version: 1.1.0
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-04 00:00:00.000000000 Z
11
+ date: 2020-06-08 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,20 @@ dependencies:
80
94
  - - "~>"
81
95
  - !ruby/object:Gem::Version
82
96
  version: 0.85.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: thor
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '1.0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '1.0'
83
111
  description: |2
84
112
  This module adds a method "executable?(command)".
85
113
  it's return true if given command usable on Linux.
@@ -94,7 +122,6 @@ files:
94
122
  - ".github/workflows/ruby_check.yml"
95
123
  - ".gitignore"
96
124
  - ".rubocop.yml"
97
- - ".travis.yml"
98
125
  - CODE_OF_CONDUCT.md
99
126
  - Gemfile
100
127
  - LICENSE
@@ -105,12 +132,14 @@ files:
105
132
  - cmd_executable.gemspec
106
133
  - exe/cmd_executable
107
134
  - lib/cmd_executable.rb
135
+ - lib/cmd_executable/parser.rb
136
+ - lib/cmd_executable/runner.rb
108
137
  - lib/cmd_executable/version.rb
109
- homepage: https://github.com/toshiki670/cmd_executable/wiki
138
+ homepage: https://github.com/toshiki670/cmd_executable
110
139
  licenses:
111
140
  - MIT
112
141
  metadata:
113
- homepage_uri: https://github.com/toshiki670/cmd_executable/wiki
142
+ homepage_uri: https://github.com/toshiki670/cmd_executable
114
143
  source_code_uri: https://github.com/toshiki670/cmd_executable
115
144
  changelog_uri: https://github.com/toshiki670/cmd_executable/releases
116
145
  post_install_message:
@@ -121,7 +150,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
121
150
  requirements:
122
151
  - - ">="
123
152
  - !ruby/object:Gem::Version
124
- version: 2.3.0
153
+ version: 2.7.0
125
154
  required_rubygems_version: !ruby/object:Gem::Requirement
126
155
  requirements:
127
156
  - - ">="
@@ -1,6 +0,0 @@
1
- ---
2
- language: ruby
3
- cache: bundler
4
- rvm:
5
- - 2.7.1
6
- before_install: gem install bundler -v 2.1.4