0.0
No commit activity in last 3 years
No release in over 3 years
Modern Ruby library that implements the MQTT protocol, a lightweight protocol for publish/subscribe messaging.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.11.2
>= 13.0.1
>= 3.9.0
~> 0.80.1
>= 0.18.5
>= 0.9.20
 Project Readme

Qubitro Ruby MQTT Client Library

Ruby client library that implements the MQTT protocol, a lightweight protocol for publish/subscribe messaging.

Actions Status Gem Version

Example

require 'qubitro-mqtt'

MQTT::Client.connect(
  :host => host,
  :port => 1883,
  :client_id => deviceID,
  :device_id => deviceID,
  :device_token => device_token,
  :ack_timeout => 15,
  :will_topic => deviceID,
  :will_payload => payload,
) do |client|
  puts 'connected'
end 

Visit Qubitro documentation