bandshell 0.0.8 → 0.0.9
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/bin/bandshelld +11 -0
- data/{web → lib/bandshell/application}/app.rb +1 -2
- data/{web → lib/bandshell/application}/config.ru +0 -0
- data/{web → lib/bandshell/application}/public/network.js +0 -0
- data/{web → lib/bandshell/application}/public/problem.js +0 -0
- data/{web → lib/bandshell/application}/public/stylesheet.css +0 -0
- data/{web → lib/bandshell/application}/public/trollface.png +0 -0
- data/{web → lib/bandshell/application}/views/main.haml +0 -0
- data/{web → lib/bandshell/application}/views/netsettings.haml +0 -0
- data/{web → lib/bandshell/application}/views/password.haml +0 -0
- data/{web → lib/bandshell/application}/views/player_status.haml +0 -0
- data/{web → lib/bandshell/application}/views/problem.haml +0 -0
- data/{web → lib/bandshell/application}/views/setup.haml +0 -0
- data/lib/{config_store.rb → bandshell/config_store.rb} +2 -2
- data/lib/{live_image.rb → bandshell/live_image.rb} +1 -1
- data/lib/{netconfig.rb → bandshell/netconfig.rb} +1 -1
- metadata +19 -19
- data/bin/bandshell-control.rb +0 -11
- data/bin/bandshell-daemon.rb +0 -12
data/bin/bandshelld
ADDED
@@ -4,7 +4,7 @@ require 'haml'
|
|
4
4
|
require 'json'
|
5
5
|
require 'net/http'
|
6
6
|
require 'ipaddress'
|
7
|
-
require 'netconfig'
|
7
|
+
require 'bandshell/netconfig'
|
8
8
|
require 'sys/uptime'
|
9
9
|
require 'sys/proctable'
|
10
10
|
include Sys
|
@@ -317,4 +317,3 @@ class ConcertoConfigServer < Sinatra::Base
|
|
317
317
|
|
318
318
|
end
|
319
319
|
|
320
|
-
ConcertoConfigServer.run!
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bandshell
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-04-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sinatra
|
@@ -96,28 +96,28 @@ email: andrew@asquaredlabs.com
|
|
96
96
|
executables:
|
97
97
|
- concerto_netsetup
|
98
98
|
- concerto_configserver
|
99
|
+
- bandshelld
|
99
100
|
extensions: []
|
100
101
|
extra_rdoc_files: []
|
101
102
|
files:
|
102
|
-
- lib/live_image.rb
|
103
|
-
- lib/netconfig.rb
|
104
|
-
- lib/config_store.rb
|
105
|
-
-
|
106
|
-
-
|
107
|
-
-
|
108
|
-
-
|
109
|
-
-
|
110
|
-
-
|
111
|
-
-
|
112
|
-
-
|
113
|
-
-
|
114
|
-
-
|
115
|
-
-
|
116
|
-
-
|
103
|
+
- lib/bandshell/live_image.rb
|
104
|
+
- lib/bandshell/netconfig.rb
|
105
|
+
- lib/bandshell/config_store.rb
|
106
|
+
- lib/bandshell/application/config.ru
|
107
|
+
- lib/bandshell/application/views/main.haml
|
108
|
+
- lib/bandshell/application/views/password.haml
|
109
|
+
- lib/bandshell/application/views/setup.haml
|
110
|
+
- lib/bandshell/application/views/netsettings.haml
|
111
|
+
- lib/bandshell/application/views/problem.haml
|
112
|
+
- lib/bandshell/application/views/player_status.haml
|
113
|
+
- lib/bandshell/application/app.rb
|
114
|
+
- lib/bandshell/application/public/network.js
|
115
|
+
- lib/bandshell/application/public/stylesheet.css
|
116
|
+
- lib/bandshell/application/public/problem.js
|
117
|
+
- lib/bandshell/application/public/trollface.png
|
117
118
|
- bin/concerto_configserver
|
118
|
-
- bin/bandshell-daemon.rb
|
119
119
|
- bin/concerto_netsetup
|
120
|
-
- bin/
|
120
|
+
- bin/bandshelld
|
121
121
|
homepage:
|
122
122
|
licenses: []
|
123
123
|
post_install_message:
|
data/bin/bandshell-control.rb
DELETED
data/bin/bandshell-daemon.rb
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#Requires "daemons" gem
|
3
|
-
|
4
|
-
#Starts the Web App Server & verifies that it is still alive
|
5
|
-
#Starts the Browser & verifies that it is still alive
|
6
|
-
#Periodically uses local library methods to check for updates from the server
|
7
|
-
#Controls screen according to rules downloaded from server
|
8
|
-
|
9
|
-
#Start the daemon loop - everything happens in there
|
10
|
-
loop do
|
11
|
-
sleep(5)
|
12
|
-
end
|