city-watch 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/version.rb +1 -1
- data/static/javascripts/city_watch.js +1 -0
- data/watch_commander.ru +1 -1
- metadata +1 -1
data/lib/version.rb
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
// Test
|
data/watch_commander.ru
CHANGED
@@ -6,7 +6,7 @@ app = Rack::Builder.new do
|
|
6
6
|
|
7
7
|
Rack::Utils.key_space_limit = 123456789
|
8
8
|
|
9
|
-
use Rack::Static, :urls => ["/stylesheets", "/javascripts"
|
9
|
+
use Rack::Static, :urls => ["/stylesheets", "/javascripts"], :root => "#{File.expand_path(File.dirname(__FILE__))}/static"
|
10
10
|
|
11
11
|
run CityWatch::Routes
|
12
12
|
|