biscuit-monitor 0.0.3 → 0.0.4
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.
data/lib/biscuit-monitor/cinr.rb
CHANGED
@@ -13,7 +13,7 @@ module Biscuit
|
|
13
13
|
begin
|
14
14
|
|
15
15
|
ss = SignalStrength.new(@device_ip)
|
16
|
-
ss.exec
|
16
|
+
@response = ss.exec
|
17
17
|
|
18
18
|
message = ''
|
19
19
|
message << ss.cinr
|
@@ -40,11 +40,13 @@ module Biscuit
|
|
40
40
|
|
41
41
|
write "Cannot find the biscuit. Check your connection. Tail #{LOG_FILE} for details."
|
42
42
|
LOGGER.error(err.inspect)
|
43
|
+
LOGGER.debug(@response.inspect)
|
43
44
|
|
44
45
|
rescue StandardError => err
|
45
46
|
|
46
47
|
write "There was an error talking to your biscuit. Tail #{LOG_FILE} for details."
|
47
48
|
LOGGER.error(err.inspect)
|
49
|
+
LOGGER.debug(@response.inspect)
|
48
50
|
|
49
51
|
ensure
|
50
52
|
|
data/lib/biscuit-monitor/rssi.rb
CHANGED
@@ -35,7 +35,7 @@ module Biscuit
|
|
35
35
|
|
36
36
|
def parse(document)
|
37
37
|
data = {}
|
38
|
-
hash =
|
38
|
+
hash = raw_hash(document)
|
39
39
|
hash.delete(:list)
|
40
40
|
hash.each do |k, v|
|
41
41
|
data[k] = if v.class == String && /^-?\d+$/ =~ v
|
@@ -57,6 +57,10 @@ module Biscuit
|
|
57
57
|
data
|
58
58
|
end
|
59
59
|
|
60
|
+
def raw_hash(document)
|
61
|
+
@raw ||= MultiJson.decode(document, symbolize_keys: true)
|
62
|
+
end
|
63
|
+
|
60
64
|
def parse_javascript_to_json(document)
|
61
65
|
document = document.downcase.split.join
|
62
66
|
document.gsub!(/'/, '"')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: biscuit-monitor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -169,12 +169,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
169
169
|
- - ! '>='
|
170
170
|
- !ruby/object:Gem::Version
|
171
171
|
version: '0'
|
172
|
+
segments:
|
173
|
+
- 0
|
174
|
+
hash: -3092619447487886151
|
172
175
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
173
176
|
none: false
|
174
177
|
requirements:
|
175
178
|
- - ! '>='
|
176
179
|
- !ruby/object:Gem::Version
|
177
180
|
version: '0'
|
181
|
+
segments:
|
182
|
+
- 0
|
183
|
+
hash: -3092619447487886151
|
178
184
|
requirements: []
|
179
185
|
rubyforge_project:
|
180
186
|
rubygems_version: 1.8.24
|