Method: Jabber::Framework::Bot#send_message

Defined in:
lib/vendor/xmpp4r/lib/xmpp4r/framework/bot.rb

#send_message(to, text) ⇒ Object

Send a simple text chat message



95
96
97
98
99
100
101
# File 'lib/vendor/xmpp4r/lib/xmpp4r/framework/bot.rb', line 95

def send_message(to, text)
  msg = Message.new
  msg.type = :chat
  msg.to = to
  msg.body = text
  @stream.send(msg)
end