File: bin.rb

package info (click to toggle)
ruby-byebug 11.1.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,252 kB
  • sloc: ruby: 8,835; ansic: 1,662; sh: 6; makefile: 4
file content (47 lines) | stat: -rw-r--r-- 1,059 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true

module Byebug
  module Helpers
    #
    # Utilities for interaction with executables
    #
    module BinHelper
      #
      # Cross-platform way of finding an executable in the $PATH.
      # Adapted from: https://gist.github.com/steakknife/88b6c3837a5e90a08296
      #
      def which(cmd)
        return File.expand_path(cmd) if File.exist?(cmd)

        [nil, *search_paths].each do |path|
          exe = find_executable(path, cmd)
          return exe if exe
        end

        nil
      end

      def find_executable(path, cmd)
        executable_file_extensions.each do |ext|
          exe = File.expand_path(cmd + ext, path)

          return exe if real_executable?(exe)
        end

        nil
      end

      def search_paths
        ENV["PATH"].split(File::PATH_SEPARATOR)
      end

      def executable_file_extensions
        ENV["PATHEXT"] ? ENV["PATHEXT"].split(";") : [""]
      end

      def real_executable?(file)
        File.executable?(file) && !File.directory?(file)
      end
    end
  end
end