lora-rb 0.12.0 → 0.13.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/lora-rb/mqtt/call.rb +1 -1
- data/lib/version.rb +4 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c69af1bb8d861091a38f5520a8e5363283da9c7c
|
|
4
|
+
data.tar.gz: be29e3ee50a7c565592c1edbd3f3f4f33c17ee56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8f950c4d83d6b92c2cc16077f644d6de03ef0e61fea00530bfe94a985c761c95045cf1e12aba1f0c73c9b8b54355f12a323f888cd1cfa586ab2ceee4b799750
|
|
7
|
+
data.tar.gz: d7c5730946bee3ad5eadb5ebcc412329a5a3347403e2b262fcf469e4bb0cf14e7d222070c8be2a40c411aebc38793da00413d8fd8cd9f021d20f162ba9b34b9e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
v0.
|
|
1
|
+
v0.13.0 [☰](https://bitbucket.org/fractalgarden/loriot-rb/branches/compare/v0.12.0..v0.13.0) September 12th, 2017
|
|
2
|
+
------------------------------
|
|
3
|
+
* Mqtt: in the send_cmd, qos parameter is not set by default anymore
|
|
4
|
+
|
|
5
|
+
v0.12.0 [☰](https://bitbucket.org/fractalgarden/loriot-rb/branches/compare/v0.11.0..v0.12.0) August 28th, 2017
|
|
2
6
|
------------------------------
|
|
3
7
|
* Mqtt:
|
|
4
8
|
* send_cmd doesn't use thread anymore. Now it subscribes each topics then read data,
|
data/lib/lora-rb/mqtt/call.rb
CHANGED
|
@@ -53,7 +53,7 @@ module LoraRb
|
|
|
53
53
|
"confirmed": options[:confirmed], # (Optional) Tells whether a confirmed downlink is requested. Default: false
|
|
54
54
|
"window": options[:window] || "BOTH", # (Optional) Specifies which rx window should be used: RX1, RX2 or any(BOTH). Default: BOTH
|
|
55
55
|
"priority": options[:priority] || 0, # (Optional) Message priority, used to sort messages in the queue. Default: 0
|
|
56
|
-
|
|
56
|
+
#"qos": options[:qos] || 1 # (Optional) Quality Of Service:
|
|
57
57
|
# 0 - Best effort. The message will be transmitted to the devices
|
|
58
58
|
# of the group that satisfy the multicast profile requirements
|
|
59
59
|
# (they should have been activated and have sent at least one
|
data/lib/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lora-rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Marco Mastrodonato
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2017-
|
|
13
|
+
date: 2017-09-12 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: json
|