acts_as_monitor 0.0.2 → 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.
Files changed (79) hide show
  1. data/CHANGELOG.md +6 -3
  2. data/README.md +22 -0
  3. data/app/controllers/acts_as_monitor/monitors_controller.rb +18 -0
  4. data/app/helpers/acts_as_monitor_helper.rb +25 -0
  5. data/app/views/acts_as_monitor/monitors/show.html.erb +26 -0
  6. data/config/routes.rb +3 -1
  7. data/lib/acts_as_monitor/engine.rb +21 -8
  8. data/lib/acts_as_monitor/monitor.rb +1 -1
  9. data/lib/acts_as_monitor/version.rb +1 -1
  10. data/lib/acts_as_monitor.rb +10 -10
  11. data/lib/generators/acts_as_monitor/install/install_generator.rb +33 -25
  12. data/lib/generators/acts_as_monitor/install/templates/acts_as_monitor.css +48 -0
  13. data/lib/generators/acts_as_monitor/install/templates/acts_as_monitor.it.yml +8 -1
  14. data/lib/generators/acts_as_monitor/install/templates/acts_as_monitor_javascript.js +78 -0
  15. data/lib/generators/acts_as_monitor/install/templates/acts_as_monitor_loading.gif +0 -0
  16. data/test/acts_as_monitor_helper_test.rb +16 -0
  17. data/test/{units/acts_as_monitor_test.rb → acts_as_monitor_test.rb} +3 -20
  18. data/test/dummy/Rakefile +7 -0
  19. data/test/dummy/app/controllers/application_controller.rb +3 -0
  20. data/test/dummy/app/controllers/homes_controller.rb +4 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/helpers/homes_helper.rb +2 -0
  23. data/test/dummy/app/models/test_class.rb +33 -0
  24. data/test/dummy/app/models/test_class_no_monitor.rb +2 -0
  25. data/test/dummy/app/views/homes/index.html.erb +8 -0
  26. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  27. data/test/dummy/config/application.rb +45 -0
  28. data/test/dummy/config/boot.rb +10 -0
  29. data/test/dummy/config/database.yml +22 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +26 -0
  32. data/test/dummy/config/environments/production.rb +49 -0
  33. data/test/dummy/config/environments/test.rb +35 -0
  34. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/dummy/config/initializers/inflections.rb +10 -0
  36. data/test/dummy/config/initializers/mime_types.rb +5 -0
  37. data/test/dummy/config/initializers/secret_token.rb +7 -0
  38. data/test/dummy/config/initializers/session_store.rb +8 -0
  39. data/test/dummy/config/locales/acts_as_monitor.it.yml +14 -0
  40. data/test/dummy/config/locales/en.yml +5 -0
  41. data/test/dummy/config/routes.rb +58 -0
  42. data/test/dummy/config.ru +4 -0
  43. data/test/{acts_as_monitor.sqlite3.db → dummy/db/development.sqlite3} +0 -0
  44. data/test/dummy/db/migrate/20120523110000_add_test_tables.rb +12 -0
  45. data/test/dummy/db/schema.rb +19 -0
  46. data/test/dummy/db/test.sqlite3 +0 -0
  47. data/test/dummy/log/development.log +4537 -0
  48. data/test/dummy/log/production.log +0 -0
  49. data/test/dummy/log/server.log +0 -0
  50. data/test/dummy/log/test.log +188 -0
  51. data/test/dummy/public/404.html +26 -0
  52. data/test/dummy/public/422.html +26 -0
  53. data/test/dummy/public/500.html +26 -0
  54. data/test/dummy/public/favicon.ico +0 -0
  55. data/test/dummy/public/images/acts_as_monitor_green.png +0 -0
  56. data/test/dummy/public/images/acts_as_monitor_red.png +0 -0
  57. data/test/dummy/public/images/acts_as_monitor_yellow.png +0 -0
  58. data/test/dummy/public/javascripts/acts_as_monitor_javascript.js +66 -0
  59. data/test/dummy/public/javascripts/application.js +2 -0
  60. data/test/dummy/public/javascripts/builder.js +136 -0
  61. data/test/dummy/public/javascripts/controls.js +965 -0
  62. data/test/dummy/public/javascripts/dragdrop.js +974 -0
  63. data/test/dummy/public/javascripts/effects.js +1123 -0
  64. data/test/dummy/public/javascripts/prototype.js +6001 -0
  65. data/test/dummy/public/javascripts/rails.js +191 -0
  66. data/test/dummy/public/javascripts/scriptaculous.js +68 -0
  67. data/test/dummy/public/javascripts/slider.js +275 -0
  68. data/test/dummy/public/javascripts/sound.js +59 -0
  69. data/test/dummy/public/javascripts/unittest.js +568 -0
  70. data/test/dummy/public/stylesheets/.gitkeep +0 -0
  71. data/test/dummy/public/stylesheets/acts_as_monitor.css +30 -0
  72. data/test/dummy/script/rails +6 -0
  73. data/test/integration/navigation_test.rb +7 -0
  74. data/test/support/integration_case.rb +5 -0
  75. data/test/test_helper.rb +17 -42
  76. metadata +128 -11
  77. data/app/controllers/acts_as_monitor/monitor_controller.rb +0 -7
  78. data/app/helpers/monitor_helper.rb +0 -11
  79. data/app/views/acts_as_monitor/indext.html.erb +0 -1
