waterfurnace_aurora 0.6.3 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51e71af5b02e79794595bc3b8590a2f89a8031a4f4ee3de688e18d8d52a5eedc
4
- data.tar.gz: 5855a44d55602795f841fc1928bdd575eaeaa91af362f49cd41cf7e1c5009892
3
+ metadata.gz: aa7915f9b848e8cea608787f628b077e7fc2d5904044581758099db9a3b26742
4
+ data.tar.gz: ecf97a652368c8ed73d6bffdea6d1961e1cbb85c0587e50ba5211735368fb7b3
5
5
  SHA512:
6
- metadata.gz: 3c6899589d2e7077d02031f1957f718e76d12d805994e1878698b94d326e1437ea6477b94feb4edc1f03c2fca6b96b943acc4192c1024a45589a4014a89a1291
7
- data.tar.gz: 62f9f07f6a57c15f3388b2a6893bf68dd5dde48eb04dc54c52133c92b7926bf03383a3070ddb7ae061e93b001bdfd85c4f469eb4147aef0652f3fd2b7ab380c8
6
+ metadata.gz: a8b861192fcb395fbec9643840b9b91aaa3d42193d55efda03812d10114a3f4e076afc2eb79a6294bc89a0e340bd5c14f3f2e2fca25e6d1eefa32c9bff359a20
7
+ data.tar.gz: a35c95acd756183eb2bd2af220e65a182a2206b054453fb49c0e550d512831328d74f72df8e46aec118824efd581fd26e04374b67dbc7898b07f9a964d1123d8
data/exe/web_aid_tool CHANGED
@@ -120,3 +120,7 @@ get "/request.cgi" do
120
120
 
121
121
  encode_result(result)
122
122
  end
123
+
124
+ # can't rely on this running automatically when we're installed as a gem,
125
+ # because the wrapper script will confuse it
126
+ Sinatra::Application.run!
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Aurora
4
- VERSION = "0.6.3"
4
+ VERSION = "0.6.4"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: waterfurnace_aurora
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.3
4
+ version: 0.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cody Cutrer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-09-04 00:00:00.000000000 Z
11
+ date: 2021-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ccutrer-serialport
@@ -123,7 +123,6 @@ dependencies:
123
123
  description:
124
124
  email: cody@cutrer.com'
125
125
  executables:
126
- - grab_awl_assets.sh
127
126
  - aurora_monitor
128
127
  - aurora_mqtt_bridge
129
128
  - web_aid_tool
@@ -136,7 +135,6 @@ files:
136
135
  - exe/aurora_mock
137
136
  - exe/aurora_monitor
138
137
  - exe/aurora_mqtt_bridge
139
- - exe/grab_awl_assets.sh
140
138
  - exe/web_aid_tool
141
139
  - lib/aurora.rb
142
140
  - lib/aurora/abc_client.rb
@@ -1,21 +0,0 @@
1
- #!/bin/bash
2
-
3
- mkdir -p html
4
- mkdir -p html/css
5
- mkdir -p html/js
6
- mkdir -p html/images
7
-
8
- IP=${1:-172.20.10.1}
9
-
10
- curl http://$IP/ > html/index.htm
11
- curl http://$IP/config.htm > html/config.htm
12
- curl http://$IP/favicon.ico > html/favicon.ico
13
- curl http://$IP/css/index.css > html/css/index.css
14
- curl http://$IP/css/phone.css > html/css/phone.css
15
- curl http://$IP/js/indexc.js > html/js/indexc.js
16
- curl http://$IP/js/configc.js > html/js/configc.js
17
- curl http://$IP/images/aurora.png > html/images/aurora.png
18
- curl http://$IP/images/back.png > html/images/back.png
19
- curl http://$IP/images/cfailed.png > html/images/cfailed.png
20
- curl http://$IP/images/cgood.png > html/images/cgood.png
21
- curl http://$IP/images/cidle.png > html/images/cidle.png