bandshell 0.0.11 → 0.0.12
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/bandshell/application/app.rb +5 -0
- metadata +1 -1
|
@@ -10,6 +10,11 @@ require 'sys/proctable'
|
|
|
10
10
|
include Sys
|
|
11
11
|
|
|
12
12
|
class ConcertoConfigServer < Sinatra::Base
|
|
13
|
+
# set paths relative to this file's location
|
|
14
|
+
set :static, true
|
|
15
|
+
set :public, File.expand_path('..', __FILE__)
|
|
16
|
+
set :views, File.expand_path('../views', __FILE__)
|
|
17
|
+
|
|
13
18
|
# push these over to netconfig.rb?
|
|
14
19
|
# Our list of available physical-layer connection methods...
|
|
15
20
|
CONNECTION_METHODS = [
|