google 云消息服务的 xmpp ruby 客户端

xmpp ruby client for google cloud messaging service

我正尝试在 Ruby 中为 GCM CCS 编写一个 xmpp 实现。 我的代码

require 'xmpp4r'

sender_jid = Jabber::JID.new('my_app_id@gcm.googleapis.com')
client = Jabber::Client.new(sender_jid)
client.connect('gcm.googleapis.com', 5235)
client.auth('auth_token')

在 client.connect 之后....我得到这个错误:

fatal: No live threads left. Deadlock?

有什么想法吗?

client.use_ssl = true

解决这个问题