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

Currently, `MQTT::Client#key=` or `MQTT::Client#key_file=` treat a key or a file as an RSA key. I would like to use an EC key as well.

By specifying as follows, you can now specify the timeout time in seconds when MQTTClient opens a TCPSocket. ~~~ ruby client = MQTT::Client.connect( :host => 'myserver.example.com', :connect_timeout => 15 )...