xmpp4r-simple
xmpp4r-simple copied to clipboard
Jabber::Simple
ruby 2.3.1 ``` bash gem install rcov Building native extensions. This could take a while... ERROR: Error installing rcov: ERROR: Failed to build gem native extension. compiling 1.8/callsite.c 1.8/callsite.c:2:17: fatal...
Right now if you want to connect with Jabber::Simple using a gmail address which doesn't end in @gmail.com (for example, if you're using google apps for domains), it will break,...
Added: - merged all branches with connection options and allow to set: host, port, allow_tls - random connection timeout as in RFC
see title
There's a fix for 1.9 in master, but no gem. Can you release a new version? Currently you have to install this ghetto version https://rubygems.org/gems/scashin133-xmpp4r-simple
http://code.google.com/p/xmpp4r-simple/ "Please note that the source has moved to GitHub: http://github.com/blaine/xmppr4-simple/" Also, you should ask http://xmpp.org/xmpp-software/libraries/ to link to the GitHub project page instead.
On http://code.google.com/p/xmpp4r-simple/ there is a pointer to the github repo. But the given url is: http://github.com/blaine/xmppr4-simple/ which is a 404.
Originally submitted by saimonmoore with a path included; please refer to http://code.google.com/p/xmpp4r-simple/issues/detail?id=6#makechanges Simple usage: im = Jabber::Simple.register(jid, passwd) - will try and register user on the server - if successfull,...
What steps will reproduce the problem? 1. try to send a message to user/resource using a string or a jid object. What is the expected output? What do you see...
This is directly related to: http://code.google.com/p/xmpp4r-simple/issues/detail?id=7#makechanges The culprit is start_deferred_delivery_thread with the following code: ``` def start_deferred_delivery_thread #:nodoc: Thread.new { loop { messages = [queue(:pending_messages).pop].flatten messages.each do |message| if subscribed_to?(message[:to])...