tplink_smarthome_api 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/tplink_smarthome_api.rb +1 -1
- data/lib/tplink_smarthome_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e54c4617270e91e6816842fc7da48765db6433aed55160eb81f30580809cfab3
|
4
|
+
data.tar.gz: 0fda84a3de6e2eb89ce93ad672ce417a928bde8616bdcba1440a17b0bf0a14b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d8aaf630b3b661def3143b1470cbc200756c2ecefe125006376a1ea6cd39bfddfb217d7e8e90f55560d675e7f04efd755f77c0f7304937c024d2c9ad0806676
|
7
|
+
data.tar.gz: bd9a7cbc9db1d08f50f58a981ee3039a6d9a0aa6967a80b51a5b96b164f95a9453476b172abadcf9d02915f573eeba35bdecc57392dac92ff13df4a751372135
|
data/Gemfile.lock
CHANGED
data/lib/tplink_smarthome_api.rb
CHANGED
@@ -5,7 +5,7 @@ class TplinkSmarthomeApi
|
|
5
5
|
attr_accessor :ip_address, :verbose
|
6
6
|
|
7
7
|
def initialize(ip_address, verbose: false)
|
8
|
-
raise RuntimeError unless self.
|
8
|
+
raise RuntimeError unless self.class.dependencies_met?
|
9
9
|
@ip_address = ip_address
|
10
10
|
@verbose = verbose
|
11
11
|
end
|