# File lib/gitlab/help.rb, line 47
    def help_map
      @help_map ||= begin
        actions.each_with_object({}) do |action, hsh|
          key = client.method(action).
                owner.to_s.gsub(/Gitlab::(?:Client::)?/, '')
          hsh[key] ||= []
          hsh[key] << action.to_s
        end
      end
    end