Sha256: 4c1571b9b4d9ac1284831f72951e64e54445c0c3f76632751659e905ecbecfc5

Contents?: true

Size: 1.03 KB

Versions: 6500

Compression:

Stored size: 1.03 KB

Contents

# 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

Version data entries

6,500 entries across 6,496 versions & 33 rubygems

Version Path
passbase-1.0.0 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.3/lib/byebug/helpers/bin.rb
metanorma-cli-1.3.4 gems/ruby/2.6.0/gems/byebug-10.0.2/lib/byebug/helpers/bin.rb
metanorma-cli-1.3.3.1 gems/ruby/2.6.0/gems/byebug-10.0.2/lib/byebug/helpers/bin.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/byebug-11.1.3/lib/byebug/helpers/bin.rb
byebug-11.1.3 lib/byebug/helpers/bin.rb
byebug-11.1.2 lib/byebug/helpers/bin.rb
talon_one-2.0.0 vendor/bundle/ruby/2.3.0/gems/byebug-11.0.1/lib/byebug/helpers/bin.rb
talon_one-2.0.0 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/bin.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/bin.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/helpers/bin.rb
byebug-11.1.1 lib/byebug/helpers/bin.rb
byebug-11.1.0 lib/byebug/helpers/bin.rb
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/byebug-11.0.1/lib/byebug/helpers/bin.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/byebug-11.0.1/lib/byebug/helpers/bin.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/byebug-11.0.1/lib/byebug/helpers/bin.rb
dadapush_client-1.0.1 vendor/bundle/ruby/2.3.0/gems/byebug-10.0.2/lib/byebug/helpers/bin.rb
byebug-11.0.1 lib/byebug/helpers/bin.rb
byebug-11.0.0 lib/byebug/helpers/bin.rb
byebug-10.0.2 lib/byebug/helpers/bin.rb
byebug-10.0.1 lib/byebug/helpers/bin.rb