# File lib/cliver.rb, line 57
  def self.verify!(executable, *args, &block)
    unless File.absolute_path?(executable)
      raise ArgumentError, "executable path must be absolute, " +
                           "got '#{executable.inspect}'."
    end
    Dependency::new(executable, *args, &block).detect!
  end