这是我的代码:
require 'xmpp4r/client'
jid = Jabber::JID::new('some.other@gmail.com/Home')
cl = Jabber::Client::new(jid)
cl.connect
cl.auth('pass')
cl.send(Jabber::Presence.new.set_show(:chat).set_status('my_status'))
#cl.send Jabber::Presence::new
salutation = Jabber::Message::new( 'here.again@gmail.com', '' )
salutation.set_type(:chat).set_id('1')
cl.send salutation
while 1
end
但是当我关闭聊天窗口时,jabber-bot会离线。我怎样才能保持在线状态?