Module: Cliver::Which::Windows
- Defined in:
- lib/cliver/which/windows.rb
Overview
Windows-specific implementation of Which Required and mixed into Cliver::Which in windows environments
Instance Method Summary collapse
-
#which(executable) ⇒ nil, String
-
path to found executable.
-
Instance Method Details
#which(executable) ⇒ nil, String
Returns - path to found executable.
12 13 14 15 16 17 18 19 20 |
# File 'lib/cliver/which/windows.rb', line 12 def which(executable) # `where` returns newline-separated files found on path, but doesn't # ensure that they are executable as commands. where, _ = Open3.capture2e('where', executable) where.split("\n").find do |found| next if found.empty? File.executable?(found) end end |