paho-mqtt 1.0.0 → 1.0.1

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.
@@ -1,3 +1,3 @@
1
1
  module PahoMqtt
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paho-mqtt
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pierre Goudet
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-01-29 00:00:00.000000000 Z
11
+ date: 2017-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -64,13 +64,14 @@ files:
64
64
  - ".travis.yml"
65
65
  - CODE_OF_CONDUCT.md
66
66
  - Gemfile
67
- - LICENSE.txt
68
67
  - README.md
69
68
  - Rakefile
70
69
  - bin/console
71
70
  - bin/setup
72
71
  - lib/paho-mqtt.rb
73
72
  - lib/paho_mqtt/client.rb
73
+ - lib/paho_mqtt/connection_helper.rb
74
+ - lib/paho_mqtt/handler.rb
74
75
  - lib/paho_mqtt/packet.rb
75
76
  - lib/paho_mqtt/packet/base.rb
76
77
  - lib/paho_mqtt/packet/connack.rb
@@ -87,6 +88,10 @@ files:
87
88
  - lib/paho_mqtt/packet/subscribe.rb
88
89
  - lib/paho_mqtt/packet/unsuback.rb
89
90
  - lib/paho_mqtt/packet/unsubscribe.rb
91
+ - lib/paho_mqtt/publisher.rb
92
+ - lib/paho_mqtt/sender.rb
93
+ - lib/paho_mqtt/ssl_helper.rb
94
+ - lib/paho_mqtt/subscriber.rb
90
95
  - lib/paho_mqtt/version.rb
91
96
  - paho-mqtt.gemspec
92
97
  - samples/client_blocking(writing).rb
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2016 Pierre Goudet
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.