我正在尝试为hubot的未知命令调用hubot帮助。如何从hubot测试等其他命令调用hubot帮助。由于我使用来自外部脚本文件的hubot帮助。我无法在其中添加robot.on。我怎么能这样做?
答案 0 :(得分:0)
我无法找到确切的解决方案。但是,获取帮助命令的以下解决方法有效
helpCommands = robot.helpCommands() + '';
test = helpCommands.split(',');
for j in test
msg.send "#{j}"