city-watch 0.6.5 → 0.6.6
Sign up to get free protection for your applications and to get access to all the features.
@@ -11,9 +11,7 @@ module Reader
|
|
11
11
|
|
12
12
|
def render_from_summary(data)
|
13
13
|
@current_data = data
|
14
|
-
|
15
|
-
ensure
|
16
|
-
@current_data = nil
|
14
|
+
render_bare "watchmen/#{@name}/summary", "watchmen/summary"
|
17
15
|
end
|
18
16
|
|
19
17
|
def watchman_class
|
data/lib/version.rb
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
// Test
|
1
|
+
// Test
|
2
|
+
window.city_watch = {};
|
@@ -1,5 +1,6 @@
|
|
1
1
|
<html>
|
2
2
|
<head>
|
3
|
+
<title>CityWatch</title>
|
3
4
|
<link rel="stylesheet" href="/stylesheets/city_watch.css">
|
4
5
|
<link rel="stylesheet" href="/stylesheets/default.css">
|
5
6
|
<script src="/javascripts/city_watch.js"></script>
|
@@ -7,6 +8,6 @@
|
|
7
8
|
<script>hljs.initHighlightingOnLoad();</script>
|
8
9
|
</head>
|
9
10
|
<body>
|
10
|
-
<%= yield%>
|
11
|
+
<%= yield %>
|
11
12
|
</body>
|
12
13
|
</html>
|