mosq 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -1
  3. data/lib/mosq.rb +0 -3
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 97ae637c67d2953c3121a5d7a4748c4f9f9efa9f
4
- data.tar.gz: 7529bcc6420f2588dad4aad2d121563fd6050cad
3
+ metadata.gz: 21993aa2570c0e86b76f8679f33418be1ee525aa
4
+ data.tar.gz: 2d8593a2f2a0aa5f3729cc8ad48037aca188d36f
5
5
  SHA512:
6
- metadata.gz: 60f70880e4eb12b253bbcfdc6ffe3328a890cb0498b57e287cee2ec993fb9d3616a70abc44fc05759915eb0c17bab0123ca382ec3eba181321c84093480ed098
7
- data.tar.gz: 65d8bf8cde66fa9b4ca959eb2060027e767a78e66e4934e961357dd3e57c892c2dcf63ab7e4473bf407451a3fd760960568bc44486e4ce65f78a5d55c46db9db
6
+ metadata.gz: dd8d5df58d1302edf916edda5c13a748c7a8dabdc9b6bae0940542fd7a56012bc1a3901d108e9b8e6d84a5f9b216a7a1e3c97e6e360ff8b03e837af5d4c0b1e3
7
+ data.tar.gz: d38f4c462b841f04209f04ad88f3a246a17985e897ed83f3f4ac435e896559dcb8b8cefecfca7ad970821f79fe2087e2eec0900a5c6716a6945f8da3359818a2
data/README.md CHANGED
@@ -1,9 +1,12 @@
1
1
  # mosq
2
2
 
3
- [![Build Status](https://circleci.com/gh/jemc/ruby-mosq/tree/master.svg?style=svg)](https://circleci.com/gh/jemc/ruby-mosq/tree/master) 
4
3
  [![Gem Version](https://badge.fury.io/rb/mosq.png)](http://badge.fury.io/rb/mosq) 
5
4
  [![Join the chat at https://gitter.im/jemc/ruby-mosq](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jemc/ruby-mosq?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6
5
 
7
6
  A Ruby [MQTT](http://mqtt.org/) client library based on [FFI](https://github.com/ffi/ffi/wiki) bindings for [libmosquitto](http://mosquitto.org/man/libmosquitto-3.html).
8
7
 
9
8
  ##### `$ gem install mosq`
9
+
10
+ ### System Requirements
11
+
12
+ The `mosq` gem requires `libffi-dev`, as well as the [requirements for building libmosquitto](http://git.eclipse.org/c/mosquitto/org.eclipse.mosquitto.git/tree/compiling.txt). Note that on Linux, the library will be built with `make`, though on Mac OS X `cmake` is required.
data/lib/mosq.rb CHANGED
@@ -8,6 +8,3 @@ require_relative 'mosq/client'
8
8
  # Call to initialize the library
9
9
  Mosq::Util.error_check "initializing the libmosquitto library",
10
10
  Mosq::FFI.mosquitto_lib_init
11
-
12
- # Call cleanup at exit clean up the library
13
- at_exit { Mosq::FFI.mosquitto_lib_cleanup }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mosq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joe McIlvain
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-01 00:00:00.000000000 Z
11
+ date: 2015-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi
@@ -150,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
150
150
  version: '0'
151
151
  requirements: []
152
152
  rubyforge_project:
153
- rubygems_version: 2.2.2
153
+ rubygems_version: 2.4.5
154
154
  signing_key:
155
155
  specification_version: 4
156
156
  summary: mosq