cmd_executable 0.1.10 → 1.0.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: 6ce5fd019de148751a28b2194e37a0dec11e33c3cdd719166a6fca3649e2503f
4
- data.tar.gz: 065f28effc5cb309f5d30c7d9e82657ed9e2c1a5847601cea2c13eb502a9fdce
3
+ metadata.gz: 946605fbae86fd31435538a3a032333fd66673b5667e11f20d8c5c5001a5f7f7
4
+ data.tar.gz: 85ddeaf7c6f07a9d95dbf6d634967c5ad863660c4fa545fe64181d1d27712de8
5
5
  SHA512:
6
- metadata.gz: f5e0c6c721becae2ce0245faeb7af15f4637a6c2b621b35085b8c5e856438ab170bbb328f25c2e7eb943c530014a2aac1921073a22671403f3cc061c8b9190ad
7
- data.tar.gz: d3ef5f7f5cfcaa2fa33a1940d5d333296302c0ee5a5f5d916dd7afc4d2f217baaeb25b63ec0371c4702122fd1554e57a0fb2d03e48585ccfab8f97526e44061a
6
+ metadata.gz: 788cf46157ad006a44a6df48d5981393660be6c4b12c62b34afbb58e3864c8ac5e6085b31c942cb49f33d60fc7a6efdab9862e571c41a94d671e6842c3ba284d
7
+ data.tar.gz: 45a773c916e5a7b5b6d2db49f4806307d0920be70303f837c5c6269c72132723e734b9ca9e4b88b291d464c3023f666e2cfda7de63d783ec596b67f9ca5c62ac
data/README.md CHANGED
@@ -14,13 +14,14 @@ 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
24
25
  ```
25
26
  require 'cmd_executable'
26
27
 
@@ -32,6 +33,18 @@ class Klass
32
33
  end
33
34
  end
34
35
  ```
36
+ ### as CLI
37
+ Check executable? :
38
+
39
+ `$ cmd_executable -c [/path/to/command]`
40
+ or
41
+ `$ cmd_executable -c [../path/to/command]`
42
+ or
43
+ `$ cmd_executable -c [command]`
44
+
45
+ Show help :
46
+
47
+ `$ cmd_executable -h`
35
48
 
36
49
  ## Development
37
50
 
@@ -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.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
@@ -41,13 +43,10 @@ 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
+ parsed = CmdExecutable::Parser.new(command)
47
+ raise ArgumentError unless parsed.validate?
49
48
 
50
- `type '#{path}' > /dev/null 2>&1`.yield_self do
49
+ `type '#{parsed.command}' > /dev/null 2>&1`.yield_self do
51
50
  $CHILD_STATUS.success?
52
51
  end
53
52
  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
+ STDOUT.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.10'
4
+ VERSION = '1.0.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.10
4
+ version: 1.0.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-07 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,6 +132,8 @@ 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
138
  homepage: https://github.com/toshiki670/cmd_executable
110
139
  licenses:
@@ -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