ruby-mqtt icon indicating copy to clipboard operation
ruby-mqtt copied to clipboard

Pure Ruby gem that implements the MQTT protocol, a lightweight protocol for publish/subscribe messaging.

Results 42 ruby-mqtt issues
Sort by recently updated
recently updated
newest added

Support for local persistence for a message queue is a requirement before QoS 2 can be implemented.

…hat the openssl_fix.rb file passes. As [referenced here](https://github.com/njh/ruby-mqtt/issues/143), this should fix CI which broke in https://github.com/njh/ruby-mqtt/pull/139. Let me know if you'd prefer to keep this rule and I will update...

I'm using this in a sidekiq job (not the best place for it I realize, in the name of time I'm not daemonizing) The only thing is, is there a...

Added tls hostname verification to avoid man in the middle attacks Can be turned on or off with the verify_host option.

Hello, thanks a lot for the great gem :) Is there a new released planned? The latest one is from 2017, and there were some useful fixes in the meanwhile....

Upgrade the version so latest code is pulled when loading dependencies

- May require some API changes. - Support for local persistence of message queue.

I'm using this library to connect to AWS IoT -- works great! However, from time to time, I guess there's some sort of disruption in the connection (don't really have...

With this simple implementation, I get an exception after broker goes down for some reason. ``` client.subscribe('test' => 0) client.get do |topic, message| # Block is executed for every message...