class CliController

Public Class Methods

find_executable(executable) click to toggle source
# File lib/cli_controller.rb, line 20
def self.find_executable(executable)
  `which #{executable}`
  $?.success?
end
print_versions(distro) click to toggle source