# File lib/gitlab/help.rb, line 33
    def ri_cmd
      which_ri = `which ri`.chomp
      if which_ri.empty?
        fail "'ri' tool not found in $PATH. Please install it to use the help."
      end

      which_ri
    end