bandshell 0.9 → 1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bandshell/application/app.rb +52 -143
- data/lib/bandshell/application/public/favicon.ico +0 -0
- data/lib/bandshell/application/public/javascripts/authenticate.js +39 -6
- data/lib/bandshell/application/public/javascripts/jquery-1.7.2.js +9404 -0
- data/lib/bandshell/application/views/authenticate.erb +41 -8
- data/lib/bandshell/application/views/main.erb +2 -2
- data/lib/bandshell/application/views/player_status.erb +16 -2
- data/lib/bandshell/hardware_api.rb +54 -9
- data/lib/bandshell/player_info.rb +112 -0
- data/lib/bandshell/screen_control.rb +159 -0
- metadata +6 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bandshell
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0
|
4
|
+
version: '1.0'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Concerto Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sinatra
|
@@ -90,10 +90,12 @@ extra_rdoc_files: []
|
|
90
90
|
files:
|
91
91
|
- lib/bandshell/application/app.rb
|
92
92
|
- lib/bandshell/application/config.ru
|
93
|
+
- lib/bandshell/application/public/favicon.ico
|
93
94
|
- lib/bandshell/application/public/images/elements/logomark.png
|
94
95
|
- lib/bandshell/application/public/images/layout/pagebg.gif
|
95
96
|
- lib/bandshell/application/public/images/layout/pagebg@2x.gif
|
96
97
|
- lib/bandshell/application/public/javascripts/authenticate.js
|
98
|
+
- lib/bandshell/application/public/javascripts/jquery-1.7.2.js
|
97
99
|
- lib/bandshell/application/public/javascripts/network.js
|
98
100
|
- lib/bandshell/application/public/javascripts/problem.js
|
99
101
|
- lib/bandshell/application/public/stylesheets/README
|
@@ -143,6 +145,8 @@ files:
|
|
143
145
|
- lib/bandshell/hardware_api.rb
|
144
146
|
- lib/bandshell/live_image.rb
|
145
147
|
- lib/bandshell/netconfig.rb
|
148
|
+
- lib/bandshell/player_info.rb
|
149
|
+
- lib/bandshell/screen_control.rb
|
146
150
|
- bin/bandshell-timer.rb
|
147
151
|
- bin/bandshelld
|
148
152
|
- bin/concerto_netsetup
|