9

たとえば、 andhubot statusを呼び出す必要があるなど、ある種のエイリアスを実行したい。hubot newrelic mehubot gauges for today

`msg.send "hubot newrelic me" のようなことをしようとしましたが、hubot はメッセージを無視しているようです。

どうやってやるの?

4

1 に答える 1

11

イベントを使用して、スクリプトを相互に対話させることができます。

 robot.emit 'event', param

 robot.on 'event', (param) ->
   console.log 'received param', param

詳細はこちら: https://leanpub.com/automation-and-monitoring-with-hubot/read#leanpub-auto-cross-script-communication-with-events

于 2014-02-27T05:48:27.887 に答える