From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/test/lib/find_executable.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 jni/ruby/test/lib/find_executable.rb (limited to 'jni/ruby/test/lib/find_executable.rb') diff --git a/jni/ruby/test/lib/find_executable.rb b/jni/ruby/test/lib/find_executable.rb new file mode 100644 index 0000000..4ba9a05 --- /dev/null +++ b/jni/ruby/test/lib/find_executable.rb @@ -0,0 +1,21 @@ +require "rbconfig" + +module EnvUtil + def find_executable(cmd, *args) + exts = RbConfig::CONFIG["EXECUTABLE_EXTS"].split | [RbConfig::CONFIG["EXEEXT"]] + ENV["PATH"].split(File::PATH_SEPARATOR).each do |path| + next if path.empty? + path = File.join(path, cmd) + exts.each do |ext| + cmdline = [path + ext, *args] + begin + return cmdline if yield(IO.popen(cmdline, "r", err: [:child, :out], &:read)) + rescue + next + end + end + end + nil + end + module_function :find_executable +end -- cgit v1.2.3