@@ -0,0 +1,4537 @@
1
+ SQL (0.9ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+ SQL (1.0ms)  SELECT name
6
+ FROM sqlite_master
7
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
8
+ 
9
+ SQL (0.1ms) select sqlite_version(*)
10
+ SQL (2169.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
11
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
12
+ SQL (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13
+ SQL (0.2ms) SELECT name
14
+ FROM sqlite_master
15
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
16
+ SQL (0.1ms)  SELECT name
17
+ FROM sqlite_master
18
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
19
+ 
20
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
21
+ Migrating to AddTestTables (20120523110000)
22
+ SQL (0.2ms)  SELECT name
23
+ FROM sqlite_master
24
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
25
+ 
26
+ SQL (0.4ms) CREATE TABLE "test_classes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
27
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120523110000')
28
+ SQL (0.3ms) SELECT name
29
+ FROM sqlite_master
30
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
31
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
32
+ SQL (0.1ms) SELECT name
33
+ FROM sqlite_master
34
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
35
+ SQL (0.0ms) PRAGMA index_list("test_classes")
36
+ SQL (1.1ms)  SELECT name
37
+ FROM sqlite_master
38
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
39
+ 
40
+ SQL (1.1ms)  SELECT name
41
+ FROM sqlite_master
42
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
43
+ 
44
+ SQL (1.1ms)  SELECT name
45
+ FROM sqlite_master
46
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
47
+ 
48
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/test/dummy/app/controllers/application_controller.rb:1)
49
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/test/dummy/app/controllers/application_controller.rb:1)
50
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
51
+
52
+
53
+ Started GET "/" for 10.1.1.132 at Thu May 24 15:48:19 +0200 2012
54
+
55
+ ActionController::RoutingError (No route matches "/"):
56
+
57
+
58
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
59
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
60
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
61
+
62
+
63
+ Started GET "/" for 10.1.1.132 at Thu May 24 15:52:13 +0200 2012
64
+
65
+ AbstractController::ActionNotFound (The action 'index' could not be found for HomesController):
66
+
67
+
68
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms)
69
+
70
+
71
+ Started GET "/" for 10.1.1.132 at Thu May 24 15:52:15 +0200 2012
72
+
73
+ AbstractController::ActionNotFound (The action 'index' could not be found for HomesController):
74
+
75
+
76
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.9ms)
77
+
78
+
79
+ Started GET "/" for 10.1.1.132 at Thu May 24 15:52:29 +0200 2012
80
+
81
+ AbstractController::ActionNotFound (The action 'index' could not be found for HomesController):
82
+
83
+
84
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (2.8ms)
85
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
86
+
87
+
88
+ Started GET "/" for 10.1.1.132 at Thu May 24 15:53:36 +0200 2012
89
+ Processing by HomesController#index as HTML
90
+ Rendered homes/index.html.erb within layouts/application (2.2ms)
91
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
92
+
93
+
94
+ Started GET "/acts_as_monitor/index" for 10.1.1.132 at Thu May 24 15:54:02 +0200 2012
95
+
96
+ ActionController::RoutingError (No route matches "/acts_as_monitor/index"):
97
+
98
+
99
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
100
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
101
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
102
+
103
+
104
+ Started GET "/acts_as_monitor/monitor" for 10.1.1.132 at Thu May 24 15:54:38 +0200 2012
105
+
106
+ ActionController::RoutingError (No route matches "/acts_as_monitor/monitor"):
107
+
108
+
109
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
110
+
111
+
112
+ Started GET "/acts_as_monitor/monitor/index" for 10.1.1.132 at Thu May 24 15:54:44 +0200 2012
113
+
114
+ ActionController::RoutingError (No route matches "/acts_as_monitor/monitor/index"):
115
+
116
+
117
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
118
+
119
+
120
+ Started GET "/acts_as_monitor" for 10.1.1.132 at Thu May 24 15:55:06 +0200 2012
121
+
122
+ ActionController::RoutingError (No route matches "/acts_as_monitor"):
123
+
124
+
125
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
126
+
127
+
128
+ Started GET "/monitor" for 10.1.1.132 at Thu May 24 15:55:29 +0200 2012
129
+ Processing by ActsAsMonitor::MonitorController#index as HTML
130
+ Completed 500 Internal Server Error in 10ms
131
+
132
+ ActionView::MissingTemplate (Missing template acts_as_monitor/monitor/index with {:locale=>[:en, :en], :handlers=>[:rxml, :erb, :builder, :rjs, :rhtml], :formats=>[:html]} in view paths "/home/andrea/acts_as_monitor/test/dummy/app/views", "/home/andrea/acts_as_monitor/app/views"):
133
+
134
+
135
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.8ms)
136
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
137
+
138
+
139
+ Started GET "/monitor" for 10.1.1.132 at Thu May 24 15:59:18 +0200 2012
140
+ Processing by ActsAsMonitor::MonitorController#index as HTML
141
+ Completed 500 Internal Server Error in 9ms
142
+
143
+ ActionView::MissingTemplate (Missing template acts_as_monitor/monitor/index with {:locale=>[:en, :en], :handlers=>[:rxml, :erb, :builder, :rjs, :rhtml], :formats=>[:html]} in view paths "/home/andrea/acts_as_monitor/test/dummy/app/views", "/home/andrea/acts_as_monitor/app/views"):
144
+
145
+
146
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.9ms)
147
+
148
+
149
+ Started GET "/monitor" for 10.1.1.132 at Thu May 24 15:59:21 +0200 2012
150
+ Processing by ActsAsMonitor::MonitorController#index as HTML
151
+ Completed 500 Internal Server Error in 6ms
152
+
153
+ ActionView::MissingTemplate (Missing template acts_as_monitor/monitor/index with {:locale=>[:en, :en], :handlers=>[:rxml, :erb, :builder, :rjs, :rhtml], :formats=>[:html]} in view paths "/home/andrea/acts_as_monitor/test/dummy/app/views", "/home/andrea/acts_as_monitor/app/views"):
154
+
155
+
156
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
157
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
158
+
159
+
160
+ Started GET "/monitor" for 10.1.1.132 at Thu May 24 16:00:27 +0200 2012
161
+ Processing by ActsAsMonitor::MonitorController#index as HTML
162
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitor/index.html.erb within layouts/application (2.1ms)
163
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.0ms)
164
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
165
+ SQL (1.1ms)  SELECT name
166
+ FROM sqlite_master
167
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
168
+ 
169
+ SQL (0.3ms) SELECT name
170
+ FROM sqlite_master
171
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
172
+ AREL (0.5ms) INSERT INTO "test_classes" ("name") VALUES ('Pippo')
173
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
174
+ SQL (1.1ms)  SELECT name
175
+ FROM sqlite_master
176
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
177
+ 
178
+ TestClass Load (0.3ms) SELECT "test_classes".* FROM "test_classes"
179
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
180
+ SQL (1.2ms)  SELECT name
181
+ FROM sqlite_master
182
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
183
+ 
184
+ TestClass Load (0.3ms) SELECT "test_classes".* FROM "test_classes"
185
+ SQL (0.2ms)  SELECT name
186
+ FROM sqlite_master
187
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
188
+ 
189
+ AREL (0.8ms) INSERT INTO "test_classes" ("name") VALUES ('Paperino')
190
+ AREL (0.4ms) INSERT INTO "test_classes" ("name") VALUES ('Azzo')
191
+ TestClass Load (0.3ms) SELECT "test_classes".* FROM "test_classes"
192
+ TestClass Load (0.3ms) SELECT "test_classes".* FROM "test_classes"
193
+ TestClass Load (0.3ms) SELECT "test_classes".* FROM "test_classes"
194
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
195
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
196
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
197
+
198
+
199
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:08:48 +0200 2012
200
+ Processing by HomesController#index as HTML
201
+ TestClass Load (1.4ms) SELECT "test_classes".* FROM "test_classes"
202
+ Rendered homes/index.html.erb within layouts/application (49.1ms)
203
+ Completed 200 OK in 56ms (Views: 54.4ms | ActiveRecord: 1.4ms)
204
+
205
+
206
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:09:46 +0200 2012
207
+ Processing by HomesController#index as HTML
208
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
209
+ Rendered homes/index.html.erb within layouts/application (13.9ms)
210
+ Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.5ms)
211
+
212
+
213
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:10:26 +0200 2012
214
+ Processing by HomesController#index as HTML
215
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
216
+ Rendered homes/index.html.erb within layouts/application (20.1ms)
217
+ Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.5ms)
218
+
219
+
220
+ Started GET "/images/acts_as_monitor_red.png" for 10.1.1.132 at Thu May 24 16:10:26 +0200 2012
221
+
222
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_red.png"):
223
+
224
+
225
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
226
+
227
+
228
+ Started GET "/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Thu May 24 16:10:26 +0200 2012
229
+
230
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_yellow.png"):
231
+
232
+
233
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
234
+
235
+
236
+ Started GET "/images/acts_as_monitor_green.png" for 10.1.1.132 at Thu May 24 16:10:26 +0200 2012
237
+
238
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_green.png"):
239
+
240
+
241
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
242
+
243
+
244
+ Started GET "/images/acts_as_monitor_red.png" for 10.1.1.132 at Thu May 24 16:10:27 +0200 2012
245
+
246
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_red.png"):
247
+
248
+
249
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
250
+
251
+
252
+ Started GET "/images/acts_as_monitor_green.png" for 10.1.1.132 at Thu May 24 16:10:27 +0200 2012
253
+
254
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_green.png"):
255
+
256
+
257
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
258
+
259
+
260
+ Started GET "/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Thu May 24 16:10:27 +0200 2012
261
+
262
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_yellow.png"):
263
+
264
+
265
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
266
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
267
+
268
+
269
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:11:04 +0200 2012
270
+ Processing by HomesController#index as HTML
271
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
272
+ Rendered homes/index.html.erb within layouts/application (18.8ms)
273
+ Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.6ms)
274
+
275
+
276
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:19:10 +0200 2012
277
+ Processing by HomesController#index as HTML
278
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
279
+ Rendered homes/index.html.erb within layouts/application (19.9ms)
280
+ Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.5ms)
281
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
282
+
283
+
284
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:19:37 +0200 2012
285
+ Processing by HomesController#index as HTML
286
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
287
+ Rendered homes/index.html.erb within layouts/application (103.5ms)
288
+ Completed 200 OK in 110ms (Views: 108.4ms | ActiveRecord: 1.2ms)
289
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
290
+
291
+
292
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:22:14 +0200 2012
293
+ Processing by HomesController#index as HTML
294
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
295
+ Rendered homes/index.html.erb within layouts/application (104.6ms)
296
+ Completed 200 OK in 111ms (Views: 109.7ms | ActiveRecord: 1.1ms)
297
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
298
+
299
+
300
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:26:55 +0200 2012
301
+ Processing by HomesController#index as HTML
302
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
303
+ Rendered homes/index.html.erb within layouts/application (108.4ms)
304
+ Completed 200 OK in 115ms (Views: 113.4ms | ActiveRecord: 1.2ms)
305
+
306
+
307
+ Started GET "/images/acts_as_monitor_red.png" for 10.1.1.132 at Thu May 24 16:26:56 +0200 2012
308
+
309
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_red.png"):
310
+
311
+
312
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
313
+
314
+
315
+ Started GET "/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Thu May 24 16:26:56 +0200 2012
316
+
317
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_yellow.png"):
318
+
319
+
320
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
321
+
322
+
323
+ Started GET "/images/acts_as_monitor_green.png" for 10.1.1.132 at Thu May 24 16:26:56 +0200 2012
324
+
325
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_green.png"):
326
+
327
+
328
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
329
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:14)
330
+
331
+
332
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:28:33 +0200 2012
333
+ Processing by HomesController#index as HTML
334
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
335
+ Rendered homes/index.html.erb within layouts/application (107.7ms)
336
+ Completed 200 OK in 114ms (Views: 112.7ms | ActiveRecord: 1.1ms)
337
+
338
+
339
+ Started GET "/images/acts_as_monitor_red.png" for 10.1.1.132 at Thu May 24 16:28:34 +0200 2012
340
+
341
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_red.png"):
342
+
343
+
344
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
345
+
346
+
347
+ Started GET "/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Thu May 24 16:28:34 +0200 2012
348
+
349
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_yellow.png"):
350
+
351
+
352
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
353
+
354
+
355
+ Started GET "/images/acts_as_monitor_green.png" for 10.1.1.132 at Thu May 24 16:28:34 +0200 2012
356
+
357
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_green.png"):
358
+
359
+
360
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
361
+
362
+
363
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:28:36 +0200 2012
364
+ Processing by HomesController#index as HTML
365
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
366
+ Rendered homes/index.html.erb within layouts/application (18.0ms)
367
+ Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.6ms)
368
+
369
+
370
+ Started GET "/images/acts_as_monitor_red.png" for 10.1.1.132 at Thu May 24 16:28:37 +0200 2012
371
+
372
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_red.png"):
373
+
374
+
375
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
376
+
377
+
378
+ Started GET "/images/acts_as_monitor_green.png" for 10.1.1.132 at Thu May 24 16:28:38 +0200 2012
379
+
380
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_green.png"):
381
+
382
+
383
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
384
+
385
+
386
+ Started GET "/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Thu May 24 16:28:38 +0200 2012
387
+
388
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_yellow.png"):
389
+
390
+
391
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
392
+
393
+
394
+ Started GET "/images/acts_as_monitor_red.png" for 10.1.1.132 at Thu May 24 16:28:38 +0200 2012
395
+
396
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_red.png"):
397
+
398
+
399
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
400
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:16)
401
+
402
+
403
+ Started GET "/" for 10.1.1.132 at Thu May 24 16:31:22 +0200 2012
404
+ Processing by HomesController#index as HTML
405
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
406
+ Rendered homes/index.html.erb within layouts/application (106.2ms)
407
+ Completed 200 OK in 113ms (Views: 111.3ms | ActiveRecord: 1.1ms)
408
+
409
+
410
+ Started GET "/images/acts_as_monitor_red.png" for 10.1.1.132 at Thu May 24 16:31:24 +0200 2012
411
+
412
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_red.png"):
413
+
414
+
415
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
416
+
417
+
418
+ Started GET "/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Thu May 24 16:31:24 +0200 2012
419
+
420
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_yellow.png"):
421
+
422
+
423
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
424
+
425
+
426
+ Started GET "/images/acts_as_monitor_green.png" for 10.1.1.132 at Thu May 24 16:31:24 +0200 2012
427
+
428
+ ActionController::RoutingError (No route matches "/images/acts_as_monitor_green.png"):
429
+
430
+
431
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
432
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
433
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
434
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
435
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
436
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
437
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
438
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
439
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
440
+
441
+
442
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:08:17 +0200 2012
443
+ Processing by HomesController#index as HTML
444
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
445
+ Rendered homes/index.html.erb within layouts/application (107.1ms)
446
+ Completed 200 OK in 114ms (Views: 112.2ms | ActiveRecord: 1.1ms)
447
+
448
+
449
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:08:22 +0200 2012
450
+ Processing by HomesController#index as HTML
451
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
452
+ Rendered homes/index.html.erb within layouts/application (17.2ms)
453
+ Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.5ms)
454
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
455
+
456
+
457
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:12:20 +0200 2012
458
+ Processing by HomesController#index as HTML
459
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
460
+ Rendered homes/index.html.erb within layouts/application (110.0ms)
461
+ Completed 200 OK in 117ms (Views: 115.6ms | ActiveRecord: 1.2ms)
462
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
463
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
464
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
465
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
466
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
467
+
468
+
469
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:25:21 +0200 2012
470
+ Processing by HomesController#index as HTML
471
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
472
+ Rendered homes/index.html.erb within layouts/application (109.9ms)
473
+ Completed 200 OK in 117ms (Views: 115.0ms | ActiveRecord: 1.2ms)
474
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
475
+
476
+
477
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:36:58 +0200 2012
478
+ Processing by HomesController#index as HTML
479
+ TestClass Load (1.3ms) SELECT "test_classes".* FROM "test_classes"
480
+ Rendered homes/index.html.erb within layouts/application (128.5ms)
481
+ Completed 500 Internal Server Error in 136ms
482
+
483
+ ActionView::Template::Error (undefined local variable or method `class_name' for #<#<Class:0xb641c27c>:0xb6419c48>):
484
+ 3: <%= monitor_tag_js %>
485
+ 4: <ul>
486
+ 5: <% TestClass.all.each do |u| %>
487
+ 6: <li><p><%= u.name %></p><p><%= u.status_flag %></p><%=monitor_tag(u) %></li>
488
+ 7: <% end %>
489
+ 8: </ul>
490
+ app/views/homes/index.html.erb:6:in `_app_views_homes_index_html_erb__27434617__618614398_0'
491
+ app/views/homes/index.html.erb:5:in `each'
492
+ app/views/homes/index.html.erb:5:in `_app_views_homes_index_html_erb__27434617__618614398_0'
493
+
494
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
495
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.3ms)
496
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.0ms)
497
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
498
+
499
+
500
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:40:07 +0200 2012
501
+ Processing by HomesController#index as HTML
502
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
503
+ Rendered homes/index.html.erb within layouts/application (114.0ms)
504
+ Completed 500 Internal Server Error in 120ms
505
+
506
+ ActionView::Template::Error (undefined local variable or method `class_name' for #<#<Class:0xb63f459c>:0xb63f1108>):
507
+ 3: <%= monitor_tag_js %>
508
+ 4: <ul>
509
+ 5: <% TestClass.all.each do |u| %>
510
+ 6: <li><p><%= u.name %></p><p><%= u.status_flag %></p><%=monitor_tag(u) %></li>
511
+ 7: <% end %>
512
+ 8: </ul>
513
+ app/views/homes/index.html.erb:6:in `_app_views_homes_index_html_erb__27434617__618698538_0'
514
+ app/views/homes/index.html.erb:5:in `each'
515
+ app/views/homes/index.html.erb:5:in `_app_views_homes_index_html_erb__27434617__618698538_0'
516
+
517
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
518
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.8ms)
519
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.9ms)
520
+
521
+
522
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:40:09 +0200 2012
523
+ Processing by HomesController#index as HTML
524
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
525
+ Rendered homes/index.html.erb within layouts/application (23.3ms)
526
+ Completed 500 Internal Server Error in 30ms
527
+
528
+ ActionView::Template::Error (undefined local variable or method `class_name' for #<#<Class:0xb66e2fec>:0xb66e21dc>):
529
+ 3: <%= monitor_tag_js %>
530
+ 4: <ul>
531
+ 5: <% TestClass.all.each do |u| %>
532
+ 6: <li><p><%= u.name %></p><p><%= u.status_flag %></p><%=monitor_tag(u) %></li>
533
+ 7: <% end %>
534
+ 8: </ul>
535
+ app/views/homes/index.html.erb:6:in `_app_views_homes_index_html_erb__27434617__617151568_0'
536
+ app/views/homes/index.html.erb:5:in `each'
537
+ app/views/homes/index.html.erb:5:in `_app_views_homes_index_html_erb__27434617__617151568_0'
538
+
539
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
540
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.1ms)
541
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.9ms)
542
+
543
+
544
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:40:14 +0200 2012
545
+ Processing by HomesController#index as HTML
546
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
547
+ Rendered homes/index.html.erb within layouts/application (75.6ms)
548
+ Completed 500 Internal Server Error in 82ms
549
+
550
+ ActionView::Template::Error (undefined local variable or method `class_name' for #<#<Class:0xb6565d04>:0xb6564c24>):
551
+ 3: <%= monitor_tag_js %>
552
+ 4: <ul>
553
+ 5: <% TestClass.all.each do |u| %>
554
+ 6: <li><p><%= u.name %></p><p><%= u.status_flag %></p><%=monitor_tag(u) %></li>
555
+ 7: <% end %>
556
+ 8: </ul>
557
+ app/views/homes/index.html.erb:6:in `_app_views_homes_index_html_erb__27434617__617930848_0'
558
+ app/views/homes/index.html.erb:5:in `each'
559
+ app/views/homes/index.html.erb:5:in `_app_views_homes_index_html_erb__27434617__617930848_0'
560
+
561
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
562
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.0ms)
563
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.7ms)
564
+
565
+
566
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:40:16 +0200 2012
567
+ Processing by HomesController#index as HTML
568
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
569
+ Rendered homes/index.html.erb within layouts/application (23.5ms)
570
+ Completed 500 Internal Server Error in 30ms
571
+
572
+ ActionView::Template::Error (undefined local variable or method `class_name' for #<#<Class:0xb66f4d14>:0xb66f3a40>):
573
+ 3: <%= monitor_tag_js %>
574
+ 4: <ul>
575
+ 5: <% TestClass.all.each do |u| %>
576
+ 6: <li><p><%= u.name %></p><p><%= u.status_flag %></p><%=monitor_tag(u) %></li>
577
+ 7: <% end %>
578
+ 8: </ul>
579
+ app/views/homes/index.html.erb:6:in `_app_views_homes_index_html_erb__27434617__617115658_0'
580
+ app/views/homes/index.html.erb:5:in `each'
581
+ app/views/homes/index.html.erb:5:in `_app_views_homes_index_html_erb__27434617__617115658_0'
582
+
583
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
584
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.8ms)
585
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.5ms)
586
+
587
+
588
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:40:17 +0200 2012
589
+ Processing by HomesController#index as HTML
590
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
591
+ Rendered homes/index.html.erb within layouts/application (83.7ms)
592
+ Completed 500 Internal Server Error in 91ms
593
+
594
+ ActionView::Template::Error (undefined local variable or method `class_name' for #<#<Class:0xb655b78c>:0xb655a65c>):
595
+ 3: <%= monitor_tag_js %>
596
+ 4: <ul>
597
+ 5: <% TestClass.all.each do |u| %>
598
+ 6: <li><p><%= u.name %></p><p><%= u.status_flag %></p><%=monitor_tag(u) %></li>
599
+ 7: <% end %>
600
+ 8: </ul>
601
+ app/views/homes/index.html.erb:6:in `_app_views_homes_index_html_erb__27434617__617952468_0'
602
+ app/views/homes/index.html.erb:5:in `each'
603
+ app/views/homes/index.html.erb:5:in `_app_views_homes_index_html_erb__27434617__617952468_0'
604
+
605
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
606
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.5ms)
607
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.9ms)
608
+
609
+
610
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:40:19 +0200 2012
611
+ Processing by HomesController#index as HTML
612
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
613
+ Rendered homes/index.html.erb within layouts/application (23.3ms)
614
+ Completed 500 Internal Server Error in 30ms
615
+
616
+ ActionView::Template::Error (undefined local variable or method `class_name' for #<#<Class:0xb67018ac>:0xb66ffa34>):
617
+ 3: <%= monitor_tag_js %>
618
+ 4: <ul>
619
+ 5: <% TestClass.all.each do |u| %>
620
+ 6: <li><p><%= u.name %></p><p><%= u.status_flag %></p><%=monitor_tag(u) %></li>
621
+ 7: <% end %>
622
+ 8: </ul>
623
+ app/views/homes/index.html.erb:6:in `_app_views_homes_index_html_erb__27434617__617089368_0'
624
+ app/views/homes/index.html.erb:5:in `each'
625
+ app/views/homes/index.html.erb:5:in `_app_views_homes_index_html_erb__27434617__617089368_0'
626
+
627
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
628
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.6ms)
629
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.2ms)
630
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
631
+
632
+
633
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:40:49 +0200 2012
634
+ Processing by HomesController#index as HTML
635
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
636
+ Rendered homes/index.html.erb within layouts/application (106.2ms)
637
+ Completed 200 OK in 113ms (Views: 111.2ms | ActiveRecord: 1.2ms)
638
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
639
+
640
+
641
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:42:41 +0200 2012
642
+ Processing by HomesController#index as HTML
643
+ TestClass Load (1.3ms) SELECT "test_classes".* FROM "test_classes"
644
+ Rendered homes/index.html.erb within layouts/application (107.5ms)
645
+ Completed 200 OK in 114ms (Views: 112.6ms | ActiveRecord: 1.3ms)
646
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
647
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
648
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
649
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
650
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
651
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
652
+
653
+
654
+ Started GET "/" for 10.1.1.132 at Thu May 24 17:57:33 +0200 2012
655
+ Processing by HomesController#index as HTML
656
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
657
+ Rendered homes/index.html.erb within layouts/application (115.4ms)
658
+ Completed 200 OK in 122ms (Views: 120.7ms | ActiveRecord: 1.2ms)
659
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
660
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
661
+
662
+
663
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:01:48 +0200 2012
664
+ Processing by HomesController#index as HTML
665
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
666
+ Rendered homes/index.html.erb within layouts/application (110.2ms)
667
+ Completed 200 OK in 117ms (Views: 115.2ms | ActiveRecord: 1.1ms)
668
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
669
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
670
+
671
+
672
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:03:07 +0200 2012
673
+ Processing by HomesController#index as HTML
674
+ TestClass Load (1.6ms) SELECT "test_classes".* FROM "test_classes"
675
+ Rendered homes/index.html.erb within layouts/application (122.8ms)
676
+ Completed 200 OK in 130ms (Views: 127.8ms | ActiveRecord: 1.6ms)
677
+
678
+
679
+ Started GET "/monitors/show.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:03:11 +0200 2012
680
+
681
+ ActionController::RoutingError (uninitialized constant MonitorsController):
682
+
683
+
684
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
685
+
686
+
687
+ Started GET "/monitor" for 10.1.1.132 at Thu May 24 18:03:35 +0200 2012
688
+
689
+ ActionController::RoutingError (No route matches "/monitor"):
690
+
691
+
692
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
693
+
694
+
695
+ Started GET "/monitor/index" for 10.1.1.132 at Thu May 24 18:03:42 +0200 2012
696
+
697
+ ActionController::RoutingError (No route matches "/monitor/index"):
698
+
699
+
700
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
701
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
702
+
703
+
704
+ Started GET "/monitors" for 10.1.1.132 at Thu May 24 18:04:05 +0200 2012
705
+
706
+ ActionController::RoutingError (uninitialized constant MonitorsController):
707
+
708
+
709
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
710
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
711
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
712
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
713
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
714
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
715
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
716
+
717
+
718
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:12:33 +0200 2012
719
+ Processing by HomesController#index as HTML
720
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
721
+ Rendered homes/index.html.erb within layouts/application (107.3ms)
722
+ Completed 200 OK in 114ms (Views: 112.5ms | ActiveRecord: 1.1ms)
723
+
724
+
725
+ Started GET "/acts_as_monitor/monitors/index.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:12:41 +0200 2012
726
+
727
+ ActionController::RoutingError (No route matches "/acts_as_monitor/monitors/index.js"):
728
+
729
+
730
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
731
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
732
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
733
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
734
+
735
+
736
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:13:31 +0200 2012
737
+ Processing by HomesController#index as HTML
738
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
739
+ Rendered homes/index.html.erb within layouts/application (109.6ms)
740
+ Completed 200 OK in 116ms (Views: 114.6ms | ActiveRecord: 1.1ms)
741
+
742
+
743
+ Started GET "/acts_as_monitor/monitor/index.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:13:38 +0200 2012
744
+
745
+ AbstractController::ActionNotFound (The action 'show' could not be found for ActsAsMonitor::MonitorController):
746
+
747
+
748
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms)
749
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
750
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
751
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
752
+
753
+
754
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:17:28 +0200 2012
755
+ Processing by HomesController#index as HTML
756
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
757
+ Rendered homes/index.html.erb within layouts/application (110.0ms)
758
+ Completed 200 OK in 117ms (Views: 115.1ms | ActiveRecord: 1.1ms)
759
+
760
+
761
+ Started GET "/acts_as_monitor/monitor/index.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:17:33 +0200 2012
762
+
763
+ ActionController::RoutingError (No route matches "/acts_as_monitor/monitor/index.js"):
764
+
765
+
766
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
767
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
768
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
769
+
770
+
771
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:18:30 +0200 2012
772
+ Processing by HomesController#index as HTML
773
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
774
+ Rendered homes/index.html.erb within layouts/application (108.7ms)
775
+ Completed 200 OK in 115ms (Views: 113.6ms | ActiveRecord: 1.2ms)
776
+
777
+
778
+ Started GET "/acts_as_monitor/monitors/index.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:18:34 +0200 2012
779
+
780
+ AbstractController::ActionNotFound (The action 'show' could not be found for ActsAsMonitor::MonitorsController):
781
+
782
+
783
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms)
784
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
785
+
786
+
787
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:19:33 +0200 2012
788
+ Processing by HomesController#index as HTML
789
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
790
+ Rendered homes/index.html.erb within layouts/application (108.2ms)
791
+ Completed 200 OK in 115ms (Views: 113.1ms | ActiveRecord: 1.2ms)
792
+
793
+
794
+ Started GET "/acts_as_monitor/monitors/index.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:19:37 +0200 2012
795
+ Processing by ActsAsMonitor::MonitorsController#show as JS
796
+ Parameters: {"class_name"=>"TestClass", "id"=>"index"}
797
+ Completed 500 Internal Server Error in 9ms
798
+
799
+ ActionView::MissingTemplate (Missing template acts_as_monitor/monitors/show with {:locale=>[:en, :en], :handlers=>[:rjs, :rhtml, :erb, :builder, :rxml], :formats=>[:js, :html]} in view paths "/home/andrea/acts_as_monitor/test/dummy/app/views", "/home/andrea/acts_as_monitor/app/views"):
800
+
801
+
802
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
803
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
804
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
805
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
806
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
807
+
808
+
809
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:22:24 +0200 2012
810
+ Processing by HomesController#index as HTML
811
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
812
+ Rendered homes/index.html.erb within layouts/application (106.8ms)
813
+ Completed 200 OK in 113ms (Views: 111.7ms | ActiveRecord: 1.2ms)
814
+
815
+
816
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:22:28 +0200 2012
817
+ Processing by ActsAsMonitor::MonitorsController#show as JS
818
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
819
+ Completed 500 Internal Server Error in 9ms
820
+
821
+ ActionView::MissingTemplate (Missing template acts_as_monitor/monitors/show with {:locale=>[:en, :en], :handlers=>[:rjs, :rhtml, :erb, :builder, :rxml], :formats=>[:js, :html]} in view paths "/home/andrea/acts_as_monitor/test/dummy/app/views", "/home/andrea/acts_as_monitor/app/views"):
822
+
823
+
824
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
825
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
826
+
827
+
828
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:23:17 +0200 2012
829
+ Processing by HomesController#index as HTML
830
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
831
+ Rendered homes/index.html.erb within layouts/application (108.0ms)
832
+ Completed 200 OK in 115ms (Views: 112.9ms | ActiveRecord: 1.1ms)
833
+
834
+
835
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:23:21 +0200 2012
836
+ Processing by ActsAsMonitor::MonitorsController#show as JS
837
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
838
+ Completed 500 Internal Server Error in 9ms
839
+
840
+ ActionView::MissingTemplate (Missing template acts_as_monitor/monitors/show with {:locale=>[:en, :en], :handlers=>[:rjs, :rhtml, :erb, :builder, :rxml], :formats=>[:js, :html]} in view paths "/home/andrea/acts_as_monitor/test/dummy/app/views", "/home/andrea/acts_as_monitor/app/views"):
841
+
842
+
843
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
844
+
845
+
846
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:24:38 +0200 2012
847
+ Processing by HomesController#index as HTML
848
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
849
+ Rendered homes/index.html.erb within layouts/application (17.3ms)
850
+ Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.5ms)
851
+
852
+
853
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:24:41 +0200 2012
854
+ Processing by ActsAsMonitor::MonitorsController#show as JS
855
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
856
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb within layouts/application (2.1ms)
857
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
858
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
859
+
860
+
861
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:25:55 +0200 2012
862
+ Processing by HomesController#index as HTML
863
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
864
+ Rendered homes/index.html.erb within layouts/application (115.0ms)
865
+ Completed 200 OK in 122ms (Views: 120.0ms | ActiveRecord: 1.2ms)
866
+
867
+
868
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:26:00 +0200 2012
869
+ Processing by ActsAsMonitor::MonitorsController#show as JS
870
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
871
+ SQL (0.5ms) SELECT name
872
+ FROM sqlite_master
873
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
874
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
875
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.2ms)
876
+ Completed 200 OK in 27ms (Views: 17.3ms | ActiveRecord: 0.7ms)
877
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
878
+
879
+
880
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:33:49 +0200 2012
881
+ Processing by HomesController#index as HTML
882
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
883
+ Rendered homes/index.html.erb within layouts/application (115.3ms)
884
+ Completed 200 OK in 122ms (Views: 120.4ms | ActiveRecord: 1.2ms)
885
+
886
+
887
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:33:55 +0200 2012
888
+ Processing by ActsAsMonitor::MonitorsController#show as JS
889
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
890
+ SQL (0.5ms) SELECT name
891
+ FROM sqlite_master
892
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
893
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
894
+ Completed 500 Internal Server Error in 15ms
895
+
896
+ ActionView::MissingTemplate (Missing partial acts_as_monitor/monitors/show with {:locale=>[:en, :en], :handlers=>[:rjs, :rhtml, :erb, :builder, :rxml], :formats=>[:js, :html]} in view paths "/home/andrea/acts_as_monitor/test/dummy/app/views", "/home/andrea/acts_as_monitor/app/views"):
897
+
898
+
899
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
900
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
901
+
902
+
903
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:38:41 +0200 2012
904
+ Processing by HomesController#index as HTML
905
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
906
+ Rendered homes/index.html.erb within layouts/application (105.9ms)
907
+ Completed 200 OK in 112ms (Views: 110.8ms | ActiveRecord: 1.1ms)
908
+
909
+
910
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:38:45 +0200 2012
911
+ Processing by ActsAsMonitor::MonitorsController#show as JS
912
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
913
+ SQL (0.5ms) SELECT name
914
+ FROM sqlite_master
915
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
916
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
917
+ Completed 200 OK in 14ms (Views: 5.3ms | ActiveRecord: 0.6ms)
918
+
919
+
920
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:40:37 +0200 2012
921
+ Processing by HomesController#index as HTML
922
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
923
+ Rendered homes/index.html.erb within layouts/application (17.8ms)
924
+ Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.5ms)
925
+
926
+
927
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:40:41 +0200 2012
928
+ Processing by ActsAsMonitor::MonitorsController#show as JS
929
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
930
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
931
+ Completed 200 OK in 14ms (Views: 3.5ms | ActiveRecord: 0.2ms)
932
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
933
+
934
+
935
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:44:13 +0200 2012
936
+ Processing by HomesController#index as HTML
937
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
938
+ Rendered homes/index.html.erb within layouts/application (18.9ms)
939
+ Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.6ms)
940
+
941
+
942
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:44:17 +0200 2012
943
+ Processing by ActsAsMonitor::MonitorsController#show as JS
944
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
945
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
946
+ Completed 200 OK in 15ms (Views: 3.7ms | ActiveRecord: 0.2ms)
947
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
948
+
949
+
950
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:45:17 +0200 2012
951
+ Processing by HomesController#index as HTML
952
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
953
+ Rendered homes/index.html.erb within layouts/application (17.9ms)
954
+ Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.5ms)
955
+
956
+
957
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:45:22 +0200 2012
958
+ Processing by ActsAsMonitor::MonitorsController#show as JS
959
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
960
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
961
+ Completed 200 OK in 15ms (Views: 3.6ms | ActiveRecord: 0.2ms)
962
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
963
+
964
+
965
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:46:34 +0200 2012
966
+ Processing by HomesController#index as HTML
967
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
968
+ Rendered homes/index.html.erb within layouts/application (18.6ms)
969
+ Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.5ms)
970
+
971
+
972
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:46:38 +0200 2012
973
+ Processing by ActsAsMonitor::MonitorsController#show as JS
974
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
975
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
976
+ Completed 200 OK in 14ms (Views: 3.6ms | ActiveRecord: 0.2ms)
977
+
978
+
979
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass&id=2" for 10.1.1.132 at Thu May 24 18:46:56 +0200 2012
980
+ Processing by ActsAsMonitor::MonitorsController#show as JS
981
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
982
+ TestClass Load (0.1ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
983
+ Completed 200 OK in 13ms (Views: 3.3ms | ActiveRecord: 0.1ms)
984
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
985
+
986
+
987
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:48:28 +0200 2012
988
+ Processing by HomesController#index as HTML
989
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
990
+ Rendered homes/index.html.erb within layouts/application (75.3ms)
991
+ Completed 200 OK in 82ms (Views: 80.8ms | ActiveRecord: 0.5ms)
992
+
993
+
994
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:48:32 +0200 2012
995
+ Processing by ActsAsMonitor::MonitorsController#show as JS
996
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
997
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
998
+ Completed 200 OK in 14ms (Views: 3.3ms | ActiveRecord: 0.2ms)
999
+
1000
+
1001
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass&id=2" for 10.1.1.132 at Thu May 24 18:48:37 +0200 2012
1002
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1003
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
1004
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
1005
+ Completed 200 OK in 14ms (Views: 3.3ms | ActiveRecord: 0.2ms)
1006
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1007
+
1008
+
1009
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:48:50 +0200 2012
1010
+ Processing by HomesController#index as HTML
1011
+ TestClass Load (1.1ms) SELECT "test_classes".* FROM "test_classes"
1012
+ Rendered homes/index.html.erb within layouts/application (106.9ms)
1013
+ Completed 200 OK in 114ms (Views: 112.0ms | ActiveRecord: 1.1ms)
1014
+
1015
+
1016
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:48:54 +0200 2012
1017
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1018
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1019
+ SQL (0.5ms) SELECT name
1020
+ FROM sqlite_master
1021
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1022
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1023
+ Completed 200 OK in 15ms (Views: 3.5ms | ActiveRecord: 0.7ms)
1024
+
1025
+
1026
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:49:26 +0200 2012
1027
+ Processing by HomesController#index as HTML
1028
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1029
+ Rendered homes/index.html.erb within layouts/application (17.4ms)
1030
+ Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.5ms)
1031
+
1032
+
1033
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:49:30 +0200 2012
1034
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1035
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1036
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1037
+ Completed 200 OK in 14ms (Views: 3.5ms | ActiveRecord: 0.2ms)
1038
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1039
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1040
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1041
+
1042
+
1043
+ Started GET "/" for 10.1.1.132 at Thu May 24 18:52:19 +0200 2012
1044
+ Processing by HomesController#index as HTML
1045
+ TestClass Load (1.3ms) SELECT "test_classes".* FROM "test_classes"
1046
+ Rendered homes/index.html.erb within layouts/application (107.2ms)
1047
+ Completed 200 OK in 114ms (Views: 112.0ms | ActiveRecord: 1.3ms)
1048
+
1049
+
1050
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:52:23 +0200 2012
1051
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1052
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1053
+ SQL (0.5ms) SELECT name
1054
+ FROM sqlite_master
1055
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1056
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1057
+ Completed 200 OK in 14ms (Views: 3.4ms | ActiveRecord: 0.7ms)
1058
+
1059
+
1060
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 18:54:48 +0200 2012
1061
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1062
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1063
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1064
+ Completed 200 OK in 14ms (Views: 3.4ms | ActiveRecord: 0.2ms)
1065
+
1066
+
1067
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass&id=2" for 10.1.1.132 at Thu May 24 18:55:50 +0200 2012
1068
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1069
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
1070
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
1071
+ Completed 200 OK in 15ms (Views: 3.6ms | ActiveRecord: 0.2ms)
1072
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1073
+
1074
+
1075
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:06:57 +0200 2012
1076
+ Processing by HomesController#index as HTML
1077
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1078
+ Rendered homes/index.html.erb within layouts/application (21.9ms)
1079
+ Completed 200 OK in 86ms (Views: 84.7ms | ActiveRecord: 0.5ms)
1080
+
1081
+
1082
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:07:01 +0200 2012
1083
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1084
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1085
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1086
+ Completed 200 OK in 14ms (Views: 3.5ms | ActiveRecord: 0.2ms)
1087
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1088
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1089
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1090
+
1091
+
1092
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:32:23 +0200 2012
1093
+ Processing by HomesController#index as HTML
1094
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
1095
+ Rendered homes/index.html.erb within layouts/application (107.4ms)
1096
+ Completed 200 OK in 114ms (Views: 112.4ms | ActiveRecord: 1.2ms)
1097
+
1098
+
1099
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:32:27 +0200 2012
1100
+ Processing by HomesController#index as HTML
1101
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1102
+ Rendered homes/index.html.erb within layouts/application (18.1ms)
1103
+ Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.5ms)
1104
+
1105
+
1106
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:32:30 +0200 2012
1107
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1108
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1109
+ SQL (0.5ms)  SELECT name
1110
+ FROM sqlite_master
1111
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1112
+ 
1113
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1114
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.1ms)
1115
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.6ms)
1116
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1117
+
1118
+
1119
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:33:22 +0200 2012
1120
+ Processing by HomesController#index as HTML
1121
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1122
+ Rendered homes/index.html.erb within layouts/application (17.8ms)
1123
+ Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.5ms)
1124
+
1125
+
1126
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:33:26 +0200 2012
1127
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1128
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1129
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1130
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.2ms)
1131
+ Completed 200 OK in 28ms (Views: 3.4ms | ActiveRecord: 0.2ms)
1132
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1133
+
1134
+
1135
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:40:10 +0200 2012
1136
+ Processing by HomesController#index as HTML
1137
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1138
+ Rendered homes/index.html.erb within layouts/application (76.9ms)
1139
+ Completed 200 OK in 84ms (Views: 83.1ms | ActiveRecord: 0.5ms)
1140
+
1141
+
1142
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:40:14 +0200 2012
1143
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1144
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1145
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1146
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.2ms)
1147
+ Completed 200 OK in 26ms (Views: 3.3ms | ActiveRecord: 0.2ms)
1148
+
1149
+
1150
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass&id=2" for 10.1.1.132 at Thu May 24 19:40:25 +0200 2012
1151
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1152
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
1153
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
1154
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.0ms)
1155
+ Completed 200 OK in 24ms (Views: 3.1ms | ActiveRecord: 0.2ms)
1156
+
1157
+
1158
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:40:35 +0200 2012
1159
+ Processing by HomesController#index as HTML
1160
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1161
+ Rendered homes/index.html.erb within layouts/application (19.7ms)
1162
+ Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.5ms)
1163
+
1164
+
1165
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:40:39 +0200 2012
1166
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1167
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1168
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1169
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.1ms)
1170
+ Completed 200 OK in 26ms (Views: 3.2ms | ActiveRecord: 0.2ms)
1171
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1172
+
1173
+
1174
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:43:56 +0200 2012
1175
+ Processing by HomesController#index as HTML
1176
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1177
+ Rendered homes/index.html.erb within layouts/application (17.3ms)
1178
+ Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.5ms)
1179
+
1180
+
1181
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:44:00 +0200 2012
1182
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1183
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1184
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1185
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.3ms)
1186
+ Completed 200 OK in 26ms (Views: 3.3ms | ActiveRecord: 0.2ms)
1187
+
1188
+
1189
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:44:40 +0200 2012
1190
+ Processing by HomesController#index as HTML
1191
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1192
+ Rendered homes/index.html.erb within layouts/application (17.7ms)
1193
+ Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.5ms)
1194
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1195
+
1196
+
1197
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:46:37 +0200 2012
1198
+ Processing by HomesController#index as HTML
1199
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1200
+ Rendered homes/index.html.erb within layouts/application (16.7ms)
1201
+ Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.5ms)
1202
+
1203
+
1204
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:46:45 +0200 2012
1205
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1206
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1207
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1208
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.1ms)
1209
+ Completed 200 OK in 26ms (Views: 3.2ms | ActiveRecord: 0.2ms)
1210
+
1211
+
1212
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:46:53 +0200 2012
1213
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1214
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1215
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1216
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.2ms)
1217
+ Completed 200 OK in 26ms (Views: 3.2ms | ActiveRecord: 0.2ms)
1218
+
1219
+
1220
+ Started GET "/%3Ch1%3ERisposta%20ad%20ajax%3C/h1%3E" for 10.1.1.132 at Thu May 24 19:46:56 +0200 2012
1221
+
1222
+ ActionController::RoutingError (No route matches "/%3Ch1%3ERisposta%20ad%20ajax%3C/h1%3E"):
1223
+
1224
+
1225
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
1226
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1227
+
1228
+
1229
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:50:28 +0200 2012
1230
+ Processing by HomesController#index as HTML
1231
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1232
+ Rendered homes/index.html.erb within layouts/application (16.8ms)
1233
+ Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.5ms)
1234
+
1235
+
1236
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:50:32 +0200 2012
1237
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1238
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1239
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1240
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.0ms)
1241
+ Completed 200 OK in 25ms (Views: 3.1ms | ActiveRecord: 0.2ms)
1242
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1243
+
1244
+
1245
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:51:23 +0200 2012
1246
+ Processing by HomesController#index as HTML
1247
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1248
+ Rendered homes/index.html.erb within layouts/application (17.2ms)
1249
+ Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.5ms)
1250
+
1251
+
1252
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:51:27 +0200 2012
1253
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1254
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1255
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1256
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.4ms)
1257
+ Completed 200 OK in 80ms (Views: 3.4ms | ActiveRecord: 0.2ms)
1258
+
1259
+
1260
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:51:36 +0200 2012
1261
+ Processing by HomesController#index as HTML
1262
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1263
+ Rendered homes/index.html.erb within layouts/application (18.2ms)
1264
+ Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.5ms)
1265
+
1266
+
1267
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:51:41 +0200 2012
1268
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1269
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1270
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1271
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.1ms)
1272
+ Completed 200 OK in 25ms (Views: 3.1ms | ActiveRecord: 0.2ms)
1273
+
1274
+
1275
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 19:52:26 +0200 2012
1276
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1277
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1278
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1279
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.0ms)
1280
+ Completed 200 OK in 25ms (Views: 3.1ms | ActiveRecord: 0.2ms)
1281
+
1282
+
1283
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass&id=2" for 10.1.1.132 at Thu May 24 19:53:38 +0200 2012
1284
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1285
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
1286
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
1287
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.1ms)
1288
+ Completed 200 OK in 26ms (Views: 3.2ms | ActiveRecord: 0.2ms)
1289
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1290
+
1291
+
1292
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:59:02 +0200 2012
1293
+ Processing by HomesController#index as HTML
1294
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1295
+ Rendered homes/index.html.erb within layouts/application (17.6ms)
1296
+ Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.5ms)
1297
+
1298
+
1299
+ Started GET "/" for 10.1.1.132 at Thu May 24 19:59:19 +0200 2012
1300
+ Processing by HomesController#index as HTML
1301
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1302
+ Rendered homes/index.html.erb within layouts/application (17.3ms)
1303
+ Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.5ms)
1304
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1305
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1306
+
1307
+
1308
+ Started GET "/" for 10.1.1.132 at Thu May 24 20:00:42 +0200 2012
1309
+ Processing by HomesController#index as HTML
1310
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
1311
+ Rendered homes/index.html.erb within layouts/application (107.1ms)
1312
+ Completed 200 OK in 115ms (Views: 112.9ms | ActiveRecord: 1.2ms)
1313
+
1314
+
1315
+ Started GET "/" for 10.1.1.132 at Thu May 24 20:01:38 +0200 2012
1316
+ Processing by HomesController#index as HTML
1317
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1318
+ Rendered homes/index.html.erb within layouts/application (18.0ms)
1319
+ Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.5ms)
1320
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1321
+
1322
+
1323
+ Started GET "/" for 10.1.1.132 at Thu May 24 20:02:50 +0200 2012
1324
+ Processing by HomesController#index as HTML
1325
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1326
+ Rendered homes/index.html.erb within layouts/application (17.4ms)
1327
+ Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.5ms)
1328
+
1329
+
1330
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Thu May 24 20:03:40 +0200 2012
1331
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1332
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1333
+ SQL (0.5ms) SELECT name
1334
+ FROM sqlite_master
1335
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1336
+ TestClass Load (0.1ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1337
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.1ms)
1338
+ Completed 200 OK in 29ms (Views: 3.2ms | ActiveRecord: 0.6ms)
1339
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1340
+
1341
+
1342
+ Started GET "/" for 10.1.1.132 at Fri May 25 09:12:07 +0200 2012
1343
+ Processing by HomesController#index as HTML
1344
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
1345
+ Rendered homes/index.html.erb within layouts/application (113.4ms)
1346
+ Completed 200 OK in 120ms (Views: 118.7ms | ActiveRecord: 1.2ms)
1347
+
1348
+
1349
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 09:12:11 +0200 2012
1350
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1351
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1352
+ SQL (0.6ms) SELECT name
1353
+ FROM sqlite_master
1354
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1355
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1356
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.2ms)
1357
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.7ms)
1358
+
1359
+
1360
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 09:12:15 +0200 2012
1361
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1362
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1363
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1364
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (2.1ms)
1365
+ Completed 200 OK in 25ms (Views: 3.1ms | ActiveRecord: 0.2ms)
1366
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1367
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1368
+
1369
+
1370
+ Started GET "/" for 10.1.1.132 at Fri May 25 09:20:21 +0200 2012
1371
+ Processing by HomesController#index as HTML
1372
+ TestClass Load (1.3ms) SELECT "test_classes".* FROM "test_classes"
1373
+ Rendered homes/index.html.erb within layouts/application (112.3ms)
1374
+ Completed 200 OK in 119ms (Views: 117.6ms | ActiveRecord: 1.3ms)
1375
+
1376
+
1377
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 09:20:25 +0200 2012
1378
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1379
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1380
+ SQL (0.5ms) SELECT name
1381
+ FROM sqlite_master
1382
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1383
+ TestClass Load (0.1ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1384
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617285518_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:1)
1385
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (3.6ms)
1386
+ Completed 500 Internal Server Error in 27ms
1387
+
1388
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
1389
+ You might have expected an instance of Array.
1390
+ The error occurred while evaluating nil.each):
1391
+ 1: <h1><%= @status.class.human_name %></h1>
1392
+ 2: <h2>Errors:</h2>
1393
+ 3: <ul>
1394
+ 4: <%@status[:error].each do |error| %>
1395
+ 5: <li><%=I18n.t(error, :scope=> "acts_as_monitor.messages", :default => error.to_s) %></li>
1396
+ 6: <% end %>
1397
+ 7: </ul>
1398
+
1399
+
1400
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
1401
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (9.7ms)
1402
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.0ms)
1403
+
1404
+
1405
+ Started GET "/" for 10.1.1.132 at Fri May 25 09:22:34 +0200 2012
1406
+ Processing by HomesController#index as HTML
1407
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1408
+ Rendered homes/index.html.erb within layouts/application (18.3ms)
1409
+ Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.5ms)
1410
+
1411
+
1412
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 09:22:38 +0200 2012
1413
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1414
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1415
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1416
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617226408_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:1)
1417
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (3.7ms)
1418
+ Completed 500 Internal Server Error in 24ms
1419
+
1420
+ ActionView::Template::Error (You have a nil object when you didn't expect it!
1421
+ You might have expected an instance of Array.
1422
+ The error occurred while evaluating nil.each):
1423
+ 2: <h2>Errors:</h2>
1424
+ 3: <% if @status %>
1425
+ 4: <ul>
1426
+ 5: <%@status[:error].each do |error| %>
1427
+ 6: <li><%=I18n.t(error, :scope=> "acts_as_monitor.messages", :default => error.to_s) %></li>
1428
+ 7: <% end %>
1429
+ 8: </ul>
1430
+
1431
+
1432
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1433
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (9.2ms)
1434
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.0ms)
1435
+
1436
+
1437
+ Started GET "/" for 10.1.1.132 at Fri May 25 09:23:41 +0200 2012
1438
+ Processing by HomesController#index as HTML
1439
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1440
+ Rendered homes/index.html.erb within layouts/application (17.0ms)
1441
+ Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.5ms)
1442
+
1443
+
1444
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 09:23:44 +0200 2012
1445
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1446
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1447
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1448
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (1.0ms)
1449
+ Completed 500 Internal Server Error in 24ms
1450
+
1451
+ ActionView::Template::Error (undefined method `human_name' for Hash:Class):
1452
+ 1: <h1><%= @status.class.human_name %></h1>
1453
+ 2: <h2>Errors:</h2>
1454
+ 3: <% if @status %>
1455
+ 4: <ul>
1456
+
1457
+
1458
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1459
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (9.4ms)
1460
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.9ms)
1461
+
1462
+
1463
+ Started GET "/" for 10.1.1.132 at Fri May 25 09:24:59 +0200 2012
1464
+ Processing by HomesController#index as HTML
1465
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1466
+ Rendered homes/index.html.erb within layouts/application (16.8ms)
1467
+ Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.5ms)
1468
+
1469
+
1470
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 09:25:03 +0200 2012
1471
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1472
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1473
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1474
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617169698_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1475
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
1476
+ Completed 200 OK in 28ms (Views: 3.2ms | ActiveRecord: 0.2ms)
1477
+
1478
+
1479
+ Started GET "/" for 10.1.1.132 at Fri May 25 09:28:28 +0200 2012
1480
+ Processing by HomesController#index as HTML
1481
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
1482
+ Rendered homes/index.html.erb within layouts/application (18.1ms)
1483
+ Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.6ms)
1484
+
1485
+
1486
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 09:28:32 +0200 2012
1487
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1488
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1489
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1490
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617112668_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1491
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.3ms)
1492
+ Completed 500 Internal Server Error in 25ms
1493
+
1494
+ ActionView::Template::Error (undefined method `status' for {:warn=>[], :error=>[:error_pippo, :error_id]}:Hash):
1495
+ 4: <% unless @status[:error].blank? %>
1496
+ 5: <h2>Errors:</h2>
1497
+ 6: <ul>
1498
+ 7: <%@status.status[:error].each do |error| %>
1499
+ 8: <li><%=I18n.t(error, :scope=> "acts_as_monitor.messages", :default => error.to_s) %></li>
1500
+ 9: <% end %>
1501
+ 10: </ul>
1502
+
1503
+
1504
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1505
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (9.8ms)
1506
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.2ms)
1507
+
1508
+
1509
+ Started GET "/" for 10.1.1.132 at Fri May 25 09:29:04 +0200 2012
1510
+ Processing by HomesController#index as HTML
1511
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1512
+ Rendered homes/index.html.erb within layouts/application (17.4ms)
1513
+ Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.5ms)
1514
+
1515
+
1516
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 09:29:08 +0200 2012
1517
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1518
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1519
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1520
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617046708_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1521
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.4ms)
1522
+ Completed 200 OK in 28ms (Views: 3.3ms | ActiveRecord: 0.2ms)
1523
+
1524
+
1525
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass&id=2" for 10.1.1.132 at Fri May 25 09:29:12 +0200 2012
1526
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1527
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
1528
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
1529
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617346278_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1530
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.2ms)
1531
+ Completed 200 OK in 28ms (Views: 3.2ms | ActiveRecord: 0.2ms)
1532
+
1533
+
1534
+ Started GET "/acts_as_monitor/show:1" for 10.1.1.132 at Fri May 25 09:33:16 +0200 2012
1535
+
1536
+ ActionController::RoutingError (No route matches "/acts_as_monitor/show:1"):
1537
+
1538
+
1539
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
1540
+
1541
+
1542
+ Started GET "/acts_as_monitor/monitor/show:1" for 10.1.1.132 at Fri May 25 09:33:30 +0200 2012
1543
+
1544
+ ActionController::RoutingError (No route matches "/acts_as_monitor/monitor/show:1"):
1545
+
1546
+
1547
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
1548
+
1549
+
1550
+ Started GET "/acts_as_monitor/monitors/show:1" for 10.1.1.132 at Fri May 25 09:33:38 +0200 2012
1551
+ Processing by ActsAsMonitor::MonitorsController#show as HTML
1552
+ Parameters: {"id"=>"show:1"}
1553
+ Completed 500 Internal Server Error in 0ms
1554
+
1555
+ TypeError (can't convert nil into String):
1556
+
1557
+
1558
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1559
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.7ms)
1560
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.8ms)
1561
+
1562
+
1563
+ Started GET "/acts_as_monitor/monitors/show:1" for 10.1.1.132 at Fri May 25 09:34:59 +0200 2012
1564
+ Processing by ActsAsMonitor::MonitorsController#show as HTML
1565
+ Parameters: {"id"=>"show:1"}
1566
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb within layouts/application (3.1ms)
1567
+ Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.0ms)
1568
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1569
+
1570
+
1571
+ Started GET "/acts_as_monitor/monitors/show:1" for 10.1.1.132 at Fri May 25 09:39:52 +0200 2012
1572
+ Processing by ActsAsMonitor::MonitorsController#show as HTML
1573
+ Parameters: {"id"=>"show:1"}
1574
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb within layouts/application (10.3ms)
1575
+ Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
1576
+
1577
+
1578
+ Started GET "/" for 10.1.1.132 at Fri May 25 09:40:20 +0200 2012
1579
+ Processing by HomesController#index as HTML
1580
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
1581
+ Rendered homes/index.html.erb within layouts/application (42.2ms)
1582
+ Completed 200 OK in 49ms (Views: 47.6ms | ActiveRecord: 1.2ms)
1583
+
1584
+
1585
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 09:40:23 +0200 2012
1586
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1587
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1588
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (1.1ms)
1589
+ Completed 200 OK in 24ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1590
+
1591
+
1592
+ Started GET "/" for 10.1.1.132 at Fri May 25 09:41:24 +0200 2012
1593
+ Processing by HomesController#index as HTML
1594
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1595
+ Rendered homes/index.html.erb within layouts/application (19.2ms)
1596
+ Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.5ms)
1597
+
1598
+
1599
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 09:41:28 +0200 2012
1600
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1601
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1602
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (1.1ms)
1603
+ Completed 200 OK in 23ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1604
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1605
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/andrea/acts_as_monitor/lib/acts_as_monitor/engine.rb:17)
1606
+
1607
+
1608
+ Started GET "/" for 10.1.1.132 at Fri May 25 09:55:09 +0200 2012
1609
+ Processing by HomesController#index as HTML
1610
+ TestClass Load (1.3ms) SELECT "test_classes".* FROM "test_classes"
1611
+ Rendered homes/index.html.erb within layouts/application (124.5ms)
1612
+ Completed 200 OK in 132ms (Views: 130.1ms | ActiveRecord: 1.3ms)
1613
+
1614
+
1615
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 09:55:13 +0200 2012
1616
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1617
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1618
+ Completed 500 Internal Server Error in 3ms
1619
+
1620
+ NoMethodError (undefined method `monitor_valid?' for #<ActsAsMonitor::MonitorsController:0xb6773cf4>):
1621
+
1622
+
1623
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1624
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (9.3ms)
1625
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
1626
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
1627
+
1628
+
1629
+ Started GET "/" for 10.1.1.132 at Fri May 25 10:00:56 +0200 2012
1630
+ Processing by HomesController#index as HTML
1631
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
1632
+ Rendered homes/index.html.erb within layouts/application (108.8ms)
1633
+ Completed 200 OK in 115ms (Views: 113.7ms | ActiveRecord: 1.2ms)
1634
+
1635
+
1636
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:01:01 +0200 2012
1637
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1638
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1639
+ Completed 500 Internal Server Error in 1ms
1640
+
1641
+ ArgumentError (wrong number of arguments (0 for 1)):
1642
+
1643
+
1644
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
1645
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (12.3ms)
1646
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.9ms)
1647
+
1648
+
1649
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:01:32 +0200 2012
1650
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1651
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1652
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (1.2ms)
1653
+ Completed 200 OK in 27ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1654
+
1655
+
1656
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:05:58 +0200 2012
1657
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1658
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1659
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (1.2ms)
1660
+ Completed 200 OK in 83ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1661
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
1662
+
1663
+
1664
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:06:28 +0200 2012
1665
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1666
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1667
+ SQL (1.3ms)  SELECT name
1668
+ FROM sqlite_master
1669
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1670
+ 
1671
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1672
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__618451978_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1673
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (73.6ms)
1674
+ Completed 200 OK in 133ms (Views: 3.7ms | ActiveRecord: 1.4ms)
1675
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
1676
+
1677
+
1678
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:07:43 +0200 2012
1679
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1680
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1681
+ SQL (1.2ms)  SELECT name
1682
+ FROM sqlite_master
1683
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1684
+ 
1685
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1686
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__618479988_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1687
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (66.2ms)
1688
+ Completed 200 OK in 119ms (Views: 3.4ms | ActiveRecord: 1.4ms)
1689
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
1690
+
1691
+
1692
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:09:19 +0200 2012
1693
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1694
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1695
+ true
1696
+ SQL (1.2ms)  SELECT name
1697
+ FROM sqlite_master
1698
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1699
+ 
1700
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1701
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__619110278_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1702
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (65.2ms)
1703
+ Completed 200 OK in 119ms (Views: 3.5ms | ActiveRecord: 1.4ms)
1704
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
1705
+
1706
+
1707
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:10:46 +0200 2012
1708
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1709
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1710
+ true
1711
+ SQL (1.2ms)  SELECT name
1712
+ FROM sqlite_master
1713
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1714
+ 
1715
+ TestClass Load (0.1ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1716
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__618842558_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1717
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (65.8ms)
1718
+ Completed 200 OK in 119ms (Views: 3.5ms | ActiveRecord: 1.3ms)
1719
+
1720
+
1721
+ Started GET "/acts_as_monitor/monitors/show:1" for 10.1.1.132 at Fri May 25 10:10:58 +0200 2012
1722
+ Processing by ActsAsMonitor::MonitorsController#show as HTML
1723
+ Parameters: {"id"=>"show:1"}
1724
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb within layouts/application (3.3ms)
1725
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
1726
+
1727
+
1728
+ Started GET "/acts_as_monitor/monitors/show:1?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:11:29 +0200 2012
1729
+ Processing by ActsAsMonitor::MonitorsController#show as HTML
1730
+ Parameters: {"class_name"=>"TestClass", "id"=>"show:1"}
1731
+ true
1732
+ TestClass Load (0.1ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 0 LIMIT 1
1733
+ Completed 404 Not Found in 10ms
1734
+
1735
+ ActiveRecord::RecordNotFound (Couldn't find TestClass with ID=show:1):
1736
+
1737
+
1738
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
1739
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.3ms)
1740
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.2ms)
1741
+
1742
+
1743
+ Started GET "/acts_as_monitor/monitors/1?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:11:56 +0200 2012
1744
+ Processing by ActsAsMonitor::MonitorsController#show as HTML
1745
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1746
+ true
1747
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1748
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617880868_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1749
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb within layouts/application (7.0ms)
1750
+ Completed 200 OK in 26ms (Views: 14.9ms | ActiveRecord: 0.3ms)
1751
+
1752
+
1753
+ Started GET "/" for 10.1.1.132 at Fri May 25 10:18:58 +0200 2012
1754
+ Processing by HomesController#index as HTML
1755
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1756
+ Rendered homes/index.html.erb within layouts/application (18.7ms)
1757
+ Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.5ms)
1758
+
1759
+
1760
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:19:02 +0200 2012
1761
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1762
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1763
+ true
1764
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1765
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617527238_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1766
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.9ms)
1767
+ Completed 200 OK in 37ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1768
+
1769
+
1770
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:19:26 +0200 2012
1771
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1772
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1773
+ true
1774
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1775
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616629878_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1776
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
1777
+ Completed 200 OK in 31ms (Views: 3.5ms | ActiveRecord: 0.2ms)
1778
+
1779
+
1780
+ Started GET "/" for 10.1.1.132 at Fri May 25 10:25:22 +0200 2012
1781
+ Processing by HomesController#index as HTML
1782
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1783
+ Rendered homes/index.html.erb within layouts/application (19.0ms)
1784
+ Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.5ms)
1785
+
1786
+
1787
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:26:28 +0200 2012
1788
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1789
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1790
+ true
1791
+ TestClass Load (1.0ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1792
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616621038_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1793
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
1794
+ Completed 200 OK in 87ms (Views: 3.4ms | ActiveRecord: 1.0ms)
1795
+
1796
+
1797
+ Started GET "/" for 10.1.1.132 at Fri May 25 10:29:32 +0200 2012
1798
+ Processing by HomesController#index as HTML
1799
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1800
+ Rendered homes/index.html.erb within layouts/application (18.0ms)
1801
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.5ms)
1802
+
1803
+
1804
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:30:11 +0200 2012
1805
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1806
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1807
+ true
1808
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1809
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617652778_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1810
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.4ms)
1811
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
1812
+
1813
+
1814
+ Started GET "/" for 10.1.1.132 at Fri May 25 10:33:05 +0200 2012
1815
+ Processing by HomesController#index as HTML
1816
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1817
+ Rendered homes/index.html.erb within layouts/application (81.3ms)
1818
+ Completed 200 OK in 89ms (Views: 87.7ms | ActiveRecord: 0.5ms)
1819
+
1820
+
1821
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:33:18 +0200 2012
1822
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1823
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1824
+ true
1825
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1826
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617214598_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1827
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.2ms)
1828
+ Completed 200 OK in 33ms (Views: 3.6ms | ActiveRecord: 0.2ms)
1829
+
1830
+
1831
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:33:51 +0200 2012
1832
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1833
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1834
+ true
1835
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1836
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617691928_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1837
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.3ms)
1838
+ Completed 200 OK in 30ms (Views: 3.4ms | ActiveRecord: 0.2ms)
1839
+
1840
+
1841
+ Started GET "/" for 10.1.1.132 at Fri May 25 10:33:57 +0200 2012
1842
+ Processing by HomesController#index as HTML
1843
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
1844
+ Rendered homes/index.html.erb within layouts/application (19.3ms)
1845
+ Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.5ms)
1846
+
1847
+
1848
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:34:10 +0200 2012
1849
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1850
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1851
+ true
1852
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1853
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617360778_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1854
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.2ms)
1855
+ Completed 200 OK in 33ms (Views: 3.6ms | ActiveRecord: 0.2ms)
1856
+
1857
+
1858
+ Started GET "/acts_as_monitor/monitors/1?class_name=TestClass" for 10.1.1.132 at Fri May 25 10:34:12 +0200 2012
1859
+ Processing by ActsAsMonitor::MonitorsController#show as HTML
1860
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1861
+ true
1862
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1863
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617808098_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1864
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb within layouts/application (64.2ms)
1865
+ Completed 200 OK in 81ms (Views: 71.6ms | ActiveRecord: 0.2ms)
1866
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
1867
+
1868
+
1869
+ Started GET "/" for 10.1.1.132 at Fri May 25 11:06:49 +0200 2012
1870
+ Processing by HomesController#index as HTML
1871
+ Completed 500 Internal Server Error in 8ms
1872
+
1873
+ ActionView::MissingTemplate (Missing template homes/index with {:handlers=>[:erb, :builder, :rjs, :rhtml, :rxml], :locale=>[:en, :en], :formats=>[:html]} in view paths ):
1874
+
1875
+
1876
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
1877
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
1878
+
1879
+
1880
+ Started GET "/" for 10.1.1.132 at Fri May 25 11:09:18 +0200 2012
1881
+ Processing by HomesController#index as HTML
1882
+ Completed 500 Internal Server Error in 8ms
1883
+
1884
+ ActionView::MissingTemplate (Missing template homes/index with {:handlers=>[:erb, :builder, :rjs, :rhtml, :rxml], :locale=>[:en, :en], :formats=>[:html]} in view paths ):
1885
+
1886
+
1887
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.9ms)
1888
+
1889
+
1890
+ Started GET "/" for 10.1.1.132 at Fri May 25 11:09:20 +0200 2012
1891
+ Processing by HomesController#index as HTML
1892
+ Completed 500 Internal Server Error in 49ms
1893
+
1894
+ ActionView::MissingTemplate (Missing template homes/index with {:handlers=>[:erb, :builder, :rjs, :rhtml, :rxml], :locale=>[:en, :en], :formats=>[:html]} in view paths ):
1895
+
1896
+
1897
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
1898
+
1899
+
1900
+ Started GET "/" for 10.1.1.132 at Fri May 25 11:09:22 +0200 2012
1901
+ Processing by HomesController#index as HTML
1902
+ Completed 500 Internal Server Error in 1ms
1903
+
1904
+ ActionView::MissingTemplate (Missing template homes/index with {:handlers=>[:erb, :builder, :rjs, :rhtml, :rxml], :locale=>[:en, :en], :formats=>[:html]} in view paths ):
1905
+
1906
+
1907
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
1908
+
1909
+
1910
+ Started GET "/" for 10.1.1.132 at Fri May 25 11:09:24 +0200 2012
1911
+ Processing by HomesController#index as HTML
1912
+ Completed 500 Internal Server Error in 2ms
1913
+
1914
+ ActionView::MissingTemplate (Missing template homes/index with {:handlers=>[:erb, :builder, :rjs, :rhtml, :rxml], :locale=>[:en, :en], :formats=>[:html]} in view paths ):
1915
+
1916
+
1917
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
1918
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
1919
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
1920
+
1921
+
1922
+ Started GET "/" for 10.1.1.132 at Fri May 25 11:11:33 +0200 2012
1923
+ Processing by HomesController#index as HTML
1924
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
1925
+ Rendered homes/index.html.erb within layouts/application (110.3ms)
1926
+ Completed 200 OK in 117ms (Views: 115.1ms | ActiveRecord: 1.2ms)
1927
+
1928
+
1929
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 11:11:34 +0200 2012
1930
+
1931
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
1932
+
1933
+
1934
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
1935
+
1936
+
1937
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 11:11:35 +0200 2012
1938
+
1939
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
1940
+
1941
+
1942
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
1943
+
1944
+
1945
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 11:11:43 +0200 2012
1946
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1947
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1948
+ true
1949
+ SQL (0.5ms) SELECT name
1950
+ FROM sqlite_master
1951
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1952
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1953
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617770338_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1954
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
1955
+ Completed 200 OK in 34ms (Views: 3.4ms | ActiveRecord: 0.7ms)
1956
+
1957
+
1958
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 11:14:46 +0200 2012
1959
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1960
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1961
+ true
1962
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1963
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616748828_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1964
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.8ms)
1965
+ Completed 200 OK in 89ms (Views: 3.4ms | ActiveRecord: 0.2ms)
1966
+
1967
+
1968
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 11:14:55 +0200 2012
1969
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1970
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1971
+ true
1972
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1973
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617111218_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1974
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
1975
+ Completed 200 OK in 31ms (Views: 3.3ms | ActiveRecord: 0.2ms)
1976
+
1977
+
1978
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass&id=1" for 10.1.1.132 at Fri May 25 11:15:08 +0200 2012
1979
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1980
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
1981
+ true
1982
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
1983
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617465668_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1984
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
1985
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
1986
+
1987
+
1988
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass&id=2" for 10.1.1.132 at Fri May 25 11:15:22 +0200 2012
1989
+ Processing by ActsAsMonitor::MonitorsController#show as JS
1990
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
1991
+ true
1992
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
1993
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617947108_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
1994
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.2ms)
1995
+ Completed 200 OK in 29ms (Views: 3.3ms | ActiveRecord: 0.2ms)
1996
+
1997
+
1998
+ Started GET "/" for 10.1.1.132 at Fri May 25 11:15:52 +0200 2012
1999
+ Processing by HomesController#index as HTML
2000
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2001
+ Rendered homes/index.html.erb within layouts/application (22.1ms)
2002
+ Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.5ms)
2003
+
2004
+
2005
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 11:15:53 +0200 2012
2006
+
2007
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2008
+
2009
+
2010
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2011
+
2012
+
2013
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 11:16:08 +0200 2012
2014
+
2015
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2016
+
2017
+
2018
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2019
+
2020
+
2021
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 11:16:10 +0200 2012
2022
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2023
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2024
+ true
2025
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2026
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617466658_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2027
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.3ms)
2028
+ Completed 200 OK in 29ms (Views: 3.2ms | ActiveRecord: 0.2ms)
2029
+
2030
+
2031
+ Started GET "/" for 10.1.1.132 at Fri May 25 11:17:19 +0200 2012
2032
+ Processing by HomesController#index as HTML
2033
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2034
+ Rendered homes/index.html.erb within layouts/application (18.3ms)
2035
+ Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.5ms)
2036
+
2037
+
2038
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 11:17:19 +0200 2012
2039
+
2040
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2041
+
2042
+
2043
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
2044
+
2045
+
2046
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 11:17:30 +0200 2012
2047
+
2048
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2049
+
2050
+
2051
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2052
+
2053
+
2054
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 11:17:32 +0200 2012
2055
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2056
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2057
+ true
2058
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2059
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617461848_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2060
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
2061
+ Completed 200 OK in 31ms (Views: 3.5ms | ActiveRecord: 0.2ms)
2062
+
2063
+
2064
+ Started GET "/" for 10.1.1.132 at Fri May 25 11:21:22 +0200 2012
2065
+ Processing by HomesController#index as HTML
2066
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2067
+ Rendered homes/index.html.erb within layouts/application (17.6ms)
2068
+ Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.5ms)
2069
+
2070
+
2071
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 11:21:23 +0200 2012
2072
+
2073
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2074
+
2075
+
2076
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
2077
+
2078
+
2079
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 11:21:33 +0200 2012
2080
+
2081
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2082
+
2083
+
2084
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2085
+
2086
+
2087
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 11:21:35 +0200 2012
2088
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2089
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2090
+ true
2091
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2092
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617335238_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2093
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
2094
+ Completed 200 OK in 31ms (Views: 3.3ms | ActiveRecord: 0.2ms)
2095
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
2096
+
2097
+
2098
+ Started GET "/" for 10.1.1.132 at Fri May 25 18:40:55 +0200 2012
2099
+ Processing by HomesController#index as HTML
2100
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
2101
+ Rendered homes/index.html.erb within layouts/application (118.9ms)
2102
+ Completed 200 OK in 126ms (Views: 124.0ms | ActiveRecord: 1.2ms)
2103
+
2104
+
2105
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 18:40:56 +0200 2012
2106
+
2107
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2108
+
2109
+
2110
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
2111
+
2112
+
2113
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 18:40:58 +0200 2012
2114
+
2115
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2116
+
2117
+
2118
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2119
+
2120
+
2121
+ Started GET "/" for 10.1.1.132 at Fri May 25 18:45:15 +0200 2012
2122
+ Processing by HomesController#index as HTML
2123
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
2124
+ Rendered homes/index.html.erb within layouts/application (18.7ms)
2125
+ Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.6ms)
2126
+
2127
+
2128
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 18:45:16 +0200 2012
2129
+
2130
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2131
+
2132
+
2133
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2134
+
2135
+
2136
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 18:45:17 +0200 2012
2137
+
2138
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2139
+
2140
+
2141
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2142
+
2143
+
2144
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 18:53:02 +0200 2012
2145
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2146
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2147
+ true
2148
+ SQL (0.5ms)  SELECT name
2149
+ FROM sqlite_master
2150
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2151
+ 
2152
+ TestClass Load (0.1ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2153
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617001368_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2154
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
2155
+ Completed 200 OK in 33ms (Views: 3.3ms | ActiveRecord: 0.6ms)
2156
+
2157
+
2158
+ Started GET "/" for 10.1.1.132 at Fri May 25 18:56:07 +0200 2012
2159
+ Processing by HomesController#index as HTML
2160
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2161
+ Rendered homes/index.html.erb within layouts/application (18.4ms)
2162
+ Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.5ms)
2163
+
2164
+
2165
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 18:56:08 +0200 2012
2166
+
2167
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2168
+
2169
+
2170
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (62.0ms)
2171
+
2172
+
2173
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 18:56:09 +0200 2012
2174
+
2175
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2176
+
2177
+
2178
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
2179
+
2180
+
2181
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 18:56:12 +0200 2012
2182
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2183
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2184
+ true
2185
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2186
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616880958_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2187
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.2ms)
2188
+ Completed 200 OK in 33ms (Views: 3.6ms | ActiveRecord: 0.2ms)
2189
+
2190
+
2191
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 18:56:31 +0200 2012
2192
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2193
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2194
+ true
2195
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2196
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617254548_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2197
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.3ms)
2198
+ Completed 200 OK in 29ms (Views: 3.2ms | ActiveRecord: 0.2ms)
2199
+
2200
+
2201
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 18:57:01 +0200 2012
2202
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2203
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2204
+ true
2205
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2206
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617700998_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2207
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.4ms)
2208
+ Completed 200 OK in 30ms (Views: 3.5ms | ActiveRecord: 0.2ms)
2209
+
2210
+
2211
+ Started GET "/" for 10.1.1.132 at Fri May 25 18:57:14 +0200 2012
2212
+ Processing by HomesController#index as HTML
2213
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2214
+ Rendered homes/index.html.erb within layouts/application (79.1ms)
2215
+ Completed 200 OK in 86ms (Views: 85.5ms | ActiveRecord: 0.5ms)
2216
+
2217
+
2218
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 18:57:15 +0200 2012
2219
+
2220
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2221
+
2222
+
2223
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2224
+
2225
+
2226
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 18:57:21 +0200 2012
2227
+
2228
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2229
+
2230
+
2231
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2232
+
2233
+
2234
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 18:57:24 +0200 2012
2235
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2236
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2237
+ true
2238
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2239
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617346948_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2240
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
2241
+ Completed 200 OK in 30ms (Views: 3.4ms | ActiveRecord: 0.2ms)
2242
+
2243
+
2244
+ Started GET "/" for 10.1.1.132 at Fri May 25 18:58:43 +0200 2012
2245
+ Processing by HomesController#index as HTML
2246
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2247
+ Rendered homes/index.html.erb within layouts/application (75.5ms)
2248
+ Completed 200 OK in 82ms (Views: 81.2ms | ActiveRecord: 0.5ms)
2249
+
2250
+
2251
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 18:58:43 +0200 2012
2252
+
2253
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2254
+
2255
+
2256
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2257
+
2258
+
2259
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 18:58:52 +0200 2012
2260
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2261
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2262
+ true
2263
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2264
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616768478_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2265
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.3ms)
2266
+ Completed 200 OK in 30ms (Views: 3.2ms | ActiveRecord: 0.2ms)
2267
+
2268
+
2269
+ Started GET "/" for 10.1.1.132 at Fri May 25 19:00:41 +0200 2012
2270
+ Processing by HomesController#index as HTML
2271
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2272
+ Rendered homes/index.html.erb within layouts/application (18.0ms)
2273
+ Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.5ms)
2274
+
2275
+
2276
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:00:42 +0200 2012
2277
+
2278
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2279
+
2280
+
2281
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2282
+
2283
+
2284
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:00:49 +0200 2012
2285
+
2286
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2287
+
2288
+
2289
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
2290
+
2291
+
2292
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 19:00:51 +0200 2012
2293
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2294
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2295
+ true
2296
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2297
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616676938_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2298
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.4ms)
2299
+ Completed 200 OK in 31ms (Views: 3.3ms | ActiveRecord: 0.2ms)
2300
+
2301
+
2302
+ Started GET "/" for 10.1.1.132 at Fri May 25 19:02:20 +0200 2012
2303
+ Processing by HomesController#index as HTML
2304
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2305
+ Rendered homes/index.html.erb within layouts/application (18.4ms)
2306
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.5ms)
2307
+
2308
+
2309
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:02:20 +0200 2012
2310
+
2311
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2312
+
2313
+
2314
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2315
+
2316
+
2317
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:02:26 +0200 2012
2318
+
2319
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2320
+
2321
+
2322
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2323
+
2324
+
2325
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 19:02:28 +0200 2012
2326
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2327
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2328
+ true
2329
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2330
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616559928_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2331
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.4ms)
2332
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
2333
+
2334
+
2335
+ Started GET "/" for 10.1.1.132 at Fri May 25 19:06:29 +0200 2012
2336
+ Processing by HomesController#index as HTML
2337
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2338
+ Rendered homes/index.html.erb within layouts/application (18.5ms)
2339
+ Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.5ms)
2340
+
2341
+
2342
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:06:29 +0200 2012
2343
+
2344
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2345
+
2346
+
2347
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2348
+
2349
+
2350
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:06:37 +0200 2012
2351
+
2352
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2353
+
2354
+
2355
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2356
+
2357
+
2358
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 19:06:38 +0200 2012
2359
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2360
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2361
+ true
2362
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2363
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616475368_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2364
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.8ms)
2365
+ Completed 200 OK in 32ms (Views: 3.5ms | ActiveRecord: 0.2ms)
2366
+
2367
+
2368
+ Started GET "/" for 10.1.1.132 at Fri May 25 19:09:28 +0200 2012
2369
+ Processing by HomesController#index as HTML
2370
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2371
+ Rendered homes/index.html.erb within layouts/application (19.4ms)
2372
+ Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.5ms)
2373
+
2374
+
2375
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:09:29 +0200 2012
2376
+
2377
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2378
+
2379
+
2380
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2381
+
2382
+
2383
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:09:33 +0200 2012
2384
+
2385
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2386
+
2387
+
2388
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2389
+
2390
+
2391
+ Started GET "/" for 10.1.1.132 at Fri May 25 19:10:32 +0200 2012
2392
+ Processing by HomesController#index as HTML
2393
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2394
+ Rendered homes/index.html.erb within layouts/application (19.3ms)
2395
+ Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.5ms)
2396
+
2397
+
2398
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:10:32 +0200 2012
2399
+
2400
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2401
+
2402
+
2403
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2404
+
2405
+
2406
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:10:39 +0200 2012
2407
+
2408
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2409
+
2410
+
2411
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2412
+
2413
+
2414
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 19:10:42 +0200 2012
2415
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2416
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2417
+ true
2418
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2419
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617597658_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2420
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.8ms)
2421
+ Completed 200 OK in 33ms (Views: 3.7ms | ActiveRecord: 0.2ms)
2422
+
2423
+
2424
+ Started GET "/" for 10.1.1.132 at Fri May 25 19:12:21 +0200 2012
2425
+ Processing by HomesController#index as HTML
2426
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2427
+ Rendered homes/index.html.erb within layouts/application (19.1ms)
2428
+ Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.5ms)
2429
+
2430
+
2431
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:12:21 +0200 2012
2432
+
2433
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2434
+
2435
+
2436
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2437
+
2438
+
2439
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Fri May 25 19:12:28 +0200 2012
2440
+
2441
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2442
+
2443
+
2444
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2445
+
2446
+
2447
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Fri May 25 19:12:29 +0200 2012
2448
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2449
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2450
+ true
2451
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2452
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617561218_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2453
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.2ms)
2454
+ Completed 200 OK in 29ms (Views: 3.2ms | ActiveRecord: 0.2ms)
2455
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
2456
+
2457
+
2458
+ Started GET "/" for 10.1.1.132 at Mon May 28 09:38:29 +0200 2012
2459
+ Processing by HomesController#index as HTML
2460
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
2461
+ Rendered homes/index.html.erb within layouts/application (109.8ms)
2462
+ Completed 200 OK in 116ms (Views: 114.9ms | ActiveRecord: 1.2ms)
2463
+
2464
+
2465
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 09:38:30 +0200 2012
2466
+
2467
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2468
+
2469
+
2470
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
2471
+
2472
+
2473
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 09:38:37 +0200 2012
2474
+
2475
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2476
+
2477
+
2478
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2479
+
2480
+
2481
+ Started GET "/" for 10.1.1.132 at Mon May 28 09:41:18 +0200 2012
2482
+ Processing by HomesController#index as HTML
2483
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
2484
+ Rendered homes/index.html.erb within layouts/application (19.0ms)
2485
+ Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.6ms)
2486
+
2487
+
2488
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 09:41:19 +0200 2012
2489
+
2490
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2491
+
2492
+
2493
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2494
+
2495
+
2496
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 09:41:24 +0200 2012
2497
+
2498
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2499
+
2500
+
2501
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2502
+
2503
+
2504
+ Started GET "/" for 10.1.1.132 at Mon May 28 09:45:25 +0200 2012
2505
+ Processing by HomesController#index as HTML
2506
+ TestClass Load (0.7ms) SELECT "test_classes".* FROM "test_classes"
2507
+ Rendered homes/index.html.erb within layouts/application (19.5ms)
2508
+ Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.7ms)
2509
+
2510
+
2511
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 09:45:25 +0200 2012
2512
+
2513
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2514
+
2515
+
2516
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2517
+
2518
+
2519
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 09:45:29 +0200 2012
2520
+
2521
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2522
+
2523
+
2524
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2525
+
2526
+
2527
+ Started GET "/" for 10.1.1.132 at Mon May 28 09:46:29 +0200 2012
2528
+ Processing by HomesController#index as HTML
2529
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2530
+ Rendered homes/index.html.erb within layouts/application (18.3ms)
2531
+ Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.5ms)
2532
+
2533
+
2534
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 09:46:30 +0200 2012
2535
+
2536
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2537
+
2538
+
2539
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2540
+
2541
+
2542
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 09:46:35 +0200 2012
2543
+
2544
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2545
+
2546
+
2547
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2548
+
2549
+
2550
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 09:48:00 +0200 2012
2551
+
2552
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2553
+
2554
+
2555
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2556
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
2557
+
2558
+
2559
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:07:35 +0200 2012
2560
+ Processing by HomesController#index as HTML
2561
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
2562
+ Rendered homes/index.html.erb within layouts/application (113.0ms)
2563
+ Completed 200 OK in 120ms (Views: 118.1ms | ActiveRecord: 1.2ms)
2564
+
2565
+
2566
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:07:36 +0200 2012
2567
+
2568
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2569
+
2570
+
2571
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2572
+
2573
+
2574
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:07:44 +0200 2012
2575
+
2576
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2577
+
2578
+
2579
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2580
+
2581
+
2582
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:08:37 +0200 2012
2583
+ Processing by HomesController#index as HTML
2584
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
2585
+ Rendered homes/index.html.erb within layouts/application (19.5ms)
2586
+ Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.6ms)
2587
+
2588
+
2589
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:08:39 +0200 2012
2590
+
2591
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2592
+
2593
+
2594
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2595
+
2596
+
2597
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:08:47 +0200 2012
2598
+
2599
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2600
+
2601
+
2602
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2603
+
2604
+
2605
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:09:51 +0200 2012
2606
+ Processing by HomesController#index as HTML
2607
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2608
+ Rendered homes/index.html.erb within layouts/application (19.8ms)
2609
+ Completed 200 OK in 27ms (Views: 26.3ms | ActiveRecord: 0.5ms)
2610
+
2611
+
2612
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:09:52 +0200 2012
2613
+
2614
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2615
+
2616
+
2617
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2618
+
2619
+
2620
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:09:57 +0200 2012
2621
+
2622
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2623
+
2624
+
2625
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2626
+
2627
+
2628
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:10:05 +0200 2012
2629
+ Processing by HomesController#index as HTML
2630
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2631
+ Rendered homes/index.html.erb within layouts/application (19.0ms)
2632
+ Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.5ms)
2633
+
2634
+
2635
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:10:07 +0200 2012
2636
+
2637
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2638
+
2639
+
2640
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2641
+
2642
+
2643
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:10:13 +0200 2012
2644
+
2645
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2646
+
2647
+
2648
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2649
+
2650
+
2651
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:10:59 +0200 2012
2652
+ Processing by HomesController#index as HTML
2653
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2654
+ Rendered homes/index.html.erb within layouts/application (77.8ms)
2655
+ Completed 200 OK in 85ms (Views: 83.8ms | ActiveRecord: 0.5ms)
2656
+
2657
+
2658
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:11:01 +0200 2012
2659
+
2660
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2661
+
2662
+
2663
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2664
+
2665
+
2666
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:11:11 +0200 2012
2667
+
2668
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2669
+
2670
+
2671
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2672
+
2673
+
2674
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:11:45 +0200 2012
2675
+ Processing by HomesController#index as HTML
2676
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2677
+ Rendered homes/index.html.erb within layouts/application (18.8ms)
2678
+ Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.5ms)
2679
+
2680
+
2681
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:11:46 +0200 2012
2682
+
2683
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2684
+
2685
+
2686
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2687
+
2688
+
2689
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:11:53 +0200 2012
2690
+
2691
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2692
+
2693
+
2694
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2695
+
2696
+
2697
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:12:15 +0200 2012
2698
+ Processing by HomesController#index as HTML
2699
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2700
+ Rendered homes/index.html.erb within layouts/application (18.5ms)
2701
+ Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.5ms)
2702
+
2703
+
2704
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:12:16 +0200 2012
2705
+
2706
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2707
+
2708
+
2709
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2710
+
2711
+
2712
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:12:22 +0200 2012
2713
+
2714
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2715
+
2716
+
2717
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
2718
+
2719
+
2720
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:13:12 +0200 2012
2721
+ Processing by HomesController#index as HTML
2722
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
2723
+ Rendered homes/index.html.erb within layouts/application (19.4ms)
2724
+ Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.6ms)
2725
+
2726
+
2727
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:13:12 +0200 2012
2728
+
2729
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2730
+
2731
+
2732
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2733
+
2734
+
2735
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:13:17 +0200 2012
2736
+
2737
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2738
+
2739
+
2740
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2741
+
2742
+
2743
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:13:24 +0200 2012
2744
+ Processing by HomesController#index as HTML
2745
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2746
+ Rendered homes/index.html.erb within layouts/application (79.1ms)
2747
+ Completed 200 OK in 86ms (Views: 84.6ms | ActiveRecord: 0.5ms)
2748
+
2749
+
2750
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:13:25 +0200 2012
2751
+
2752
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2753
+
2754
+
2755
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
2756
+
2757
+
2758
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:13:33 +0200 2012
2759
+
2760
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2761
+
2762
+
2763
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2764
+
2765
+
2766
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:14:37 +0200 2012
2767
+ Processing by HomesController#index as HTML
2768
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2769
+ Rendered homes/index.html.erb within layouts/application (18.9ms)
2770
+ Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.5ms)
2771
+
2772
+
2773
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:14:39 +0200 2012
2774
+
2775
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2776
+
2777
+
2778
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2779
+
2780
+
2781
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:14:47 +0200 2012
2782
+
2783
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2784
+
2785
+
2786
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2787
+
2788
+
2789
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:15:41 +0200 2012
2790
+ Processing by HomesController#index as HTML
2791
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2792
+ Rendered homes/index.html.erb within layouts/application (18.4ms)
2793
+ Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.5ms)
2794
+
2795
+
2796
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:15:42 +0200 2012
2797
+
2798
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2799
+
2800
+
2801
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2802
+
2803
+
2804
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:15:46 +0200 2012
2805
+
2806
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2807
+
2808
+
2809
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2810
+
2811
+
2812
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:22:19 +0200 2012
2813
+ Processing by HomesController#index as HTML
2814
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2815
+ Rendered homes/index.html.erb within layouts/application (18.5ms)
2816
+ Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.5ms)
2817
+
2818
+
2819
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:22:20 +0200 2012
2820
+
2821
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2822
+
2823
+
2824
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
2825
+
2826
+
2827
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:22:25 +0200 2012
2828
+
2829
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2830
+
2831
+
2832
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
2833
+
2834
+
2835
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:22:37 +0200 2012
2836
+ Processing by HomesController#index as HTML
2837
+ TestClass Load (58.7ms) SELECT "test_classes".* FROM "test_classes"
2838
+ Rendered homes/index.html.erb within layouts/application (78.4ms)
2839
+ Completed 200 OK in 85ms (Views: 26.0ms | ActiveRecord: 58.7ms)
2840
+
2841
+
2842
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:22:38 +0200 2012
2843
+
2844
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2845
+
2846
+
2847
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2848
+
2849
+
2850
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:22:42 +0200 2012
2851
+
2852
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2853
+
2854
+
2855
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2856
+
2857
+
2858
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:23:46 +0200 2012
2859
+ Processing by HomesController#index as HTML
2860
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2861
+ Rendered homes/index.html.erb within layouts/application (18.7ms)
2862
+ Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.5ms)
2863
+
2864
+
2865
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:23:47 +0200 2012
2866
+
2867
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2868
+
2869
+
2870
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2871
+
2872
+
2873
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:23:56 +0200 2012
2874
+
2875
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2876
+
2877
+
2878
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2879
+
2880
+
2881
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:24:11 +0200 2012
2882
+ Processing by ActsAsMonitor::MonitorsController#show as JS
2883
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
2884
+ true
2885
+ SQL (0.5ms)  SELECT name
2886
+ FROM sqlite_master
2887
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2888
+ 
2889
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
2890
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616885218_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
2891
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
2892
+ Completed 200 OK in 33ms (Views: 3.2ms | ActiveRecord: 0.7ms)
2893
+
2894
+
2895
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:27:23 +0200 2012
2896
+ Processing by HomesController#index as HTML
2897
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2898
+ Rendered homes/index.html.erb within layouts/application (18.0ms)
2899
+ Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.5ms)
2900
+
2901
+
2902
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:27:23 +0200 2012
2903
+
2904
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2905
+
2906
+
2907
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2908
+
2909
+
2910
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:27:29 +0200 2012
2911
+
2912
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2913
+
2914
+
2915
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2916
+
2917
+
2918
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:28:50 +0200 2012
2919
+ Processing by HomesController#index as HTML
2920
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2921
+ Rendered homes/index.html.erb within layouts/application (18.8ms)
2922
+ Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.5ms)
2923
+
2924
+
2925
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:28:51 +0200 2012
2926
+
2927
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2928
+
2929
+
2930
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2931
+
2932
+
2933
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:28:56 +0200 2012
2934
+
2935
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2936
+
2937
+
2938
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
2939
+
2940
+
2941
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:35:15 +0200 2012
2942
+ Processing by HomesController#index as HTML
2943
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2944
+ Rendered homes/index.html.erb within layouts/application (18.5ms)
2945
+ Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.5ms)
2946
+
2947
+
2948
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:35:16 +0200 2012
2949
+
2950
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2951
+
2952
+
2953
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2954
+
2955
+
2956
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:35:22 +0200 2012
2957
+
2958
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2959
+
2960
+
2961
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
2962
+
2963
+
2964
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:36:15 +0200 2012
2965
+ Processing by HomesController#index as HTML
2966
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2967
+ Rendered homes/index.html.erb within layouts/application (17.8ms)
2968
+ Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.5ms)
2969
+
2970
+
2971
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:36:15 +0200 2012
2972
+
2973
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2974
+
2975
+
2976
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2977
+
2978
+
2979
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:36:24 +0200 2012
2980
+
2981
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2982
+
2983
+
2984
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
2985
+
2986
+
2987
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:42:59 +0200 2012
2988
+ Processing by HomesController#index as HTML
2989
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
2990
+ Rendered homes/index.html.erb within layouts/application (18.2ms)
2991
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.5ms)
2992
+
2993
+
2994
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:43:00 +0200 2012
2995
+
2996
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
2997
+
2998
+
2999
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (57.8ms)
3000
+
3001
+
3002
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:43:04 +0200 2012
3003
+
3004
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3005
+
3006
+
3007
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3008
+
3009
+
3010
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:44:22 +0200 2012
3011
+ Processing by HomesController#index as HTML
3012
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3013
+ Rendered homes/index.html.erb within layouts/application (18.4ms)
3014
+ Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.5ms)
3015
+
3016
+
3017
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:44:23 +0200 2012
3018
+
3019
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3020
+
3021
+
3022
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3023
+
3024
+
3025
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:44:28 +0200 2012
3026
+
3027
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3028
+
3029
+
3030
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3031
+
3032
+
3033
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:44:32 +0200 2012
3034
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3035
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3036
+ true
3037
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3038
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616655938_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3039
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
3040
+ Completed 200 OK in 31ms (Views: 3.4ms | ActiveRecord: 0.2ms)
3041
+
3042
+
3043
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:44:40 +0200 2012
3044
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3045
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
3046
+ true
3047
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
3048
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617019638_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3049
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.2ms)
3050
+ Completed 200 OK in 29ms (Views: 3.2ms | ActiveRecord: 0.2ms)
3051
+
3052
+
3053
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:48:01 +0200 2012
3054
+ Processing by HomesController#index as HTML
3055
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3056
+ Rendered homes/index.html.erb within layouts/application (17.8ms)
3057
+ Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.5ms)
3058
+
3059
+
3060
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:48:07 +0200 2012
3061
+
3062
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3063
+
3064
+
3065
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3066
+
3067
+
3068
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:48:16 +0200 2012
3069
+
3070
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3071
+
3072
+
3073
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3074
+
3075
+
3076
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:48:23 +0200 2012
3077
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3078
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3079
+ true
3080
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3081
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616793338_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3082
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
3083
+ Completed 200 OK in 31ms (Views: 4.0ms | ActiveRecord: 0.2ms)
3084
+
3085
+
3086
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:49:42 +0200 2012
3087
+ Processing by HomesController#index as HTML
3088
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3089
+ Rendered homes/index.html.erb within layouts/application (18.3ms)
3090
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.5ms)
3091
+
3092
+
3093
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:49:43 +0200 2012
3094
+
3095
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3096
+
3097
+
3098
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3099
+
3100
+
3101
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:49:47 +0200 2012
3102
+
3103
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3104
+
3105
+
3106
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
3107
+
3108
+
3109
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:49:51 +0200 2012
3110
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3111
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3112
+ true
3113
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3114
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616724358_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3115
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
3116
+ Completed 200 OK in 31ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3117
+
3118
+
3119
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:50:07 +0200 2012
3120
+ Processing by HomesController#index as HTML
3121
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3122
+ Rendered homes/index.html.erb within layouts/application (18.7ms)
3123
+ Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.5ms)
3124
+
3125
+
3126
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:50:08 +0200 2012
3127
+
3128
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3129
+
3130
+
3131
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3132
+
3133
+
3134
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:50:12 +0200 2012
3135
+
3136
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3137
+
3138
+
3139
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3140
+
3141
+
3142
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:50:17 +0200 2012
3143
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3144
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3145
+ true
3146
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3147
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616687958_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3148
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
3149
+ Completed 200 OK in 32ms (Views: 3.8ms | ActiveRecord: 0.2ms)
3150
+
3151
+
3152
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:51:32 +0200 2012
3153
+ Processing by HomesController#index as HTML
3154
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3155
+ Rendered homes/index.html.erb within layouts/application (18.2ms)
3156
+ Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.5ms)
3157
+
3158
+
3159
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:51:33 +0200 2012
3160
+
3161
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3162
+
3163
+
3164
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
3165
+
3166
+
3167
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:51:38 +0200 2012
3168
+
3169
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3170
+
3171
+
3172
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3173
+
3174
+
3175
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:51:41 +0200 2012
3176
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3177
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3178
+ true
3179
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3180
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616460728_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3181
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.9ms)
3182
+ Completed 200 OK in 34ms (Views: 3.6ms | ActiveRecord: 0.2ms)
3183
+
3184
+
3185
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:52:29 +0200 2012
3186
+ Processing by HomesController#index as HTML
3187
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3188
+ Rendered homes/index.html.erb within layouts/application (19.1ms)
3189
+ Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.5ms)
3190
+
3191
+
3192
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:52:31 +0200 2012
3193
+
3194
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3195
+
3196
+
3197
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3198
+
3199
+
3200
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:52:37 +0200 2012
3201
+
3202
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3203
+
3204
+
3205
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3206
+
3207
+
3208
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:52:43 +0200 2012
3209
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3210
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3211
+ true
3212
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3213
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616354818_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3214
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.0ms)
3215
+ Completed 200 OK in 34ms (Views: 3.6ms | ActiveRecord: 0.2ms)
3216
+
3217
+
3218
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:53:15 +0200 2012
3219
+ Processing by HomesController#index as HTML
3220
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3221
+ Rendered homes/index.html.erb within layouts/application (19.0ms)
3222
+ Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.5ms)
3223
+
3224
+
3225
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:53:16 +0200 2012
3226
+
3227
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3228
+
3229
+
3230
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
3231
+
3232
+
3233
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:53:20 +0200 2012
3234
+
3235
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3236
+
3237
+
3238
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3239
+
3240
+
3241
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:53:23 +0200 2012
3242
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3243
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3244
+ true
3245
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3246
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616283608_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3247
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (6.0ms)
3248
+ Completed 200 OK in 99ms (Views: 3.8ms | ActiveRecord: 0.2ms)
3249
+
3250
+
3251
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:56:24 +0200 2012
3252
+ Processing by HomesController#index as HTML
3253
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3254
+ Rendered homes/index.html.erb within layouts/application (18.7ms)
3255
+ Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.5ms)
3256
+
3257
+
3258
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:56:25 +0200 2012
3259
+
3260
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3261
+
3262
+
3263
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
3264
+
3265
+
3266
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:56:30 +0200 2012
3267
+
3268
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3269
+
3270
+
3271
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3272
+
3273
+
3274
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:56:34 +0200 2012
3275
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3276
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3277
+ true
3278
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3279
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617270628_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3280
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.1ms)
3281
+ Completed 200 OK in 91ms (Views: 3.5ms | ActiveRecord: 0.2ms)
3282
+
3283
+
3284
+ Started GET "/" for 10.1.1.132 at Mon May 28 10:57:57 +0200 2012
3285
+ Processing by HomesController#index as HTML
3286
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3287
+ Rendered homes/index.html.erb within layouts/application (18.4ms)
3288
+ Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.5ms)
3289
+
3290
+
3291
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:57:58 +0200 2012
3292
+
3293
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3294
+
3295
+
3296
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
3297
+
3298
+
3299
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 10:58:02 +0200 2012
3300
+
3301
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3302
+
3303
+
3304
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3305
+
3306
+
3307
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:58:05 +0200 2012
3308
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3309
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3310
+ true
3311
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3312
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617724728_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3313
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
3314
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3315
+
3316
+
3317
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:58:18 +0200 2012
3318
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3319
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3320
+ true
3321
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3322
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616379778_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3323
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
3324
+ Completed 200 OK in 31ms (Views: 3.5ms | ActiveRecord: 0.2ms)
3325
+
3326
+
3327
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 10:58:35 +0200 2012
3328
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3329
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
3330
+ true
3331
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
3332
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616831468_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3333
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
3334
+ Completed 200 OK in 31ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3335
+
3336
+
3337
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:00:31 +0200 2012
3338
+ Processing by HomesController#index as HTML
3339
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3340
+ Rendered homes/index.html.erb within layouts/application (18.4ms)
3341
+ Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.5ms)
3342
+
3343
+
3344
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:00:32 +0200 2012
3345
+
3346
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3347
+
3348
+
3349
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
3350
+
3351
+
3352
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:00:36 +0200 2012
3353
+
3354
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3355
+
3356
+
3357
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
3358
+
3359
+
3360
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:00:39 +0200 2012
3361
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3362
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3363
+ true
3364
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3365
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616699038_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3366
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.2ms)
3367
+ Completed 200 OK in 36ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3368
+
3369
+
3370
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:00:55 +0200 2012
3371
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3372
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3373
+ true
3374
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3375
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617055828_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3376
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
3377
+ Completed 200 OK in 32ms (Views: 3.4ms | ActiveRecord: 0.2ms)
3378
+
3379
+
3380
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:00:59 +0200 2012
3381
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3382
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3383
+ true
3384
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3385
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617525648_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3386
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
3387
+ Completed 200 OK in 31ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3388
+
3389
+
3390
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:01:03 +0200 2012
3391
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3392
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3393
+ true
3394
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3395
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617835988_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3396
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.0ms)
3397
+ Completed 200 OK in 32ms (Views: 3.4ms | ActiveRecord: 0.2ms)
3398
+
3399
+
3400
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:01:08 +0200 2012
3401
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3402
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3403
+ true
3404
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3405
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616287648_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3406
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.2ms)
3407
+ Completed 200 OK in 105ms (Views: 3.8ms | ActiveRecord: 0.2ms)
3408
+
3409
+
3410
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:01:14 +0200 2012
3411
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3412
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
3413
+ true
3414
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
3415
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616657928_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3416
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.3ms)
3417
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3418
+
3419
+
3420
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:01:18 +0200 2012
3421
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3422
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
3423
+ true
3424
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
3425
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617008988_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3426
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
3427
+ Completed 200 OK in 31ms (Views: 3.2ms | ActiveRecord: 0.2ms)
3428
+
3429
+
3430
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:01:21 +0200 2012
3431
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3432
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3433
+ true
3434
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3435
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617450878_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3436
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.2ms)
3437
+ Completed 200 OK in 28ms (Views: 3.1ms | ActiveRecord: 0.2ms)
3438
+
3439
+
3440
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:08:15 +0200 2012
3441
+ Processing by HomesController#index as HTML
3442
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3443
+ Rendered homes/index.html.erb within layouts/application (17.7ms)
3444
+ Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.5ms)
3445
+
3446
+
3447
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:08:16 +0200 2012
3448
+
3449
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3450
+
3451
+
3452
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
3453
+
3454
+
3455
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:08:22 +0200 2012
3456
+
3457
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3458
+
3459
+
3460
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3461
+
3462
+
3463
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:08:33 +0200 2012
3464
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3465
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3466
+ true
3467
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3468
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617006088_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3469
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
3470
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3471
+
3472
+
3473
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:12:48 +0200 2012
3474
+ Processing by HomesController#index as HTML
3475
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3476
+ Rendered homes/index.html.erb within layouts/application (18.2ms)
3477
+ Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.5ms)
3478
+
3479
+
3480
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:12:49 +0200 2012
3481
+
3482
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3483
+
3484
+
3485
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
3486
+
3487
+
3488
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:12:55 +0200 2012
3489
+
3490
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3491
+
3492
+
3493
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3494
+
3495
+
3496
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:12:59 +0200 2012
3497
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3498
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3499
+ true
3500
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3501
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617013228_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3502
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
3503
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3504
+
3505
+
3506
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:15:50 +0200 2012
3507
+ Processing by HomesController#index as HTML
3508
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3509
+ Rendered homes/index.html.erb within layouts/application (18.2ms)
3510
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.5ms)
3511
+
3512
+
3513
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:15:50 +0200 2012
3514
+
3515
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3516
+
3517
+
3518
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3519
+
3520
+
3521
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:15:56 +0200 2012
3522
+
3523
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3524
+
3525
+
3526
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3527
+
3528
+
3529
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:16:03 +0200 2012
3530
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3531
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3532
+ true
3533
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3534
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616928518_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:2)
3535
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.0ms)
3536
+ Completed 200 OK in 32ms (Views: 3.5ms | ActiveRecord: 0.2ms)
3537
+
3538
+
3539
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:24:19 +0200 2012
3540
+ Processing by HomesController#index as HTML
3541
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3542
+ Rendered homes/index.html.erb within layouts/application (18.0ms)
3543
+ Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.5ms)
3544
+
3545
+
3546
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:24:20 +0200 2012
3547
+
3548
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3549
+
3550
+
3551
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
3552
+
3553
+
3554
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:24:25 +0200 2012
3555
+
3556
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3557
+
3558
+
3559
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3560
+
3561
+
3562
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:24:30 +0200 2012
3563
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3564
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3565
+ true
3566
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3567
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616812718_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3568
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.9ms)
3569
+ Completed 200 OK in 32ms (Views: 3.4ms | ActiveRecord: 0.2ms)
3570
+
3571
+
3572
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:24:40 +0200 2012
3573
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3574
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
3575
+ true
3576
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
3577
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617174668_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3578
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.4ms)
3579
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3580
+
3581
+
3582
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:24:53 +0200 2012
3583
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3584
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3585
+ true
3586
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3587
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617612418_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3588
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
3589
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3590
+
3591
+
3592
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:24:57 +0200 2012
3593
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3594
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
3595
+ true
3596
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
3597
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617916848_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3598
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
3599
+ Completed 200 OK in 87ms (Views: 3.4ms | ActiveRecord: 0.2ms)
3600
+
3601
+
3602
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:30:10 +0200 2012
3603
+ Processing by HomesController#index as HTML
3604
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3605
+ Rendered homes/index.html.erb within layouts/application (19.8ms)
3606
+ Completed 200 OK in 27ms (Views: 26.1ms | ActiveRecord: 0.5ms)
3607
+
3608
+
3609
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:30:11 +0200 2012
3610
+
3611
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3612
+
3613
+
3614
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3615
+
3616
+
3617
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:30:15 +0200 2012
3618
+
3619
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3620
+
3621
+
3622
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3623
+
3624
+
3625
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:30:17 +0200 2012
3626
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3627
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3628
+ true
3629
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3630
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617717448_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3631
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.3ms)
3632
+ Completed 200 OK in 29ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3633
+
3634
+
3635
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:31:31 +0200 2012
3636
+ Processing by HomesController#index as HTML
3637
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3638
+ Rendered homes/index.html.erb within layouts/application (19.6ms)
3639
+ Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.5ms)
3640
+
3641
+
3642
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:31:32 +0200 2012
3643
+
3644
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3645
+
3646
+
3647
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3648
+
3649
+
3650
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:31:36 +0200 2012
3651
+
3652
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3653
+
3654
+
3655
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3656
+
3657
+
3658
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:31:41 +0200 2012
3659
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3660
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3661
+ true
3662
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3663
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617571738_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3664
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.4ms)
3665
+ Completed 200 OK in 29ms (Views: 3.2ms | ActiveRecord: 0.2ms)
3666
+
3667
+
3668
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:31:47 +0200 2012
3669
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3670
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3671
+ true
3672
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3673
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616345228_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3674
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.9ms)
3675
+ Completed 200 OK in 34ms (Views: 3.5ms | ActiveRecord: 0.2ms)
3676
+
3677
+
3678
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:34:16 +0200 2012
3679
+ Processing by HomesController#index as HTML
3680
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
3681
+ Rendered homes/index.html.erb within layouts/application (22.0ms)
3682
+ Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.6ms)
3683
+
3684
+
3685
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:34:16 +0200 2012
3686
+
3687
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3688
+
3689
+
3690
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3691
+
3692
+
3693
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:34:23 +0200 2012
3694
+
3695
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3696
+
3697
+
3698
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3699
+
3700
+
3701
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:34:29 +0200 2012
3702
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3703
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3704
+ true
3705
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3706
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616293078_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3707
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.8ms)
3708
+ Completed 200 OK in 93ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3709
+
3710
+
3711
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:34:57 +0200 2012
3712
+ Processing by HomesController#index as HTML
3713
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3714
+ Rendered homes/index.html.erb within layouts/application (19.1ms)
3715
+ Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.5ms)
3716
+
3717
+
3718
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:34:58 +0200 2012
3719
+
3720
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3721
+
3722
+
3723
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3724
+
3725
+
3726
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:35:02 +0200 2012
3727
+
3728
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3729
+
3730
+
3731
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3732
+
3733
+
3734
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:35:05 +0200 2012
3735
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3736
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3737
+ true
3738
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3739
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616208968_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3740
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.1ms)
3741
+ Completed 200 OK in 93ms (Views: 3.4ms | ActiveRecord: 0.2ms)
3742
+
3743
+
3744
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:39:49 +0200 2012
3745
+ Processing by HomesController#index as HTML
3746
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3747
+ Rendered homes/index.html.erb within layouts/application (19.2ms)
3748
+ Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.5ms)
3749
+
3750
+
3751
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:39:50 +0200 2012
3752
+
3753
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3754
+
3755
+
3756
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3757
+
3758
+
3759
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:39:55 +0200 2012
3760
+
3761
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3762
+
3763
+
3764
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3765
+
3766
+
3767
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:39:58 +0200 2012
3768
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3769
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3770
+ true
3771
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3772
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617765508_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3773
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.3ms)
3774
+ Completed 200 OK in 29ms (Views: 3.1ms | ActiveRecord: 0.2ms)
3775
+
3776
+
3777
+ Started GET "/stylesheets/images/acts_as_monitor_red.png" for 10.1.1.132 at Mon May 28 11:40:01 +0200 2012
3778
+
3779
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_red.png"):
3780
+
3781
+
3782
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3783
+
3784
+
3785
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:40:57 +0200 2012
3786
+ Processing by HomesController#index as HTML
3787
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3788
+ Rendered homes/index.html.erb within layouts/application (19.6ms)
3789
+ Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.5ms)
3790
+
3791
+
3792
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:40:58 +0200 2012
3793
+
3794
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3795
+
3796
+
3797
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3798
+
3799
+
3800
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:41:01 +0200 2012
3801
+
3802
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3803
+
3804
+
3805
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3806
+
3807
+
3808
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:41:03 +0200 2012
3809
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3810
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3811
+ true
3812
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3813
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617784638_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3814
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.3ms)
3815
+ Completed 200 OK in 29ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3816
+
3817
+
3818
+ Started GET "/stylesheets/images/acts_as_monitor_red.png" for 10.1.1.132 at Mon May 28 11:41:09 +0200 2012
3819
+
3820
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_red.png"):
3821
+
3822
+
3823
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
3824
+
3825
+
3826
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:41:09 +0200 2012
3827
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3828
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3829
+ true
3830
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3831
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616624818_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3832
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
3833
+ Completed 200 OK in 32ms (Views: 3.4ms | ActiveRecord: 0.2ms)
3834
+
3835
+
3836
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:41:28 +0200 2012
3837
+ Processing by HomesController#index as HTML
3838
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3839
+ Rendered homes/index.html.erb within layouts/application (18.1ms)
3840
+ Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.5ms)
3841
+
3842
+
3843
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:41:29 +0200 2012
3844
+
3845
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3846
+
3847
+
3848
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3849
+
3850
+
3851
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:41:33 +0200 2012
3852
+
3853
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3854
+
3855
+
3856
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
3857
+
3858
+
3859
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:41:36 +0200 2012
3860
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3861
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3862
+ true
3863
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3864
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616376598_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3865
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
3866
+ Completed 200 OK in 31ms (Views: 3.4ms | ActiveRecord: 0.2ms)
3867
+
3868
+
3869
+ Started GET "/stylesheets/images/acts_as_monitor_red.png" for 10.1.1.132 at Mon May 28 11:41:39 +0200 2012
3870
+
3871
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_red.png"):
3872
+
3873
+
3874
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
3875
+
3876
+
3877
+ Started GET "/stylesheets/images/acts_as_monitor_red.png" for 10.1.1.132 at Mon May 28 11:42:02 +0200 2012
3878
+
3879
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_red.png"):
3880
+
3881
+
3882
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3883
+
3884
+
3885
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:46:54 +0200 2012
3886
+ Processing by HomesController#index as HTML
3887
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3888
+ Rendered homes/index.html.erb within layouts/application (19.3ms)
3889
+ Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.5ms)
3890
+
3891
+
3892
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:46:55 +0200 2012
3893
+
3894
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3895
+
3896
+
3897
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3898
+
3899
+
3900
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:47:01 +0200 2012
3901
+
3902
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3903
+
3904
+
3905
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3906
+
3907
+
3908
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:47:05 +0200 2012
3909
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3910
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3911
+ true
3912
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3913
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616463988_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3914
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
3915
+ Completed 200 OK in 31ms (Views: 3.4ms | ActiveRecord: 0.2ms)
3916
+
3917
+
3918
+ Started GET "/stylesheets/images/acts_as_monitor_red.png" for 10.1.1.132 at Mon May 28 11:47:06 +0200 2012
3919
+
3920
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_red.png"):
3921
+
3922
+
3923
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3924
+
3925
+
3926
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:47:57 +0200 2012
3927
+ Processing by HomesController#index as HTML
3928
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3929
+ Rendered homes/index.html.erb within layouts/application (19.1ms)
3930
+ Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.5ms)
3931
+
3932
+
3933
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:47:58 +0200 2012
3934
+
3935
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3936
+
3937
+
3938
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
3939
+
3940
+
3941
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:48:02 +0200 2012
3942
+
3943
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3944
+
3945
+
3946
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3947
+
3948
+
3949
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:48:06 +0200 2012
3950
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3951
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3952
+ true
3953
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3954
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616442768_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3955
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
3956
+ Completed 200 OK in 31ms (Views: 3.3ms | ActiveRecord: 0.2ms)
3957
+
3958
+
3959
+ Started GET "/stylesheets/images/acts_as_monitor_red.png" for 10.1.1.132 at Mon May 28 11:48:08 +0200 2012
3960
+
3961
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_red.png"):
3962
+
3963
+
3964
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3965
+
3966
+
3967
+ Started GET "/" for 10.1.1.132 at Mon May 28 11:53:55 +0200 2012
3968
+ Processing by HomesController#index as HTML
3969
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
3970
+ Rendered homes/index.html.erb within layouts/application (19.2ms)
3971
+ Completed 200 OK in 26ms (Views: 25.1ms | ActiveRecord: 0.5ms)
3972
+
3973
+
3974
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:53:56 +0200 2012
3975
+
3976
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3977
+
3978
+
3979
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
3980
+
3981
+
3982
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 11:54:10 +0200 2012
3983
+
3984
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
3985
+
3986
+
3987
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
3988
+
3989
+
3990
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:54:13 +0200 2012
3991
+ Processing by ActsAsMonitor::MonitorsController#show as JS
3992
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
3993
+ true
3994
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
3995
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616379708_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
3996
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
3997
+ Completed 200 OK in 31ms (Views: 3.4ms | ActiveRecord: 0.2ms)
3998
+
3999
+
4000
+ Started GET "/stylesheets/images/acts_as_monitor_red.png" for 10.1.1.132 at Mon May 28 11:54:15 +0200 2012
4001
+
4002
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_red.png"):
4003
+
4004
+
4005
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
4006
+
4007
+
4008
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:54:27 +0200 2012
4009
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4010
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
4011
+ true
4012
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
4013
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616967368_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4014
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.8ms)
4015
+ Completed 200 OK in 31ms (Views: 3.4ms | ActiveRecord: 0.2ms)
4016
+
4017
+
4018
+ Started GET "/stylesheets/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Mon May 28 11:54:27 +0200 2012
4019
+
4020
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_yellow.png"):
4021
+
4022
+
4023
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4024
+
4025
+
4026
+ Started GET "/stylesheets/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Mon May 28 11:54:56 +0200 2012
4027
+
4028
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_yellow.png"):
4029
+
4030
+
4031
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
4032
+
4033
+
4034
+ Started GET "/stylesheets/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Mon May 28 11:55:39 +0200 2012
4035
+
4036
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_yellow.png"):
4037
+
4038
+
4039
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4040
+
4041
+
4042
+ Started GET "/stylesheets/imagesacts_as_monitor_yellow.png" for 10.1.1.132 at Mon May 28 11:55:42 +0200 2012
4043
+
4044
+ ActionController::RoutingError (No route matches "/stylesheets/imagesacts_as_monitor_yellow.png"):
4045
+
4046
+
4047
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
4048
+
4049
+
4050
+ Started GET "/stylesheets/acts_as_monitor_yellow.png" for 10.1.1.132 at Mon May 28 11:55:44 +0200 2012
4051
+
4052
+ ActionController::RoutingError (No route matches "/stylesheets/acts_as_monitor_yellow.png"):
4053
+
4054
+
4055
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4056
+
4057
+
4058
+ Started GET "/stylesheets/acts_as_monitor_yellow.png" for 10.1.1.132 at Mon May 28 11:55:47 +0200 2012
4059
+
4060
+ ActionController::RoutingError (No route matches "/stylesheets/acts_as_monitor_yellow.png"):
4061
+
4062
+
4063
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
4064
+
4065
+
4066
+ Started GET "/stylesheets/acts_as_monitor_yellow.png" for 10.1.1.132 at Mon May 28 11:55:47 +0200 2012
4067
+
4068
+ ActionController::RoutingError (No route matches "/stylesheets/acts_as_monitor_yellow.png"):
4069
+
4070
+
4071
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
4072
+
4073
+
4074
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:56:21 +0200 2012
4075
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4076
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4077
+ true
4078
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4079
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__618320058_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4080
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
4081
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
4082
+
4083
+
4084
+ Started GET "/stylesheets/images/acts_as_monitor_red.png" for 10.1.1.132 at Mon May 28 11:56:30 +0200 2012
4085
+
4086
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_red.png"):
4087
+
4088
+
4089
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
4090
+
4091
+
4092
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:57:59 +0200 2012
4093
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4094
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
4095
+ true
4096
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
4097
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616356468_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4098
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
4099
+ Completed 200 OK in 31ms (Views: 3.4ms | ActiveRecord: 0.2ms)
4100
+
4101
+
4102
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 11:58:05 +0200 2012
4103
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4104
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4105
+ true
4106
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4107
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616762358_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4108
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.4ms)
4109
+ Completed 200 OK in 30ms (Views: 3.2ms | ActiveRecord: 0.2ms)
4110
+
4111
+
4112
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:00:30 +0200 2012
4113
+ Processing by HomesController#index as HTML
4114
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4115
+ Rendered homes/index.html.erb within layouts/application (18.5ms)
4116
+ Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.5ms)
4117
+
4118
+
4119
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 12:00:31 +0200 2012
4120
+
4121
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
4122
+
4123
+
4124
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
4125
+
4126
+
4127
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 12:00:40 +0200 2012
4128
+
4129
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
4130
+
4131
+
4132
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
4133
+
4134
+
4135
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:00:45 +0200 2012
4136
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4137
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4138
+ true
4139
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4140
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616718408_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4141
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
4142
+ Completed 200 OK in 31ms (Views: 3.3ms | ActiveRecord: 0.2ms)
4143
+
4144
+
4145
+ Started GET "/stylesheets/images/acts_as_monitor_red.png" for 10.1.1.132 at Mon May 28 12:00:47 +0200 2012
4146
+
4147
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_red.png"):
4148
+
4149
+
4150
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4151
+
4152
+
4153
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:00:55 +0200 2012
4154
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4155
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
4156
+ true
4157
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
4158
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617275198_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4159
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
4160
+ Completed 200 OK in 32ms (Views: 3.5ms | ActiveRecord: 0.2ms)
4161
+
4162
+
4163
+ Started GET "/stylesheets/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Mon May 28 12:00:56 +0200 2012
4164
+
4165
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_yellow.png"):
4166
+
4167
+
4168
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
4169
+
4170
+
4171
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:02:08 +0200 2012
4172
+ Processing by HomesController#index as HTML
4173
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
4174
+ Rendered homes/index.html.erb within layouts/application (19.8ms)
4175
+ Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.6ms)
4176
+
4177
+
4178
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 12:02:10 +0200 2012
4179
+
4180
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
4181
+
4182
+
4183
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
4184
+
4185
+
4186
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:02:24 +0200 2012
4187
+ Processing by HomesController#index as HTML
4188
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4189
+ Rendered homes/index.html.erb within layouts/application (18.8ms)
4190
+ Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.5ms)
4191
+
4192
+
4193
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 12:02:25 +0200 2012
4194
+
4195
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
4196
+
4197
+
4198
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
4199
+
4200
+
4201
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:02:59 +0200 2012
4202
+ Processing by HomesController#index as HTML
4203
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4204
+ Rendered homes/index.html.erb within layouts/application (19.5ms)
4205
+ Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.5ms)
4206
+
4207
+
4208
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 12:02:59 +0200 2012
4209
+
4210
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
4211
+
4212
+
4213
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4214
+
4215
+
4216
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:03:09 +0200 2012
4217
+ Processing by HomesController#index as HTML
4218
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4219
+ Rendered homes/index.html.erb within layouts/application (82.3ms)
4220
+ Completed 200 OK in 89ms (Views: 88.1ms | ActiveRecord: 0.5ms)
4221
+
4222
+
4223
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 12:03:09 +0200 2012
4224
+
4225
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
4226
+
4227
+
4228
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
4229
+
4230
+
4231
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:03:24 +0200 2012
4232
+ Processing by HomesController#index as HTML
4233
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4234
+ Rendered homes/index.html.erb within layouts/application (18.4ms)
4235
+ Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.5ms)
4236
+
4237
+
4238
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 12:03:24 +0200 2012
4239
+
4240
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
4241
+
4242
+
4243
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4244
+
4245
+
4246
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:03:37 +0200 2012
4247
+ Processing by HomesController#index as HTML
4248
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4249
+ Rendered homes/index.html.erb within layouts/application (18.3ms)
4250
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.5ms)
4251
+
4252
+
4253
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 12:03:37 +0200 2012
4254
+
4255
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
4256
+
4257
+
4258
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4259
+
4260
+
4261
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:05:46 +0200 2012
4262
+ Processing by HomesController#index as HTML
4263
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4264
+ Rendered homes/index.html.erb within layouts/application (18.0ms)
4265
+ Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.5ms)
4266
+
4267
+
4268
+ Started GET "/stylesheets/default.css" for 10.1.1.132 at Mon May 28 12:05:46 +0200 2012
4269
+
4270
+ ActionController::RoutingError (No route matches "/stylesheets/default.css"):
4271
+
4272
+
4273
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4274
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
4275
+
4276
+
4277
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:06:09 +0200 2012
4278
+ Processing by HomesController#index as HTML
4279
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
4280
+ Rendered homes/index.html.erb within layouts/application (110.0ms)
4281
+ Completed 200 OK in 117ms (Views: 115.6ms | ActiveRecord: 1.2ms)
4282
+
4283
+
4284
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:06:13 +0200 2012
4285
+ Processing by HomesController#index as HTML
4286
+ TestClass Load (0.6ms) SELECT "test_classes".* FROM "test_classes"
4287
+ Rendered homes/index.html.erb within layouts/application (20.0ms)
4288
+ Completed 200 OK in 27ms (Views: 26.0ms | ActiveRecord: 0.6ms)
4289
+
4290
+
4291
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:06:29 +0200 2012
4292
+ Processing by HomesController#index as HTML
4293
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4294
+ Rendered homes/index.html.erb within layouts/application (18.9ms)
4295
+ Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.5ms)
4296
+
4297
+
4298
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:07:08 +0200 2012
4299
+ Processing by HomesController#index as HTML
4300
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4301
+ Rendered homes/index.html.erb within layouts/application (19.1ms)
4302
+ Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.5ms)
4303
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
4304
+
4305
+
4306
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:07:19 +0200 2012
4307
+ Processing by HomesController#index as HTML
4308
+ TestClass Load (1.2ms) SELECT "test_classes".* FROM "test_classes"
4309
+ Rendered homes/index.html.erb within layouts/application (109.0ms)
4310
+ Completed 200 OK in 116ms (Views: 114.1ms | ActiveRecord: 1.2ms)
4311
+
4312
+
4313
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:08:11 +0200 2012
4314
+ Processing by HomesController#index as HTML
4315
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4316
+ Rendered homes/index.html.erb within layouts/application (18.8ms)
4317
+ Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.5ms)
4318
+
4319
+
4320
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:10:03 +0200 2012
4321
+ Processing by HomesController#index as HTML
4322
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4323
+ Rendered homes/index.html.erb within layouts/application (18.2ms)
4324
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.5ms)
4325
+
4326
+
4327
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:10:44 +0200 2012
4328
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4329
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4330
+ true
4331
+ SQL (0.5ms) SELECT name
4332
+ FROM sqlite_master
4333
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4334
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4335
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616145468_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4336
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
4337
+ Completed 200 OK in 34ms (Views: 3.3ms | ActiveRecord: 0.7ms)
4338
+
4339
+
4340
+ Started GET "/stylesheets/images/acts_as_monitor_red.png" for 10.1.1.132 at Mon May 28 12:10:46 +0200 2012
4341
+
4342
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_red.png"):
4343
+
4344
+
4345
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
4346
+
4347
+
4348
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:19:55 +0200 2012
4349
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4350
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
4351
+ true
4352
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
4353
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616727808_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4354
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
4355
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
4356
+
4357
+
4358
+ Started GET "/stylesheets/images/acts_as_monitor_yellow.png" for 10.1.1.132 at Mon May 28 12:19:55 +0200 2012
4359
+
4360
+ ActionController::RoutingError (No route matches "/stylesheets/images/acts_as_monitor_yellow.png"):
4361
+
4362
+
4363
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4364
+
4365
+
4366
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:23:57 +0200 2012
4367
+ Processing by HomesController#index as HTML
4368
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4369
+ Rendered homes/index.html.erb within layouts/application (19.8ms)
4370
+ Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.5ms)
4371
+
4372
+
4373
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:24:07 +0200 2012
4374
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4375
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4376
+ true
4377
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4378
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616321558_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4379
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
4380
+ Completed 200 OK in 32ms (Views: 3.4ms | ActiveRecord: 0.2ms)
4381
+
4382
+
4383
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:25:22 +0200 2012
4384
+ Processing by HomesController#index as HTML
4385
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4386
+ Rendered homes/index.html.erb within layouts/application (19.2ms)
4387
+ Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.5ms)
4388
+
4389
+
4390
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:25:30 +0200 2012
4391
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4392
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4393
+ true
4394
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4395
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616148158_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4396
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
4397
+ Completed 200 OK in 32ms (Views: 3.5ms | ActiveRecord: 0.2ms)
4398
+
4399
+
4400
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:25:45 +0200 2012
4401
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4402
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4403
+ true
4404
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4405
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616541948_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4406
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.0ms)
4407
+ Completed 200 OK in 36ms (Views: 4.1ms | ActiveRecord: 0.2ms)
4408
+
4409
+
4410
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:25:48 +0200 2012
4411
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4412
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
4413
+ true
4414
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
4415
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616966488_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4416
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.4ms)
4417
+ Completed 200 OK in 29ms (Views: 3.2ms | ActiveRecord: 0.2ms)
4418
+
4419
+
4420
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:28:38 +0200 2012
4421
+ Processing by HomesController#index as HTML
4422
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4423
+ Rendered homes/index.html.erb within layouts/application (18.2ms)
4424
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.5ms)
4425
+
4426
+
4427
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:28:47 +0200 2012
4428
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4429
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4430
+ true
4431
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4432
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616381198_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4433
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.4ms)
4434
+ Completed 200 OK in 30ms (Views: 3.4ms | ActiveRecord: 0.2ms)
4435
+
4436
+
4437
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:29:08 +0200 2012
4438
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4439
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
4440
+ true
4441
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
4442
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616768298_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4443
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.9ms)
4444
+ Completed 200 OK in 31ms (Views: 3.5ms | ActiveRecord: 0.2ms)
4445
+
4446
+
4447
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:30:29 +0200 2012
4448
+ Processing by HomesController#index as HTML
4449
+ TestClass Load (0.5ms) SELECT "test_classes".* FROM "test_classes"
4450
+ Rendered homes/index.html.erb within layouts/application (17.7ms)
4451
+ Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.5ms)
4452
+
4453
+
4454
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:30:38 +0200 2012
4455
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4456
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4457
+ true
4458
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4459
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616378078_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4460
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.5ms)
4461
+ Completed 200 OK in 30ms (Views: 3.2ms | ActiveRecord: 0.2ms)
4462
+
4463
+
4464
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:31:29 +0200 2012
4465
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4466
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
4467
+ true
4468
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
4469
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__616773718_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4470
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.6ms)
4471
+ Completed 200 OK in 30ms (Views: 3.3ms | ActiveRecord: 0.2ms)
4472
+
4473
+
4474
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:31:42 +0200 2012
4475
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4476
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4477
+ true
4478
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4479
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_andrea_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___929604429__617227128_0 at /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4480
+ Rendered /home/andrea/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.3ms)
4481
+ Completed 200 OK in 28ms (Views: 3.2ms | ActiveRecord: 0.2ms)
4482
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
4483
+
4484
+
4485
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:53:03 +0200 2012
4486
+ Processing by HomesController#index as HTML
4487
+ TestClass Load (1.4ms) SELECT "test_classes".* FROM "test_classes"
4488
+ Rendered homes/index.html.erb within layouts/application (47.4ms)
4489
+ Completed 200 OK in 55ms (Views: 53.5ms | ActiveRecord: 1.4ms)
4490
+
4491
+
4492
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:53:30 +0200 2012
4493
+
4494
+ ActionController::RoutingError (No route matches "/acts_as_monitor/monitors/1.js"):
4495
+
4496
+
4497
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
4498
+
4499
+
4500
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:53:38 +0200 2012
4501
+
4502
+ ActionController::RoutingError (No route matches "/acts_as_monitor/monitors/1.js"):
4503
+
4504
+
4505
+ Rendered /usr/lib/ruby/gems/1.8/gems/actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
4506
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from service at /usr/lib/ruby/1.8/webrick/httpserver.rb:104)
4507
+
4508
+
4509
+ Started GET "/" for 10.1.1.132 at Mon May 28 12:55:23 +0200 2012
4510
+ Processing by HomesController#index as HTML
4511
+ TestClass Load (1.4ms) SELECT "test_classes".* FROM "test_classes"
4512
+ Rendered homes/index.html.erb within layouts/application (48.9ms)
4513
+ Completed 200 OK in 57ms (Views: 55.0ms | ActiveRecord: 1.4ms)
4514
+
4515
+
4516
+ Started GET "/acts_as_monitor/monitors/1.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:55:29 +0200 2012
4517
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4518
+ Parameters: {"class_name"=>"TestClass", "id"=>"1"}
4519
+ true
4520
+ SQL (0.6ms) SELECT name
4521
+ FROM sqlite_master
4522
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4523
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 1 LIMIT 1
4524
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_apps_rails_apps_gems_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___260985504__617465058_0 at /home/apps/rails_apps/gems/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4525
+ Rendered /home/apps/rails_apps/gems/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (4.7ms)
4526
+ Completed 200 OK in 37ms (Views: 3.7ms | ActiveRecord: 0.8ms)
4527
+
4528
+
4529
+ Started GET "/acts_as_monitor/monitors/2.js?class_name=TestClass" for 10.1.1.132 at Mon May 28 12:55:34 +0200 2012
4530
+ Processing by ActsAsMonitor::MonitorsController#show as JS
4531
+ Parameters: {"class_name"=>"TestClass", "id"=>"2"}
4532
+ true
4533
+ TestClass Load (0.2ms) SELECT "test_classes".* FROM "test_classes" WHERE "test_classes"."id" = 2 LIMIT 1
4534
+ DEPRECATION WARNING: human_name has been deprecated, please use model_name.human instead. (called from __home_apps_rails_apps_gems_acts_as_monitor_app_views_acts_as_monitor_monitors_show_html_erb___260985504__616371298_0 at /home/apps/rails_apps/gems/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb:3)
4535
+ Rendered /home/apps/rails_apps/gems/acts_as_monitor/app/views/acts_as_monitor/monitors/show.html.erb (5.2ms)
4536
+ Completed 200 OK in 36ms (Views: 4.1ms | ActiveRecord: 0.2ms)
4537
+ DEPRECATION WARNING: config.action_view.debug_rjs will be removed in 3.1, from 3.1 onwards you will need to install prototype-rails to continue to use RJS templates . (called from /home/apps/rails_apps/gems/acts_as_monitor/test/dummy/app/controllers/application_controller.rb:1)