fritzbox-smarthome 0.1.2 → 0.1.3
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/.ruby-version +1 -1
- data/CHANGELOG.md +17 -0
- data/Gemfile +2 -0
- data/lib/fritzbox/smarthome/actor.rb +1 -1
- data/lib/fritzbox/smarthome/version.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 782cdee20c938c01c4ee6f6560e05f7a7636d8b9315e6c63f577959e3df85f45
|
|
4
|
+
data.tar.gz: a33ea016b04d0a710d13e0e1089850d74f1d16f14e9346683fac961640be2851
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af9c5ed89753c194f8eefaf29dcf4893e9f68c99e7595cb95196b778b9bdbce2a7a6e2efa0b650ddf52f5fccab2e19f0bd065be68a4d805f1f94b96990a6fd61
|
|
7
|
+
data.tar.gz: 4aabacf20397befaf87d069307e2bc525bfaee04ecae6563d63ee4b1c6487f62ede5f75d850257e63fecf87ade33c21b7ef85877a00de4fde861b763b0fb7137
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3.0.0
|
data/CHANGELOG.md
ADDED
data/Gemfile
CHANGED
|
@@ -20,7 +20,7 @@ module Fritzbox
|
|
|
20
20
|
response = get(command: 'getdevicelistinfos')
|
|
21
21
|
xml = nori.parse(response.body)
|
|
22
22
|
|
|
23
|
-
Array.wrap(types.map { |type| xml.dig('devicelist', type) }.flatten).map do |data|
|
|
23
|
+
Array.wrap(types.map { |type| xml.dig('devicelist', type) }.flatten).compact.map do |data|
|
|
24
24
|
new_from_api(data)
|
|
25
25
|
end
|
|
26
26
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fritzbox-smarthome
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Klaus Meyer
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -160,6 +160,7 @@ files:
|
|
|
160
160
|
- ".rspec"
|
|
161
161
|
- ".ruby-gemset"
|
|
162
162
|
- ".ruby-version"
|
|
163
|
+
- CHANGELOG.md
|
|
163
164
|
- Gemfile
|
|
164
165
|
- LICENSE.txt
|
|
165
166
|
- README.md
|
|
@@ -175,7 +176,7 @@ homepage: https://github.com/klausmeyer/fritzbox-smarthome
|
|
|
175
176
|
licenses:
|
|
176
177
|
- MIT
|
|
177
178
|
metadata: {}
|
|
178
|
-
post_install_message:
|
|
179
|
+
post_install_message:
|
|
179
180
|
rdoc_options: []
|
|
180
181
|
require_paths:
|
|
181
182
|
- lib
|
|
@@ -190,8 +191,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
190
191
|
- !ruby/object:Gem::Version
|
|
191
192
|
version: '0'
|
|
192
193
|
requirements: []
|
|
193
|
-
rubygems_version: 3.1.
|
|
194
|
-
signing_key:
|
|
194
|
+
rubygems_version: 3.1.2
|
|
195
|
+
signing_key:
|
|
195
196
|
specification_version: 4
|
|
196
197
|
summary: Client library to interface with Smarthome features of your FritzBox
|
|
197
198
|
test_files: []
|