remote_partial 0.0.1

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 (98) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +63 -0
  3. data/Rakefile +40 -0
  4. data/app/helpers/remote_partial/application_helper.rb +4 -0
  5. data/app/helpers/remote_partial/host_app_helper.rb +11 -0
  6. data/app/models/remote_partial/builder.rb +30 -0
  7. data/app/models/remote_partial/exceptions.rb +24 -0
  8. data/app/models/remote_partial/partial.rb +57 -0
  9. data/app/models/remote_partial/resource_manager.rb +66 -0
  10. data/config/routes.rb +2 -0
  11. data/db/migrate/20130702072157_create_remote_partial_partials.rb +12 -0
  12. data/lib/remote_partial/engine.rb +11 -0
  13. data/lib/remote_partial/version.rb +3 -0
  14. data/lib/remote_partial.rb +23 -0
  15. data/lib/tasks/remote_partial_tasks.rake +10 -0
  16. data/test/dummy/README.rdoc +261 -0
  17. data/test/dummy/Rakefile +7 -0
  18. data/test/dummy/app/assets/javascripts/application.js +15 -0
  19. data/test/dummy/app/assets/javascripts/demos.js +2 -0
  20. data/test/dummy/app/assets/javascripts/samples.js +2 -0
  21. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  22. data/test/dummy/app/assets/stylesheets/demos.css +4 -0
  23. data/test/dummy/app/assets/stylesheets/samples.css +4 -0
  24. data/test/dummy/app/controllers/application_controller.rb +3 -0
  25. data/test/dummy/app/controllers/demos_controller.rb +18 -0
  26. data/test/dummy/app/helpers/application_helper.rb +2 -0
  27. data/test/dummy/app/helpers/demos_helper.rb +2 -0
  28. data/test/dummy/app/helpers/samples_helper.rb +2 -0
  29. data/test/dummy/app/views/demos/_clock.html.erb +6 -0
  30. data/test/dummy/app/views/demos/_fixed.html.erb +3 -0
  31. data/test/dummy/app/views/demos/_ruby.html.erb +4 -0
  32. data/test/dummy/app/views/demos/index.html.erb +7 -0
  33. data/test/dummy/app/views/demos/show.html.erb +3 -0
  34. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  35. data/test/dummy/app/views/remote_partials/_clock.html.erb +1 -0
  36. data/test/dummy/app/views/remote_partials/_fixed.html.erb +2 -0
  37. data/test/dummy/app/views/remote_partials/_ruby.html.erb +11 -0
  38. data/test/dummy/app/views/remote_partials/_wcc.html.erb +810 -0
  39. data/test/dummy/config/application.rb +59 -0
  40. data/test/dummy/config/boot.rb +10 -0
  41. data/test/dummy/config/database.yml +25 -0
  42. data/test/dummy/config/environment.rb +5 -0
  43. data/test/dummy/config/environments/development.rb +37 -0
  44. data/test/dummy/config/environments/production.rb +67 -0
  45. data/test/dummy/config/environments/test.rb +37 -0
  46. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  47. data/test/dummy/config/initializers/inflections.rb +15 -0
  48. data/test/dummy/config/initializers/mime_types.rb +5 -0
  49. data/test/dummy/config/initializers/remote_partial.rb +16 -0
  50. data/test/dummy/config/initializers/secret_token.rb +7 -0
  51. data/test/dummy/config/initializers/session_store.rb +8 -0
  52. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  53. data/test/dummy/config/locales/en.yml +5 -0
  54. data/test/dummy/config/routes.rb +8 -0
  55. data/test/dummy/config.ru +4 -0
  56. data/test/dummy/db/development.sqlite3 +0 -0
  57. data/test/dummy/db/migrate/20130703141929_create_remote_partial_partials.remote_partial.rb +13 -0
  58. data/test/dummy/db/schema.rb +26 -0
  59. data/test/dummy/db/test.sqlite3 +0 -0
  60. data/test/dummy/log/development.log +4200 -0
  61. data/test/dummy/log/test.log +1397 -0
  62. data/test/dummy/public/404.html +26 -0
  63. data/test/dummy/public/422.html +26 -0
  64. data/test/dummy/public/500.html +25 -0
  65. data/test/dummy/public/favicon.ico +0 -0
  66. data/test/dummy/script/rails +6 -0
  67. data/test/dummy/test/functional/demos_controller_test.rb +20 -0
  68. data/test/dummy/test/unit/helpers/demos_helper_test.rb +13 -0
  69. data/test/dummy/test/unit/helpers/samples_helper_test.rb +4 -0
  70. data/test/dummy/tmp/cache/assets/BE9/0F0/sprockets%2Fb918d6cc641337193b96751002451244 +0 -0
  71. data/test/dummy/tmp/cache/assets/C2E/4E0/sprockets%2F5b29288e435665a224409e7d76530c95 +0 -0
  72. data/test/dummy/tmp/cache/assets/CB3/DC0/sprockets%2F157201713d2fd4954447e0bf4d8e853e +0 -0
  73. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  74. data/test/dummy/tmp/cache/assets/CE3/080/sprockets%2F7d4d7689d6fa8236f0b4848c03ba1215 +0 -0
  75. data/test/dummy/tmp/cache/assets/CE5/D30/sprockets%2F8c9834a63b25a66203918a75ff56e2ac +0 -0
  76. data/test/dummy/tmp/cache/assets/D16/E10/sprockets%2Fd5d9c442561ec08a55d5d843a0d9792d +0 -0
  77. data/test/dummy/tmp/cache/assets/D20/020/sprockets%2F488c2c97fede45c86a62f1aa14554957 +0 -0
  78. data/test/dummy/tmp/cache/assets/D2E/690/sprockets%2F840591ad233bc7bda28b7f6a2b27c205 +0 -0
  79. data/test/dummy/tmp/cache/assets/D30/990/sprockets%2F995cc20d042afc03241f58f7d6ca1f02 +0 -0
  80. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  81. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  82. data/test/dummy/tmp/cache/assets/D52/430/sprockets%2F6ada07f0c9869f9f35b05fa0988dc717 +0 -0
  83. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  84. data/test/dummy/tmp/cache/assets/DBB/BE0/sprockets%2Fc6eb578d23a69b5abb056e3abaa5c060 +0 -0
  85. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  86. data/test/dummy/tmp/cache/assets/E02/FA0/sprockets%2Fca8d5771d03e669be1d96acb6beb6cb6 +0 -0
  87. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  88. data/test/dummy/tmp/pids/server.pid +1 -0
  89. data/test/fixtures/remote_partial/partials.yml +10 -0
  90. data/test/integration/navigation_test.rb +10 -0
  91. data/test/remote_partial_test.rb +7 -0
  92. data/test/test_helper.rb +80 -0
  93. data/test/unit/remote_partial/builder_test.rb +113 -0
  94. data/test/unit/remote_partial/exception_test.rb +21 -0
  95. data/test/unit/remote_partial/partial_test.rb +66 -0
  96. data/test/unit/remote_partial/resource_manager_test.rb +76 -0
  97. data/test/unit/remote_partial_test.rb +26 -0
  98. metadata +291 -0
@@ -0,0 +1,4200 @@
1
+ Connecting to database specified by database.yml
2
+
3
+
4
+ Started GET "/" for 127.0.0.1 at 2013-07-01 12:14:07 +0100
5
+
6
+ ActionController::RoutingError (No route matches [GET] "/"):
7
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
10
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
11
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
12
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
13
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
14
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
15
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
16
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
17
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
18
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
19
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
20
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
21
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
22
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
23
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
24
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
25
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
26
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
27
+
28
+
29
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (60.1ms)
30
+ Connecting to database specified by database.yml
31
+ Connecting to database specified by database.yml
32
+
33
+
34
+ Started GET "/samples" for 127.0.0.1 at 2013-07-01 12:26:16 +0100
35
+ Processing by SamplesController#index as HTML
36
+ Rendered samples/index.html.erb within layouts/application (2.7ms)
37
+ Compiled samples.css (0ms) (pid 10957)
38
+ Compiled application.css (28ms) (pid 10957)
39
+ Compiled jquery.js (3ms) (pid 10957)
40
+ Compiled jquery_ujs.js (0ms) (pid 10957)
41
+ Compiled samples.js (0ms) (pid 10957)
42
+ Compiled application.js (127ms) (pid 10957)
43
+ Completed 200 OK in 348ms (Views: 347.9ms | ActiveRecord: 0.0ms)
44
+
45
+
46
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 12:26:17 +0100
47
+ Served asset /samples.css - 200 OK (3ms)
48
+
49
+
50
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 12:26:17 +0100
51
+ Served asset /application.css - 200 OK (11ms)
52
+
53
+
54
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:17 +0100
55
+ Served asset /samples.js - 200 OK (1ms)
56
+
57
+
58
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:17 +0100
59
+ Served asset /jquery.js - 304 Not Modified (29ms)
60
+
61
+
62
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:17 +0100
63
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
64
+
65
+
66
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:17 +0100
67
+ Served asset /application.js - 304 Not Modified (19ms)
68
+
69
+
70
+ Started GET "/samples" for 127.0.0.1 at 2013-07-01 12:26:52 +0100
71
+ Processing by SamplesController#index as HTML
72
+ Rendered samples/index.html.erb within layouts/application (1.3ms)
73
+ Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.0ms)
74
+
75
+
76
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 12:26:53 +0100
77
+ Served asset /application.css - 304 Not Modified (0ms)
78
+
79
+
80
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 12:26:53 +0100
81
+ Served asset /samples.css - 304 Not Modified (0ms)
82
+
83
+
84
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:53 +0100
85
+ Served asset /jquery.js - 304 Not Modified (0ms)
86
+
87
+
88
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:53 +0100
89
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
90
+
91
+
92
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:53 +0100
93
+ Served asset /samples.js - 304 Not Modified (0ms)
94
+
95
+
96
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:53 +0100
97
+ Served asset /application.js - 304 Not Modified (1ms)
98
+
99
+
100
+ Started GET "/samples/one" for 127.0.0.1 at 2013-07-01 12:26:56 +0100
101
+ Processing by SamplesController#show as HTML
102
+ Parameters: {"id"=>"one"}
103
+ Rendered samples/_one.html.erb (0.4ms)
104
+ Rendered samples/show.html.erb within layouts/application (76.3ms)
105
+ Completed 200 OK in 84ms (Views: 83.2ms | ActiveRecord: 0.0ms)
106
+
107
+
108
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 12:26:56 +0100
109
+ Served asset /application.css - 304 Not Modified (0ms)
110
+
111
+
112
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 12:26:56 +0100
113
+ Served asset /samples.css - 304 Not Modified (0ms)
114
+
115
+
116
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:56 +0100
117
+ Served asset /jquery.js - 304 Not Modified (6ms)
118
+
119
+
120
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:56 +0100
121
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
122
+
123
+
124
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:56 +0100
125
+ Served asset /samples.js - 304 Not Modified (0ms)
126
+
127
+
128
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 12:26:56 +0100
129
+ Served asset /application.js - 304 Not Modified (1ms)
130
+ Connecting to database specified by database.yml
131
+ Connecting to database specified by database.yml
132
+
133
+
134
+ Started GET "/demos" for 127.0.0.1 at 2013-07-01 12:35:00 +0100
135
+ Processing by DemosController#index as HTML
136
+ Rendered demos/index.html.erb within layouts/application (3.6ms)
137
+ Compiled demos.css (0ms) (pid 11042)
138
+ Compiled application.css (16ms) (pid 11042)
139
+ Compiled demos.js (0ms) (pid 11042)
140
+ Compiled application.js (37ms) (pid 11042)
141
+ Completed 200 OK in 234ms (Views: 233.7ms | ActiveRecord: 0.0ms)
142
+
143
+
144
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 12:35:00 +0100
145
+ Served asset /application.css - 304 Not Modified (12ms)
146
+
147
+
148
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-01 12:35:00 +0100
149
+ Served asset /demos.css - 200 OK (9ms)
150
+
151
+
152
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 12:35:00 +0100
153
+ Served asset /samples.css - 304 Not Modified (11ms)
154
+
155
+
156
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:00 +0100
157
+ Served asset /jquery.js - 304 Not Modified (50ms)
158
+
159
+
160
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:00 +0100
161
+ Served asset /jquery_ujs.js - 304 Not Modified (8ms)
162
+
163
+
164
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:00 +0100
165
+ Served asset /demos.js - 200 OK (3ms)
166
+
167
+
168
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:00 +0100
169
+ Served asset /samples.js - 304 Not Modified (5ms)
170
+
171
+
172
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:00 +0100
173
+ Served asset /application.js - 304 Not Modified (32ms)
174
+
175
+
176
+ Started GET "/demos/one" for 127.0.0.1 at 2013-07-01 12:35:04 +0100
177
+ Processing by DemosController#show as HTML
178
+ Parameters: {"id"=>"one"}
179
+ Rendered demos/_one.html.erb (0.4ms)
180
+ Rendered demos/show.html.erb within layouts/application (14.4ms)
181
+ Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms)
182
+
183
+
184
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 12:35:04 +0100
185
+ Served asset /application.css - 304 Not Modified (0ms)
186
+
187
+
188
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 12:35:04 +0100
189
+ Served asset /samples.css - 304 Not Modified (47ms)
190
+
191
+
192
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:04 +0100
193
+ Served asset /jquery.js - 304 Not Modified (94ms)
194
+
195
+
196
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:05 +0100
197
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
198
+
199
+
200
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:05 +0100
201
+ Served asset /samples.js - 304 Not Modified (0ms)
202
+
203
+
204
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:05 +0100
205
+ Served asset /application.js - 304 Not Modified (1ms)
206
+
207
+
208
+ Started GET "/demos/one" for 127.0.0.1 at 2013-07-01 12:35:46 +0100
209
+ Processing by DemosController#show as HTML
210
+ Parameters: {"id"=>"one"}
211
+ Rendered demos/_one.html.erb (0.1ms)
212
+ Rendered demos/show.html.erb within layouts/application (0.8ms)
213
+ Completed 200 OK in 29ms (Views: 29.0ms | ActiveRecord: 0.0ms)
214
+
215
+
216
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 12:35:46 +0100
217
+ Served asset /application.css - 304 Not Modified (7ms)
218
+
219
+
220
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-01 12:35:46 +0100
221
+ Served asset /demos.css - 304 Not Modified (3ms)
222
+
223
+
224
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 12:35:46 +0100
225
+ Served asset /samples.css - 304 Not Modified (0ms)
226
+
227
+
228
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:46 +0100
229
+ Served asset /jquery.js - 304 Not Modified (52ms)
230
+
231
+
232
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:47 +0100
233
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
234
+
235
+
236
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:47 +0100
237
+ Served asset /demos.js - 304 Not Modified (0ms)
238
+
239
+
240
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:47 +0100
241
+ Served asset /samples.js - 304 Not Modified (10ms)
242
+
243
+
244
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 12:35:47 +0100
245
+ Served asset /application.js - 304 Not Modified (1ms)
246
+ Connecting to database specified by database.yml
247
+
248
+
249
+ Started GET "/demos/one" for 127.0.0.1 at 2013-07-01 12:52:04 +0100
250
+ Processing by DemosController#show as HTML
251
+ Parameters: {"id"=>"one"}
252
+ Rendered demos/_one.html.erb (4.6ms)
253
+ Rendered demos/show.html.erb within layouts/application (14.7ms)
254
+ Completed 500 Internal Server Error in 78ms
255
+
256
+ ActionView::Template::Error (wrong number of arguments (1 for 0)):
257
+ 1: <p>In this example, the content of the fixed partial is inserted below:</p>
258
+ 2:
259
+ 3: <%= remote_partial 'fixed' %>
260
+ app/views/demos/_one.html.erb:3:in `_app_views_demos__one_html_erb___144430349_84523130'
261
+ app/views/demos/show.html.erb:2:in `_app_views_demos_show_html_erb__628157726__611140388'
262
+
263
+
264
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
265
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.3ms)
266
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (20.3ms)
267
+
268
+
269
+ Started GET "/demos/one" for 127.0.0.1 at 2013-07-01 12:52:39 +0100
270
+ Processing by DemosController#show as HTML
271
+ Parameters: {"id"=>"one"}
272
+ Rendered demos/_one.html.erb (9.8ms)
273
+ Rendered demos/show.html.erb within layouts/application (17.3ms)
274
+ Completed 200 OK in 101ms (Views: 100.7ms | ActiveRecord: 0.0ms)
275
+
276
+
277
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 12:52:39 +0100
278
+ Served asset /application.css - 304 Not Modified (31ms)
279
+
280
+
281
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-01 12:52:39 +0100
282
+ Served asset /demos.css - 304 Not Modified (5ms)
283
+
284
+
285
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 12:52:39 +0100
286
+ Served asset /samples.css - 304 Not Modified (10ms)
287
+
288
+
289
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 12:52:39 +0100
290
+ Served asset /jquery.js - 304 Not Modified (10ms)
291
+
292
+
293
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 12:52:39 +0100
294
+ Served asset /jquery_ujs.js - 304 Not Modified (8ms)
295
+
296
+
297
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-01 12:52:39 +0100
298
+ Served asset /demos.js - 304 Not Modified (1ms)
299
+
300
+
301
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 12:52:39 +0100
302
+ Served asset /samples.js - 304 Not Modified (1ms)
303
+
304
+
305
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 12:52:39 +0100
306
+ Served asset /application.js - 304 Not Modified (33ms)
307
+
308
+
309
+ Started GET "/demos/one" for 127.0.0.1 at 2013-07-01 12:56:11 +0100
310
+ Processing by DemosController#show as HTML
311
+ Parameters: {"id"=>"one"}
312
+ Rendered demos/_one.html.erb (38.9ms)
313
+ Rendered demos/show.html.erb within layouts/application (39.7ms)
314
+ Completed 500 Internal Server Error in 43ms
315
+
316
+ ActionView::Template::Error (undefined method `render_remote_partial' for #<#<Class:0xb6600f20>:0xb6fc72c0>):
317
+ 1: <p>In this example, the content of the fixed partial is inserted below:</p>
318
+ 2:
319
+ 3: <%= render_remote_partial 'fixed' %>
320
+ app/views/demos/_one.html.erb:3:in `_app_views_demos__one_html_erb___144430349__612456748'
321
+ app/views/demos/show.html.erb:2:in `_app_views_demos_show_html_erb__628157726__611140388'
322
+
323
+
324
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (7.8ms)
325
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (12.1ms)
326
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (51.7ms)
327
+
328
+
329
+ Started GET "/demos" for 127.0.0.1 at 2013-07-01 12:57:11 +0100
330
+ Processing by DemosController#index as HTML
331
+ Rendered demos/index.html.erb within layouts/application (1.0ms)
332
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
333
+
334
+
335
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 12:57:12 +0100
336
+ Served asset /application.css - 304 Not Modified (12ms)
337
+
338
+
339
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-01 12:57:12 +0100
340
+ Served asset /demos.css - 304 Not Modified (1ms)
341
+
342
+
343
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 12:57:12 +0100
344
+ Served asset /samples.css - 304 Not Modified (0ms)
345
+
346
+
347
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 12:57:12 +0100
348
+ Served asset /jquery.js - 304 Not Modified (0ms)
349
+
350
+
351
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 12:57:12 +0100
352
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
353
+
354
+
355
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-01 12:57:12 +0100
356
+ Served asset /demos.js - 304 Not Modified (0ms)
357
+
358
+
359
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 12:57:12 +0100
360
+ Served asset /samples.js - 304 Not Modified (0ms)
361
+
362
+
363
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 12:57:12 +0100
364
+ Served asset /application.js - 304 Not Modified (6ms)
365
+
366
+
367
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-01 12:57:14 +0100
368
+ Processing by DemosController#show as HTML
369
+ Parameters: {"id"=>"fixed"}
370
+ Rendered demos/_fixed.html.erb (30.5ms)
371
+ Rendered demos/show.html.erb within layouts/application (36.0ms)
372
+ Completed 500 Internal Server Error in 39ms
373
+
374
+ ActionView::Template::Error (undefined method `render_remote_partial' for #<#<Class:0xa0a904c>:0xb7259420>):
375
+ 1: <p>In this example, the content of the fixed partial is inserted below:</p>
376
+ 2:
377
+ 3: <%= render_remote_partial 'fixed' %>
378
+ app/views/demos/_fixed.html.erb:3:in `_app_views_demos__fixed_html_erb___686029588__620047278'
379
+ app/views/demos/show.html.erb:2:in `_app_views_demos_show_html_erb__628157726__611140388'
380
+
381
+
382
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (16.1ms)
383
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
384
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (37.8ms)
385
+ Connecting to database specified by database.yml
386
+  (0.2ms) select sqlite_version(*)
387
+  (157.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
388
+  (149.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
389
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
390
+ Connecting to database specified by database.yml
391
+  (0.1ms) select sqlite_version(*)
392
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
393
+ Connecting to database specified by database.yml
394
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
395
+  (0.1ms) select sqlite_version(*)
396
+  (144.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
397
+  (140.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
398
+  (0.2ms) SELECT version FROM "schema_migrations"
399
+  (107.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
400
+ Connecting to database specified by database.yml
401
+
402
+
403
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-01 13:12:01 +0100
404
+ Processing by DemosController#show as HTML
405
+ Parameters: {"id"=>"fixed"}
406
+ Rendered remote_partials/_fixed.html.erb (0.6ms)
407
+ Rendered demos/_fixed.html.erb (10.3ms)
408
+ Rendered demos/show.html.erb within layouts/application (20.1ms)
409
+ Completed 200 OK in 94ms (Views: 93.8ms | ActiveRecord: 0.0ms)
410
+
411
+
412
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 13:12:02 +0100
413
+ Served asset /application.css - 304 Not Modified (19ms)
414
+
415
+
416
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-01 13:12:02 +0100
417
+ Served asset /demos.css - 304 Not Modified (13ms)
418
+
419
+
420
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 13:12:02 +0100
421
+ Served asset /samples.css - 304 Not Modified (30ms)
422
+
423
+
424
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 13:12:02 +0100
425
+ Served asset /jquery.js - 304 Not Modified (3ms)
426
+
427
+
428
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 13:12:02 +0100
429
+ Served asset /jquery_ujs.js - 304 Not Modified (16ms)
430
+
431
+
432
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-01 13:12:02 +0100
433
+ Served asset /demos.js - 304 Not Modified (11ms)
434
+
435
+
436
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 13:12:02 +0100
437
+ Served asset /samples.js - 304 Not Modified (10ms)
438
+
439
+
440
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 13:12:02 +0100
441
+ Served asset /application.js - 304 Not Modified (105ms)
442
+
443
+
444
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-01 13:12:56 +0100
445
+ Processing by DemosController#show as HTML
446
+ Parameters: {"id"=>"fixed"}
447
+ Rendered remote_partials/_fixed.html.erb (5.6ms)
448
+ Rendered demos/_fixed.html.erb (6.5ms)
449
+ Rendered demos/show.html.erb within layouts/application (7.2ms)
450
+ Completed 200 OK in 38ms (Views: 37.5ms | ActiveRecord: 0.0ms)
451
+
452
+
453
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 13:12:57 +0100
454
+ Served asset /application.css - 304 Not Modified (0ms)
455
+
456
+
457
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-01 13:12:57 +0100
458
+ Served asset /demos.css - 304 Not Modified (0ms)
459
+
460
+
461
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 13:12:57 +0100
462
+ Served asset /samples.css - 304 Not Modified (0ms)
463
+
464
+
465
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 13:12:57 +0100
466
+ Served asset /jquery.js - 304 Not Modified (0ms)
467
+
468
+
469
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 13:12:57 +0100
470
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
471
+
472
+
473
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-01 13:12:57 +0100
474
+ Served asset /demos.js - 304 Not Modified (0ms)
475
+
476
+
477
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 13:12:57 +0100
478
+ Served asset /samples.js - 304 Not Modified (6ms)
479
+
480
+
481
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 13:12:57 +0100
482
+ Served asset /application.js - 304 Not Modified (7ms)
483
+
484
+
485
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-01 13:13:08 +0100
486
+ Processing by DemosController#show as HTML
487
+ Parameters: {"id"=>"fixed"}
488
+ Rendered remote_partials/_fixed.html.erb (0.6ms)
489
+ Rendered demos/_fixed.html.erb (7.9ms)
490
+ Rendered demos/show.html.erb within layouts/application (8.8ms)
491
+ Completed 200 OK in 42ms (Views: 35.7ms | ActiveRecord: 0.0ms)
492
+
493
+
494
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 13:13:09 +0100
495
+ Served asset /application.css - 304 Not Modified (0ms)
496
+
497
+
498
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-01 13:13:09 +0100
499
+ Served asset /demos.css - 304 Not Modified (4ms)
500
+
501
+
502
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 13:13:09 +0100
503
+ Served asset /samples.css - 304 Not Modified (6ms)
504
+
505
+
506
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 13:13:09 +0100
507
+ Served asset /jquery.js - 304 Not Modified (2ms)
508
+
509
+
510
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 13:13:09 +0100
511
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
512
+
513
+
514
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-01 13:13:09 +0100
515
+ Served asset /demos.js - 304 Not Modified (0ms)
516
+
517
+
518
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 13:13:09 +0100
519
+ Served asset /samples.js - 304 Not Modified (0ms)
520
+
521
+
522
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 13:13:09 +0100
523
+ Served asset /application.js - 304 Not Modified (6ms)
524
+
525
+
526
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-01 13:13:40 +0100
527
+ Processing by DemosController#show as HTML
528
+ Parameters: {"id"=>"fixed"}
529
+ Rendered remote_partials/_fixed.html.erb (71.5ms)
530
+ Rendered demos/_fixed.html.erb (80.2ms)
531
+ Rendered demos/show.html.erb within layouts/application (81.0ms)
532
+ Completed 500 Internal Server Error in 90ms
533
+
534
+ ActionView::Template::Error (undefined method `file_name' for #<String:0xb69b443c>):
535
+ 1: <h2>Some content</h2>
536
+ 2: <p>From <%= __FILE__.file_name %><p>
537
+ app/views/remote_partials/_fixed.html.erb:2:in `_app_views_remote_partials__fixed_html_erb__559941816__619182288'
538
+ app/views/demos/_fixed.html.erb:3:in `_app_views_demos__fixed_html_erb__929589197_81117140'
539
+ app/views/demos/show.html.erb:2:in `_app_views_demos_show_html_erb___166002442__619035578'
540
+
541
+
542
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (12.9ms)
543
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
544
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (37.8ms)
545
+
546
+
547
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-01 13:13:51 +0100
548
+ Processing by DemosController#show as HTML
549
+ Parameters: {"id"=>"fixed"}
550
+ Rendered remote_partials/_fixed.html.erb (0.5ms)
551
+ Rendered demos/_fixed.html.erb (8.5ms)
552
+ Rendered demos/show.html.erb within layouts/application (9.3ms)
553
+ Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms)
554
+
555
+
556
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 13:13:51 +0100
557
+ Served asset /application.css - 304 Not Modified (0ms)
558
+
559
+
560
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-01 13:13:51 +0100
561
+ Served asset /demos.css - 304 Not Modified (3ms)
562
+
563
+
564
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 13:13:51 +0100
565
+ Served asset /samples.css - 304 Not Modified (0ms)
566
+
567
+
568
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 13:13:51 +0100
569
+ Served asset /jquery.js - 304 Not Modified (32ms)
570
+
571
+
572
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 13:13:51 +0100
573
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
574
+
575
+
576
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-01 13:13:51 +0100
577
+ Served asset /demos.js - 304 Not Modified (0ms)
578
+
579
+
580
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 13:13:51 +0100
581
+ Served asset /samples.js - 304 Not Modified (0ms)
582
+
583
+
584
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 13:13:51 +0100
585
+ Served asset /application.js - 304 Not Modified (9ms)
586
+
587
+
588
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-01 13:15:41 +0100
589
+ Processing by DemosController#show as HTML
590
+ Parameters: {"id"=>"fixed"}
591
+ Rendered remote_partials/_fixed.html.erb (0.5ms)
592
+ Rendered demos/_fixed.html.erb (8.1ms)
593
+ Rendered demos/show.html.erb within layouts/application (8.8ms)
594
+ Completed 200 OK in 26ms (Views: 25.9ms | ActiveRecord: 0.0ms)
595
+
596
+
597
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-01 13:15:41 +0100
598
+ Served asset /application.css - 304 Not Modified (0ms)
599
+
600
+
601
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-01 13:15:41 +0100
602
+ Served asset /demos.css - 304 Not Modified (0ms)
603
+
604
+
605
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-01 13:15:41 +0100
606
+ Served asset /samples.css - 304 Not Modified (0ms)
607
+
608
+
609
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-01 13:15:41 +0100
610
+ Served asset /jquery.js - 304 Not Modified (0ms)
611
+
612
+
613
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-01 13:15:41 +0100
614
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
615
+
616
+
617
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-01 13:15:41 +0100
618
+ Served asset /demos.js - 304 Not Modified (0ms)
619
+
620
+
621
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-01 13:15:41 +0100
622
+ Served asset /samples.js - 304 Not Modified (0ms)
623
+
624
+
625
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-01 13:15:41 +0100
626
+ Served asset /application.js - 304 Not Modified (9ms)
627
+ Connecting to database specified by database.yml
628
+ Connecting to database specified by database.yml
629
+ Connecting to database specified by database.yml
630
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
631
+ Migrating to CreateRemotePartialPartials (20130702074005)
632
+  (0.1ms) select sqlite_version(*)
633
+  (0.0ms) begin transaction
634
+  (4.2ms) CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "url" text(4095), "criteria" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
635
+  (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130702074005')
636
+  (146.6ms) commit transaction
637
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
638
+ Connecting to database specified by database.yml
639
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
640
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
641
+ Migrating to CreateRemotePartialPartials (20130702074005)
642
+  (0.1ms) select sqlite_version(*)
643
+  (0.6ms) begin transaction
644
+  (25.7ms) DROP TABLE "remote_partial_partials"
645
+  (0.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130702074005'
646
+  (138.4ms) commit transaction
647
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
648
+ Connecting to database specified by database.yml
649
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
650
+ Migrating to CreateRemotePartialPartials (20130702074520)
651
+  (0.1ms) select sqlite_version(*)
652
+  (0.1ms) begin transaction
653
+  (2.7ms) CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100), "url" text(2047), "criteria" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
654
+  (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130702074520')
655
+  (135.9ms) commit transaction
656
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
657
+ Connecting to database specified by database.yml
658
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
659
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
660
+ Migrating to CreateRemotePartialPartials (20130702074520)
661
+  (0.1ms) select sqlite_version(*)
662
+  (0.1ms) begin transaction
663
+  (47.6ms) DROP TABLE "remote_partial_partials"
664
+  (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130702074520'
665
+  (181.7ms) commit transaction
666
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
667
+ Connecting to database specified by database.yml
668
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
669
+ Migrating to CreateRemotePartialPartials (20130702074803)
670
+  (0.1ms) select sqlite_version(*)
671
+  (0.1ms) begin transaction
672
+  (4.6ms) CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "url" text(2047) NOT NULL, "criteria" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
673
+  (1.8ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130702074803')
674
+  (180.2ms) commit transaction
675
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
676
+ Connecting to database specified by database.yml
677
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
678
+  (0.7ms) select sqlite_version(*)
679
+  (149.8ms) CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "url" text(2047) NOT NULL, "criteria" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
680
+  (155.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
681
+  (165.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
682
+  (0.2ms) SELECT version FROM "schema_migrations"
683
+  (131.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130702074803')
684
+ Connecting to database specified by database.yml
685
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
686
+  (0.1ms) select sqlite_version(*)
687
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
688
+ Connecting to database specified by database.yml
689
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
690
+ Migrating to CreateRemotePartialPartials (20130702080706)
691
+  (0.1ms) select sqlite_version(*)
692
+  (0.5ms) begin transaction
693
+  (0.2ms) CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "url" text(2047) NOT NULL, "criteria" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
694
+ SQLite3::SQLException: table "remote_partial_partials" already exists: CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "url" text(2047) NOT NULL, "criteria" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
695
+  (0.1ms) rollback transaction
696
+ Connecting to database specified by database.yml
697
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
698
+ Migrating to CreateRemotePartialPartials (20130702080706)
699
+  (0.1ms) select sqlite_version(*)
700
+  (0.0ms) begin transaction
701
+  (2.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130702080706')
702
+  (237.2ms) commit transaction
703
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
704
+ Connecting to database specified by database.yml
705
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
706
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
707
+ Migrating to CreateRemotePartialPartials (20130702080706)
708
+  (0.1ms) select sqlite_version(*)
709
+  (0.1ms) begin transaction
710
+  (7.7ms) DROP TABLE "remote_partial_partials"
711
+  (1.6ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130702080706'
712
+  (157.2ms) commit transaction
713
+  (2.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
714
+ Connecting to database specified by database.yml
715
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
716
+ Migrating to CreateRemotePartialPartials (20130702080706)
717
+  (0.1ms) select sqlite_version(*)
718
+  (0.0ms) begin transaction
719
+  (8.2ms) CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "url" text(2047) NOT NULL, "criteria" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
720
+  (1.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130702080706')
721
+  (168.4ms) commit transaction
722
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
723
+ Connecting to database specified by database.yml
724
+ Connecting to database specified by database.yml
725
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
726
+ Migrating to CreateRemotePartialPartials (20130702080706)
727
+ Migrating to CreateDelayedJobs (20130702101757)
728
+  (0.1ms) select sqlite_version(*)
729
+  (0.0ms) begin transaction
730
+  (1.7ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" varchar(255), "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
731
+  (1.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130702101757')
732
+  (167.5ms) commit transaction
733
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
734
+ Connecting to database specified by database.yml
735
+ Connecting to database specified by database.yml
736
+ Connecting to database specified by database.yml
737
+ Connecting to database specified by database.yml
738
+ Connecting to database specified by database.yml
739
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
740
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
741
+ Migrating to CreateDelayedJobs (20130702101757)
742
+  (0.1ms) select sqlite_version(*)
743
+  (0.0ms) begin transaction
744
+  (2.5ms) DROP TABLE "delayed_jobs"
745
+  (0.4ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" varchar(255), "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
746
+  (3.8ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130702101757'
747
+  (137.3ms) commit transaction
748
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
749
+ Connecting to database specified by database.yml
750
+ Connecting to database specified by database.yml
751
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
752
+ Migrating to CreateRemotePartialPartials (20130702080706)
753
+ Migrating to CreateDelayedJobs (20130702101757)
754
+  (0.1ms) select sqlite_version(*)
755
+  (0.0ms) begin transaction
756
+  (2.9ms) DROP TABLE "delayed_jobs"
757
+  (0.3ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" varchar(255), "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
758
+  (9.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130702101757')
759
+  (134.0ms) commit transaction
760
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
761
+ Connecting to database specified by database.yml
762
+ Connecting to database specified by database.yml
763
+ Connecting to database specified by database.yml
764
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
765
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
766
+ Migrating to CreateDelayedJobs (20130702101757)
767
+  (0.7ms) select sqlite_version(*)
768
+  (0.1ms) begin transaction
769
+  (3.7ms) DROP TABLE "delayed_jobs"
770
+  (0.3ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" varchar(255), "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
771
+  (3.8ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130702101757'
772
+  (181.5ms) commit transaction
773
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
774
+ Connecting to database specified by database.yml
775
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
776
+ Migrating to CreateRemotePartialPartials (20130702080706)
777
+ Migrating to CreateDelayedJobs (20130702101757)
778
+  (0.1ms) select sqlite_version(*)
779
+  (0.1ms) begin transaction
780
+  (6.0ms) DROP TABLE "delayed_jobs"
781
+  (0.3ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" varchar(255), "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
782
+  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130702101757')
783
+  (164.9ms) commit transaction
784
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
785
+ Connecting to database specified by database.yml
786
+  (2.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
787
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
788
+ Migrating to CreateDelayedJobs (20130702101757)
789
+  (0.1ms) select sqlite_version(*)
790
+  (0.1ms) begin transaction
791
+  (3.9ms) DROP TABLE "delayed_jobs"
792
+  (1.5ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" varchar(255), "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
793
+  (2.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130702101757'
794
+  (162.4ms) commit transaction
795
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
796
+ Connecting to database specified by database.yml
797
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
798
+ Migrating to CreateRemotePartialPartials (20130702080706)
799
+ Migrating to CreateDelayedJobs (20130703074257)
800
+  (0.1ms) select sqlite_version(*)
801
+  (0.1ms) begin transaction
802
+  (3.8ms) DROP TABLE "delayed_jobs"
803
+  (2.5ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
804
+  (0.3ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
805
+  (2.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130703074257')
806
+  (159.3ms) commit transaction
807
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
808
+ Connecting to database specified by database.yml
809
+ Connecting to database specified by database.yml
810
+ Connecting to database specified by database.yml
811
+ Connecting to database specified by database.yml
812
+ Connecting to database specified by database.yml
813
+ Connecting to database specified by database.yml
814
+ Connecting to database specified by database.yml
815
+ Connecting to database specified by database.yml
816
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
817
+  (0.2ms) select sqlite_version(*)
818
+  (200.9ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
819
+  (493.3ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
820
+  (480.3ms) CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "url" text(2047) NOT NULL, "criteria" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
821
+  (239.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
822
+  (388.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
823
+  (0.1ms) SELECT version FROM "schema_migrations"
824
+  (335.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130703074257')
825
+  (218.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130702080706')
826
+ Connecting to database specified by database.yml
827
+ Connecting to database specified by database.yml
828
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
829
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
830
+ Migrating to CreateDelayedJobs (20130703074257)
831
+  (0.1ms) select sqlite_version(*)
832
+  (0.1ms) begin transaction
833
+  (4.5ms) DROP TABLE "delayed_jobs"
834
+  (0.4ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130703074257'
835
+  (338.9ms) commit transaction
836
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
837
+ Connecting to database specified by database.yml
838
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
839
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
840
+ Migrating to CreateRemotePartialPartials (20130702080706)
841
+  (0.1ms) select sqlite_version(*)
842
+  (0.1ms) begin transaction
843
+  (4.7ms) DROP TABLE "remote_partial_partials"
844
+  (1.7ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130702080706'
845
+  (252.8ms) commit transaction
846
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
847
+ Connecting to database specified by database.yml
848
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
849
+ Migrating to CreateRemotePartialPartials (20130703102759)
850
+  (0.1ms) select sqlite_version(*)
851
+  (0.1ms) begin transaction
852
+  (5.9ms) CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "url" text(2047) NOT NULL, "criteria" varchar(255), "repeat_period" float, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
853
+  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130703102759')
854
+  (513.1ms) commit transaction
855
+ Migrating to CreateDelayedJobs (20130703102760)
856
+  (0.1ms) begin transaction
857
+  (4.5ms) CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
858
+  (0.2ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
859
+  (1.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130703102760')
860
+  (337.8ms) commit transaction
861
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
862
+ Connecting to database specified by database.yml
863
+ Connecting to database specified by database.yml
864
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
865
+  (0.1ms) begin transaction
866
+ SQL (34.0ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Jul 2013 10:53:20 UTC +00:00], ["criteria", "#clock"], ["name", "clock"], ["repeat_period", 300.0], ["updated_at", Wed, 03 Jul 2013 10:53:20 UTC +00:00], ["url", "samples/one"]]
867
+  (274.2ms) commit transaction
868
+ Connecting to database specified by database.yml
869
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
870
+  (0.1ms) begin transaction
871
+  (0.1ms) commit transaction
872
+ Connecting to database specified by database.yml
873
+ RemotePartial::Partial Load (0.8ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
874
+  (0.1ms) begin transaction
875
+  (12.3ms) UPDATE "remote_partial_partials" SET "url" = 'http://localhost:3000/samples/one', "updated_at" = '2013-07-03 10:55:09.085079' WHERE "remote_partial_partials"."id" = 1
876
+  (387.7ms) commit transaction
877
+ Connecting to database specified by database.yml
878
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
879
+  (0.1ms) begin transaction
880
+  (2.2ms) UPDATE "remote_partial_partials" SET "url" = 'http://www.timeanddate.com/worldclock/city.html?n=136', "criteria" = '#ct', "updated_at" = '2013-07-03 10:57:32.189252' WHERE "remote_partial_partials"."id" = 1
881
+  (486.6ms) commit transaction
882
+  (1.1ms) begin transaction
883
+ SQL (4.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 10:57:33 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: 2013-07-03 10:57:32.189252224 Z\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xb0a7034@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 10:57:33 UTC +00:00]]
884
+  (206.3ms) commit transaction
885
+
886
+
887
+ Started GET "/" for 127.0.0.1 at 2013-07-03 11:57:42 +0100
888
+
889
+ ActionController::RoutingError (No route matches [GET] "/"):
890
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
891
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
892
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
893
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
894
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
895
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
896
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
897
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
898
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
899
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
900
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
901
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
902
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
903
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
904
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
905
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
906
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
907
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
908
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
909
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
910
+
911
+
912
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.9ms)
913
+
914
+
915
+ Started GET "/demos" for 127.0.0.1 at 2013-07-03 11:57:49 +0100
916
+ Processing by DemosController#index as HTML
917
+ Rendered demos/index.html.erb within layouts/application (3.3ms)
918
+ Completed 200 OK in 630ms (Views: 629.9ms | ActiveRecord: 0.0ms)
919
+
920
+
921
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 11:57:50 +0100
922
+ Served asset /application.css - 304 Not Modified (12ms)
923
+
924
+
925
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 11:57:50 +0100
926
+ Served asset /jquery_ujs.js - 304 Not Modified (7ms)
927
+
928
+
929
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 11:57:50 +0100
930
+ Served asset /demos.js - 304 Not Modified (21ms)
931
+
932
+
933
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 11:57:50 +0100
934
+ Served asset /samples.js - 304 Not Modified (11ms)
935
+
936
+
937
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 11:57:50 +0100
938
+ Served asset /application.js - 304 Not Modified (32ms)
939
+
940
+
941
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 11:57:50 +0100
942
+ Served asset /demos.css - 304 Not Modified (14ms)
943
+
944
+
945
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 11:57:50 +0100
946
+ Served asset /samples.css - 304 Not Modified (17ms)
947
+
948
+
949
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 11:57:50 +0100
950
+ Served asset /jquery.js - 304 Not Modified (28ms)
951
+
952
+
953
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 11:57:53 +0100
954
+ Processing by DemosController#show as HTML
955
+ Parameters: {"id"=>"clock"}
956
+ Rendered remote_partials/_fixed.html.erb (0.4ms)
957
+ Rendered demos/_clock.html.erb (2.3ms)
958
+ Rendered demos/show.html.erb within layouts/application (73.0ms)
959
+ Completed 200 OK in 87ms (Views: 86.4ms | ActiveRecord: 0.0ms)
960
+
961
+
962
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 11:57:53 +0100
963
+ Served asset /application.css - 304 Not Modified (5ms)
964
+
965
+
966
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 11:57:53 +0100
967
+ Served asset /demos.css - 304 Not Modified (0ms)
968
+
969
+
970
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 11:57:54 +0100
971
+ Served asset /samples.js - 304 Not Modified (0ms)
972
+
973
+
974
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 11:57:54 +0100
975
+ Served asset /jquery.js - 304 Not Modified (1ms)
976
+
977
+
978
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 11:57:54 +0100
979
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
980
+
981
+
982
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 11:57:54 +0100
983
+ Served asset /samples.css - 304 Not Modified (0ms)
984
+
985
+
986
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 11:57:54 +0100
987
+ Served asset /demos.js - 304 Not Modified (0ms)
988
+
989
+
990
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 11:57:54 +0100
991
+ Served asset /application.js - 304 Not Modified (8ms)
992
+
993
+
994
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 11:58:22 +0100
995
+ Processing by DemosController#show as HTML
996
+ Parameters: {"id"=>"clock"}
997
+ Rendered remote_partials/_clock.html.erb (0.4ms)
998
+ Rendered demos/_clock.html.erb (6.9ms)
999
+ Rendered demos/show.html.erb within layouts/application (18.5ms)
1000
+ Completed 200 OK in 37ms (Views: 37.0ms | ActiveRecord: 0.0ms)
1001
+
1002
+
1003
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 11:58:22 +0100
1004
+ Served asset /application.css - 304 Not Modified (0ms)
1005
+
1006
+
1007
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 11:58:22 +0100
1008
+ Served asset /demos.css - 304 Not Modified (3ms)
1009
+
1010
+
1011
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 11:58:22 +0100
1012
+ Served asset /samples.css - 304 Not Modified (5ms)
1013
+
1014
+
1015
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 11:58:22 +0100
1016
+ Served asset /jquery.js - 304 Not Modified (10ms)
1017
+
1018
+
1019
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 11:58:22 +0100
1020
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1021
+
1022
+
1023
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 11:58:22 +0100
1024
+ Served asset /samples.js - 304 Not Modified (0ms)
1025
+
1026
+
1027
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 11:58:22 +0100
1028
+ Served asset /demos.js - 304 Not Modified (0ms)
1029
+
1030
+
1031
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 11:58:22 +0100
1032
+ Served asset /application.js - 304 Not Modified (6ms)
1033
+
1034
+
1035
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 11:58:25 +0100
1036
+ Processing by DemosController#show as HTML
1037
+ Parameters: {"id"=>"clock"}
1038
+ Rendered remote_partials/_clock.html.erb (0.0ms)
1039
+ Rendered demos/_clock.html.erb (0.8ms)
1040
+ Rendered demos/show.html.erb within layouts/application (1.1ms)
1041
+ Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.0ms)
1042
+
1043
+
1044
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 11:58:25 +0100
1045
+ Served asset /application.css - 304 Not Modified (0ms)
1046
+
1047
+
1048
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 11:58:26 +0100
1049
+ Served asset /demos.css - 304 Not Modified (0ms)
1050
+
1051
+
1052
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 11:58:26 +0100
1053
+ Served asset /samples.css - 304 Not Modified (0ms)
1054
+
1055
+
1056
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 11:58:26 +0100
1057
+ Served asset /jquery.js - 304 Not Modified (2ms)
1058
+
1059
+
1060
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 11:58:26 +0100
1061
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1062
+
1063
+
1064
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 11:58:26 +0100
1065
+ Served asset /demos.js - 304 Not Modified (0ms)
1066
+
1067
+
1068
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 11:58:26 +0100
1069
+ Served asset /samples.js - 304 Not Modified (0ms)
1070
+
1071
+
1072
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 11:58:26 +0100
1073
+ Served asset /application.js - 304 Not Modified (6ms)
1074
+
1075
+
1076
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 12:16:57 +0100
1077
+ Processing by DemosController#show as HTML
1078
+ Parameters: {"id"=>"clock"}
1079
+ Rendered remote_partials/_clock.html.erb (0.0ms)
1080
+ Rendered demos/_clock.html.erb (0.8ms)
1081
+ Rendered demos/show.html.erb within layouts/application (7.1ms)
1082
+ Completed 200 OK in 37ms (Views: 37.1ms | ActiveRecord: 0.0ms)
1083
+
1084
+
1085
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 12:16:57 +0100
1086
+ Served asset /application.css - 304 Not Modified (0ms)
1087
+
1088
+
1089
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 12:16:58 +0100
1090
+ Served asset /demos.css - 304 Not Modified (0ms)
1091
+
1092
+
1093
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 12:16:58 +0100
1094
+ Served asset /samples.css - 304 Not Modified (0ms)
1095
+
1096
+
1097
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 12:16:58 +0100
1098
+ Served asset /jquery.js - 304 Not Modified (1ms)
1099
+
1100
+
1101
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 12:16:58 +0100
1102
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1103
+
1104
+
1105
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 12:16:58 +0100
1106
+ Served asset /demos.js - 304 Not Modified (0ms)
1107
+
1108
+
1109
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 12:16:58 +0100
1110
+ Served asset /samples.js - 304 Not Modified (0ms)
1111
+
1112
+
1113
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 12:16:58 +0100
1114
+ Served asset /application.js - 304 Not Modified (10ms)
1115
+
1116
+
1117
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 12:38:18 +0100
1118
+ Processing by DemosController#show as HTML
1119
+ Parameters: {"id"=>"clock"}
1120
+ Rendered remote_partials/_clock.html.erb (0.0ms)
1121
+ Rendered demos/_clock.html.erb (9.3ms)
1122
+ Rendered demos/show.html.erb within layouts/application (10.8ms)
1123
+ Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.0ms)
1124
+
1125
+
1126
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 12:38:18 +0100
1127
+ Served asset /application.css - 304 Not Modified (0ms)
1128
+
1129
+
1130
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 12:38:18 +0100
1131
+ Served asset /demos.css - 304 Not Modified (18ms)
1132
+
1133
+
1134
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 12:38:18 +0100
1135
+ Served asset /samples.css - 304 Not Modified (0ms)
1136
+
1137
+
1138
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 12:38:18 +0100
1139
+ Served asset /jquery.js - 304 Not Modified (15ms)
1140
+
1141
+
1142
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 12:38:18 +0100
1143
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1144
+
1145
+
1146
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 12:38:18 +0100
1147
+ Served asset /samples.js - 304 Not Modified (0ms)
1148
+
1149
+
1150
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 12:38:19 +0100
1151
+ Served asset /demos.js - 304 Not Modified (0ms)
1152
+
1153
+
1154
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 12:38:19 +0100
1155
+ Served asset /application.js - 304 Not Modified (3ms)
1156
+ Connecting to database specified by database.yml
1157
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1158
+  (0.7ms) begin transaction
1159
+  (0.1ms) commit transaction
1160
+  (0.1ms) begin transaction
1161
+ SQL (10.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:38:42 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xb4d7708@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:38:42 UTC +00:00]]
1162
+  (165.3ms) commit transaction
1163
+
1164
+
1165
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 12:38:45 +0100
1166
+ Processing by DemosController#show as HTML
1167
+ Parameters: {"id"=>"clock"}
1168
+ Rendered remote_partials/_clock.html.erb (0.5ms)
1169
+ Rendered demos/_clock.html.erb (8.0ms)
1170
+ Rendered demos/show.html.erb within layouts/application (68.5ms)
1171
+ Completed 200 OK in 162ms (Views: 161.1ms | ActiveRecord: 0.0ms)
1172
+
1173
+
1174
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 12:38:45 +0100
1175
+ Served asset /application.css - 304 Not Modified (30ms)
1176
+
1177
+
1178
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 12:38:45 +0100
1179
+ Served asset /demos.css - 304 Not Modified (16ms)
1180
+
1181
+
1182
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 12:38:45 +0100
1183
+ Served asset /samples.css - 304 Not Modified (55ms)
1184
+
1185
+
1186
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 12:38:45 +0100
1187
+ Served asset /jquery.js - 304 Not Modified (17ms)
1188
+
1189
+
1190
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 12:38:45 +0100
1191
+ Served asset /jquery_ujs.js - 304 Not Modified (17ms)
1192
+
1193
+
1194
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 12:38:45 +0100
1195
+ Served asset /samples.js - 304 Not Modified (13ms)
1196
+
1197
+
1198
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 12:38:45 +0100
1199
+ Served asset /application.js - 304 Not Modified (25ms)
1200
+
1201
+
1202
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 12:38:46 +0100
1203
+ Served asset /demos.js - 304 Not Modified (9ms)
1204
+ Connecting to database specified by database.yml
1205
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1206
+  (0.1ms) begin transaction
1207
+  (0.1ms) commit transaction
1208
+  (0.1ms) begin transaction
1209
+ SQL (10.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:32 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xaa7ef68@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:32 UTC +00:00]]
1210
+  (156.7ms) commit transaction
1211
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:32.894495' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:32.894526') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1212
+ SQL (143.9ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:32.895232', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 1 AND ((run_at <= '2013-07-03 11:46:32.894495' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:32.894526') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1213
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 1]]
1214
+ RemotePartial::Partial Load (1.9ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1215
+  (0.1ms) begin transaction
1216
+ SQL (5.1ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:33 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xa5d6844@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:33 UTC +00:00]]
1217
+  (162.8ms) commit transaction
1218
+  (0.1ms) begin transaction
1219
+ SQL (0.7ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 1]]
1220
+  (105.7ms) commit transaction
1221
+ Delayed::Backend::ActiveRecord::Job Load (2.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:33.832500' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:33.832559') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1222
+ SQL (108.6ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:33.833596', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 2 AND ((run_at <= '2013-07-03 11:46:33.832500' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:33.832559') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1223
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 2]]
1224
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1225
+  (0.1ms) begin transaction
1226
+ SQL (6.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:35 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xad5a430@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:35 UTC +00:00]]
1227
+  (259.0ms) commit transaction
1228
+  (0.1ms) begin transaction
1229
+ SQL (1.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 2]]
1230
+  (223.8ms) commit transaction
1231
+ Delayed::Backend::ActiveRecord::Job Load (0.9ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:35.884959' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:35.885011') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1232
+ SQL (125.2ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:35.885963', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 3 AND ((run_at <= '2013-07-03 11:46:35.884959' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:35.885011') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1233
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 3]]
1234
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1235
+  (0.0ms) begin transaction
1236
+ SQL (4.0ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:36 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xaa9e444@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:36 UTC +00:00]]
1237
+  (213.2ms) commit transaction
1238
+  (0.3ms) begin transaction
1239
+ SQL (5.8ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 3]]
1240
+  (139.3ms) commit transaction
1241
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:36.865242' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:36.865281') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1242
+ SQL (135.6ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:36.865996', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 4 AND ((run_at <= '2013-07-03 11:46:36.865242' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:36.865281') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1243
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 4]]
1244
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1245
+  (0.1ms) begin transaction
1246
+ SQL (5.3ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:38 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xb2a686c@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:38 UTC +00:00]]
1247
+  (203.3ms) commit transaction
1248
+  (0.1ms) begin transaction
1249
+ SQL (1.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 4]]
1250
+  (120.5ms) commit transaction
1251
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:38.523574' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:38.523604') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1252
+ SQL (281.6ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:38.524068', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 5 AND ((run_at <= '2013-07-03 11:46:38.523574' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:38.523604') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1253
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 5]]
1254
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1255
+  (0.1ms) begin transaction
1256
+ SQL (8.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:39 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xb06533c@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:39 UTC +00:00]]
1257
+  (161.1ms) commit transaction
1258
+  (0.4ms) begin transaction
1259
+ SQL (13.7ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 5]]
1260
+  (133.6ms) commit transaction
1261
+ Delayed::Backend::ActiveRecord::Job Load (2.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:39.616769' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:39.616821') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1262
+ SQL (106.2ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:39.617926', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 6 AND ((run_at <= '2013-07-03 11:46:39.616769' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:39.616821') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1263
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 6]]
1264
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1265
+  (0.1ms) begin transaction
1266
+ SQL (5.7ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:41 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xa4c859c@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:41 UTC +00:00]]
1267
+  (151.5ms) commit transaction
1268
+  (0.2ms) begin transaction
1269
+ SQL (7.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 6]]
1270
+  (94.1ms) commit transaction
1271
+ Delayed::Backend::ActiveRecord::Job Load (1.0ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:41.300248' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:41.300302') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1272
+ SQL (120.3ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:41.301398', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 7 AND ((run_at <= '2013-07-03 11:46:41.300248' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:41.300302') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1273
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 7]]
1274
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1275
+  (0.1ms) begin transaction
1276
+ SQL (3.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:41 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xa6a3e98@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:41 UTC +00:00]]
1277
+  (185.5ms) commit transaction
1278
+  (0.5ms) begin transaction
1279
+ SQL (1.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 7]]
1280
+  (162.5ms) commit transaction
1281
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:42.250585' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:42.250637') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1282
+ SQL (142.2ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:42.251838', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 8 AND ((run_at <= '2013-07-03 11:46:42.250585' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:42.250637') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1283
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 8]]
1284
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1285
+  (0.1ms) begin transaction
1286
+ SQL (7.2ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:44 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xa877148@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:44 UTC +00:00]]
1287
+  (218.1ms) commit transaction
1288
+  (0.2ms) begin transaction
1289
+ SQL (1.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 8]]
1290
+  (129.4ms) commit transaction
1291
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:44.949630' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:44.949669') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1292
+ SQL (125.9ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:44.950400', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 9 AND ((run_at <= '2013-07-03 11:46:44.949630' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:44.949669') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1293
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 9]]
1294
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1295
+  (0.1ms) begin transaction
1296
+ SQL (7.7ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:45 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xb4a0c80@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:45 UTC +00:00]]
1297
+  (154.4ms) commit transaction
1298
+  (0.6ms) begin transaction
1299
+ SQL (5.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 9]]
1300
+  (136.9ms) commit transaction
1301
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:45.849368' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:45.849407') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1302
+ SQL (177.3ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:45.850112', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 10 AND ((run_at <= '2013-07-03 11:46:45.849368' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:45.849407') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1303
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 10]]
1304
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1305
+  (0.1ms) begin transaction
1306
+ SQL (0.7ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:46 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xadbab8c@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:46 UTC +00:00]]
1307
+  (162.1ms) commit transaction
1308
+  (0.1ms) begin transaction
1309
+ SQL (0.6ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 10]]
1310
+  (138.3ms) commit transaction
1311
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:46.790469' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:46.790496') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1312
+ SQL (122.5ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:46.790962', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 11 AND ((run_at <= '2013-07-03 11:46:46.790469' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:46.790496') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1313
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 11]]
1314
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1315
+  (0.1ms) begin transaction
1316
+ SQL (0.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:48 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xadbb014@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:48 UTC +00:00]]
1317
+  (166.9ms) commit transaction
1318
+  (0.1ms) begin transaction
1319
+ SQL (0.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 11]]
1320
+  (156.5ms) commit transaction
1321
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:46:48.552190' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:48.552245') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1322
+ SQL (154.1ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:46:48.553638', "locked_by" = 'host:robvm pid:8066' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 12 AND ((run_at <= '2013-07-03 11:46:48.552190' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:46:48.552245') OR locked_by = 'host:robvm pid:8066') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1323
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 12]]
1324
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1325
+  (0.1ms) begin transaction
1326
+ SQL (8.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:46:58 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", #<Proc:0xa70c7e0@/home/rob/web/remote_partial/app/models/remote_partial/partial.rb:26>], ["updated_at", Wed, 03 Jul 2013 11:46:58 UTC +00:00]]
1327
+  (170.5ms) commit transaction
1328
+  (0.1ms) begin transaction
1329
+ SQL (0.7ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 12]]
1330
+  (139.1ms) commit transaction
1331
+ SQL (1.3ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8066'
1332
+ Connecting to database specified by database.yml
1333
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1334
+  (0.1ms) begin transaction
1335
+  (0.1ms) commit transaction
1336
+  (0.1ms) begin transaction
1337
+ SQL (11.7ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:49:31 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:49:31 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:49:31 UTC +00:00]]
1338
+  (198.4ms) commit transaction
1339
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:49:31.561114' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:31.561195') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1340
+ SQL (134.7ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:49:31.561879', "locked_by" = 'host:robvm pid:8087' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 13 AND ((run_at <= '2013-07-03 11:49:31.561114' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:31.561195') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1341
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 13]]
1342
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1343
+  (0.1ms) begin transaction
1344
+ SQL (5.2ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:49:32 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:49:32 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:49:32 UTC +00:00]]
1345
+  (136.0ms) commit transaction
1346
+  (0.1ms) begin transaction
1347
+ SQL (0.6ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 13]]
1348
+  (181.0ms) commit transaction
1349
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:49:32.371163' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:32.371212') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1350
+ SQL (161.7ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:49:32.372204', "locked_by" = 'host:robvm pid:8087' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 14 AND ((run_at <= '2013-07-03 11:49:32.371163' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:32.371212') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1351
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 14]]
1352
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1353
+  (0.1ms) begin transaction
1354
+ SQL (5.1ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:49:32 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:49:32 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:49:32 UTC +00:00]]
1355
+  (163.7ms) commit transaction
1356
+  (0.1ms) begin transaction
1357
+ SQL (0.6ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 14]]
1358
+  (163.3ms) commit transaction
1359
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:49:33.127842' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:33.127894') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1360
+ SQL (146.1ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:49:33.128471', "locked_by" = 'host:robvm pid:8087' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 15 AND ((run_at <= '2013-07-03 11:49:33.127842' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:33.127894') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1361
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 15]]
1362
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1363
+  (0.2ms) begin transaction
1364
+ SQL (7.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:49:33 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:49:33 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:49:33 UTC +00:00]]
1365
+  (164.9ms) commit transaction
1366
+  (0.1ms) begin transaction
1367
+ SQL (0.8ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 15]]
1368
+  (154.6ms) commit transaction
1369
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:49:33.910245' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:33.910285') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1370
+ SQL (133.8ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:49:33.910689', "locked_by" = 'host:robvm pid:8087' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 16 AND ((run_at <= '2013-07-03 11:49:33.910245' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:33.910285') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1371
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 16]]
1372
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1373
+  (7.4ms) begin transaction
1374
+ SQL (0.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:49:34 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:49:34 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:49:34 UTC +00:00]]
1375
+  (157.1ms) commit transaction
1376
+  (0.1ms) begin transaction
1377
+ SQL (0.8ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 16]]
1378
+  (276.3ms) commit transaction
1379
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:49:35.010581' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:35.010624') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1380
+ SQL (180.0ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:49:35.011438', "locked_by" = 'host:robvm pid:8087' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 17 AND ((run_at <= '2013-07-03 11:49:35.010581' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:35.010624') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1381
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 17]]
1382
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1383
+  (0.1ms) begin transaction
1384
+ SQL (6.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:49:35 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:49:35 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:49:35 UTC +00:00]]
1385
+  (130.5ms) commit transaction
1386
+  (0.1ms) begin transaction
1387
+ SQL (0.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 17]]
1388
+  (113.8ms) commit transaction
1389
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:49:35.727481' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:35.727553') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1390
+ SQL (114.6ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:49:35.727985', "locked_by" = 'host:robvm pid:8087' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 18 AND ((run_at <= '2013-07-03 11:49:35.727481' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:49:35.727553') OR locked_by = 'host:robvm pid:8087') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1391
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 18]]
1392
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1393
+  (0.1ms) begin transaction
1394
+ SQL (0.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:49:36 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:49:36 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:49:36 UTC +00:00]]
1395
+  (155.7ms) commit transaction
1396
+  (0.1ms) begin transaction
1397
+ SQL (0.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 18]]
1398
+  (147.9ms) commit transaction
1399
+ SQL (0.2ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8087'
1400
+ Connecting to database specified by database.yml
1401
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1402
+  (0.1ms) begin transaction
1403
+  (0.1ms) commit transaction
1404
+  (0.1ms) begin transaction
1405
+ SQL (12.1ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:49:47 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:49:47 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:49:47 UTC +00:00]]
1406
+  (151.5ms) commit transaction
1407
+ Connecting to database specified by database.yml
1408
+ RemotePartial::Partial Load (1.0ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1409
+  (0.1ms) begin transaction
1410
+  (0.1ms) commit transaction
1411
+  (0.1ms) begin transaction
1412
+ SQL (8.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:50:41 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:50:41 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:50:41 UTC +00:00]]
1413
+  (159.8ms) commit transaction
1414
+ Connecting to database specified by database.yml
1415
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1416
+  (0.1ms) begin transaction
1417
+  (0.1ms) commit transaction
1418
+  (0.1ms) begin transaction
1419
+ SQL (8.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:50:53 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:50:53 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:50:53 UTC +00:00]]
1420
+  (177.7ms) commit transaction
1421
+ Delayed::Backend::ActiveRecord::Job Load (9.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:50:54.341105' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:54.341151') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1422
+ SQL (149.8ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:50:54.341822', "locked_by" = 'host:robvm pid:8103' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 24 AND ((run_at <= '2013-07-03 11:50:54.341105' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:54.341151') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1423
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 24]]
1424
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1425
+  (0.1ms) begin transaction
1426
+ SQL (6.3ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:50:54 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:50:54 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:50:54 UTC +00:00]]
1427
+  (153.8ms) commit transaction
1428
+  (0.1ms) begin transaction
1429
+ SQL (0.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 24]]
1430
+  (120.6ms) commit transaction
1431
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:50:55.092002' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:55.092042') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1432
+ SQL (113.1ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:50:55.092790', "locked_by" = 'host:robvm pid:8103' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 25 AND ((run_at <= '2013-07-03 11:50:55.092002' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:55.092042') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1433
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 25]]
1434
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1435
+  (0.1ms) begin transaction
1436
+ SQL (4.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:50:55 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:50:55 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:50:55 UTC +00:00]]
1437
+  (251.5ms) commit transaction
1438
+  (0.1ms) begin transaction
1439
+ SQL (1.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 25]]
1440
+  (170.2ms) commit transaction
1441
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:50:55.924858' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:55.924900') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1442
+ SQL (164.1ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:50:55.925370', "locked_by" = 'host:robvm pid:8103' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 26 AND ((run_at <= '2013-07-03 11:50:55.924858' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:55.924900') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1443
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 26]]
1444
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1445
+  (0.1ms) begin transaction
1446
+ SQL (2.2ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:50:56 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:50:56 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:50:56 UTC +00:00]]
1447
+  (131.9ms) commit transaction
1448
+  (0.1ms) begin transaction
1449
+ SQL (8.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 26]]
1450
+  (106.8ms) commit transaction
1451
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:50:56.684305' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:56.684336') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1452
+ SQL (306.0ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:50:56.684867', "locked_by" = 'host:robvm pid:8103' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 27 AND ((run_at <= '2013-07-03 11:50:56.684305' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:56.684336') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1453
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 27]]
1454
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1455
+  (0.1ms) begin transaction
1456
+ SQL (5.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:50:57 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:50:57 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:50:57 UTC +00:00]]
1457
+  (119.2ms) commit transaction
1458
+  (0.1ms) begin transaction
1459
+ SQL (0.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 27]]
1460
+  (147.4ms) commit transaction
1461
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:50:57.533345' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:57.533369') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1462
+ SQL (159.7ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:50:57.533789', "locked_by" = 'host:robvm pid:8103' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 28 AND ((run_at <= '2013-07-03 11:50:57.533345' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:57.533369') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1463
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 28]]
1464
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1465
+  (0.1ms) begin transaction
1466
+ SQL (4.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:50:57 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:50:57 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:50:57 UTC +00:00]]
1467
+  (159.1ms) commit transaction
1468
+  (0.1ms) begin transaction
1469
+ SQL (0.2ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 28]]
1470
+  (174.4ms) commit transaction
1471
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:50:58.334792' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:58.334818') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1472
+ SQL (163.4ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:50:58.335319', "locked_by" = 'host:robvm pid:8103' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 29 AND ((run_at <= '2013-07-03 11:50:58.334792' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:58.334818') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1473
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 29]]
1474
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1475
+  (0.1ms) begin transaction
1476
+ SQL (4.2ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:50:59 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:50:59 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:50:59 UTC +00:00]]
1477
+  (185.7ms) commit transaction
1478
+  (0.3ms) begin transaction
1479
+ SQL (0.6ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 29]]
1480
+  (228.9ms) commit transaction
1481
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:50:59.508782' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:59.508807') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1482
+ SQL (139.7ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:50:59.509304', "locked_by" = 'host:robvm pid:8103' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 30 AND ((run_at <= '2013-07-03 11:50:59.508782' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:50:59.508807') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1483
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 30]]
1484
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1485
+  (0.1ms) begin transaction
1486
+ SQL (10.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:50:59 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:50:59 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:50:59 UTC +00:00]]
1487
+  (121.9ms) commit transaction
1488
+  (0.1ms) begin transaction
1489
+ SQL (0.4ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 30]]
1490
+  (214.0ms) commit transaction
1491
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:51:00.251949' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:51:00.252006') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1492
+ SQL (146.2ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:51:00.252795', "locked_by" = 'host:robvm pid:8103' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 31 AND ((run_at <= '2013-07-03 11:51:00.251949' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:51:00.252006') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1493
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 31]]
1494
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1495
+  (0.1ms) begin transaction
1496
+ SQL (7.4ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:51:00 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:51:00 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:51:00 UTC +00:00]]
1497
+  (173.6ms) commit transaction
1498
+  (0.1ms) begin transaction
1499
+ SQL (0.6ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 31]]
1500
+  (145.9ms) commit transaction
1501
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:51:01.266940' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:51:01.266968') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1502
+ SQL (171.7ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:51:01.267476', "locked_by" = 'host:robvm pid:8103' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 32 AND ((run_at <= '2013-07-03 11:51:01.266940' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:51:01.266968') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1503
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 32]]
1504
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1505
+  (0.1ms) begin transaction
1506
+ SQL (7.4ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:51:01 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:51:01 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:51:01 UTC +00:00]]
1507
+  (202.1ms) commit transaction
1508
+  (0.1ms) begin transaction
1509
+ SQL (0.2ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 32]]
1510
+  (256.2ms) commit transaction
1511
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 11:51:02.167377' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:51:02.167412') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1512
+ SQL (170.6ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 11:51:02.169117', "locked_by" = 'host:robvm pid:8103' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 33 AND ((run_at <= '2013-07-03 11:51:02.167377' AND (locked_at IS NULL OR locked_at < '2013-07-03 07:51:02.167412') OR locked_by = 'host:robvm pid:8103') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1513
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 33]]
1514
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1515
+  (0.1ms) begin transaction
1516
+ SQL (0.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:51:02 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:51:02 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:51:02 UTC +00:00]]
1517
+  (185.6ms) commit transaction
1518
+  (0.1ms) begin transaction
1519
+ SQL (0.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 33]]
1520
+  (220.6ms) commit transaction
1521
+ SQL (0.2ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8103'
1522
+ Connecting to database specified by database.yml
1523
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1524
+  (0.1ms) begin transaction
1525
+  (0.1ms) commit transaction
1526
+  (0.1ms) begin transaction
1527
+ SQL (12.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 11:51:11 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 11:51:11 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 11:51:11 UTC +00:00]]
1528
+  (155.1ms) commit transaction
1529
+ Connecting to database specified by database.yml
1530
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1531
+  (0.1ms) begin transaction
1532
+  (0.1ms) commit transaction
1533
+  (0.1ms) begin transaction
1534
+ SQL (9.4ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:03:38 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:08:38 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:03:38 UTC +00:00]]
1535
+  (131.8ms) commit transaction
1536
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:03:39.409700' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:03:39.409729') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1537
+ Delayed::Backend::ActiveRecord::Job Load (1.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:03:44.417847' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:03:44.418180') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1538
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:03:49.429009' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:03:49.429071') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1539
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:03:54.435046' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:03:54.435199') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1540
+ Delayed::Backend::ActiveRecord::Job Load (1.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:03:59.441621' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:03:59.441915') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1541
+ Delayed::Backend::ActiveRecord::Job Load (1.0ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:04.456173' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:04.456397') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1542
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:09.476054' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:09.476085') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1543
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:14.479690' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:14.479782') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1544
+ Delayed::Backend::ActiveRecord::Job Load (1.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:19.486873' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:19.487071') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1545
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:24.506214' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:24.506467') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1546
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:29.537908' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:29.537947') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1547
+ Delayed::Backend::ActiveRecord::Job Load (0.9ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:34.544195' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:34.544413') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1548
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:39.561871' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:39.561964') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1549
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:44.573166' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:44.573328') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1550
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:49.581895' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:49.581993') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1551
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:54.588803' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:54.588900') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1552
+ Delayed::Backend::ActiveRecord::Job Load (5.9ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:04:59.596517' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:04:59.596581') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1553
+ Delayed::Backend::ActiveRecord::Job Load (4.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:04.612225' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:04.612504') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1554
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:09.626298' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:09.626402') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1555
+ Delayed::Backend::ActiveRecord::Job Load (6.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:14.639674' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:14.643622') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1556
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:19.666592' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:19.666659') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1557
+ Delayed::Backend::ActiveRecord::Job Load (1.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:24.673754' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:24.674039') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1558
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:29.704802' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:29.704847') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1559
+ Delayed::Backend::ActiveRecord::Job Load (0.9ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:34.711175' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:34.711448') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1560
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:39.739917' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:39.739977') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1561
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:44.744286' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:44.744469') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1562
+ Delayed::Backend::ActiveRecord::Job Load (3.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:49.756902' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:49.756976') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1563
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:54.765193' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:54.765314') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1564
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:05:59.772271' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:05:59.772402') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1565
+ Delayed::Backend::ActiveRecord::Job Load (1.0ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:04.774414' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:04.774481') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1566
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:09.784761' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:09.785004') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1567
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:14.791977' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:14.792079') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1568
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:19.804541' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:19.804867') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1569
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:24.831391' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:24.831448') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1570
+ Delayed::Backend::ActiveRecord::Job Load (2.0ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:29.835999' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:29.836111') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1571
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:34.844105' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:34.844179') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1572
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:39.852027' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:39.852061') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1573
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:44.856143' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:44.856231') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1574
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:49.861564' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:49.861594') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1575
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:54.863421' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:54.863460') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1576
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:06:59.868637' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:06:59.868729') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1577
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:04.882362' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:04.882465') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1578
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:09.887618' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:09.887661') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1579
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:14.891121' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:14.891288') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1580
+ Delayed::Backend::ActiveRecord::Job Load (1.0ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:19.901625' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:19.901700') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1581
+ Delayed::Backend::ActiveRecord::Job Load (1.0ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:24.909248' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:24.909381') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1582
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:29.915863' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:29.915918') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1583
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:34.920593' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:34.920758') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1584
+ Delayed::Backend::ActiveRecord::Job Load (0.9ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:39.934535' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:39.934627') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1585
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:44.944634' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:44.944707') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1586
+ SQL (203.6ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 12:07:44.945520', "locked_by" = 'host:robvm pid:8204' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 40 AND ((run_at <= '2013-07-03 12:07:44.944634' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:44.944707') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1587
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 40]]
1588
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1589
+  (0.1ms) begin transaction
1590
+ SQL (6.1ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:07:56 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:12:56 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:07:56 UTC +00:00]]
1591
+  (140.8ms) commit transaction
1592
+  (0.3ms) begin transaction
1593
+ SQL (0.8ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 40]]
1594
+  (127.6ms) commit transaction
1595
+ Delayed::Backend::ActiveRecord::Job Load (2.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:57.160518' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:57.160575') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1596
+ Delayed::Backend::ActiveRecord::Job Load (0.9ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:07:57.168412' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:07:57.168481') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1597
+ Delayed::Backend::ActiveRecord::Job Load (0.9ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:02.174207' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:02.174412') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1598
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:07.185997' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:07.186027') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1599
+ Delayed::Backend::ActiveRecord::Job Load (1.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:12.190521' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:12.190717') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1600
+ Delayed::Backend::ActiveRecord::Job Load (3.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:17.217184' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:17.217239') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1601
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:22.223834' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:22.223949') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1602
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:27.228511' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:27.228573') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1603
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:32.234255' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:32.234403') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1604
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:37.243500' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:37.243549') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1605
+ Connecting to database specified by database.yml
1606
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1607
+  (0.1ms) begin transaction
1608
+  (0.1ms) commit transaction
1609
+  (0.1ms) begin transaction
1610
+ SQL (12.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:08:40 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:13:40 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:08:40 UTC +00:00]]
1611
+  (178.7ms) commit transaction
1612
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:42.247686' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:42.247787') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1613
+ SQL (192.0ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 12:08:42.249835', "locked_by" = 'host:robvm pid:8204' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 41 AND ((run_at <= '2013-07-03 12:08:42.247686' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:42.247787') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1614
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 41]]
1615
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1616
+  (0.1ms) begin transaction
1617
+ SQL (5.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:08:43 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:13:43 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:08:43 UTC +00:00]]
1618
+  (152.7ms) commit transaction
1619
+  (0.1ms) begin transaction
1620
+ SQL (0.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 41]]
1621
+  (240.3ms) commit transaction
1622
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:44.263086' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:44.263115') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1623
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:44.264630' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:44.264669') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1624
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:49.267062' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:49.267276') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1625
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:54.278252' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:54.278340') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1626
+
1627
+
1628
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 13:08:54 +0100
1629
+ Processing by DemosController#show as HTML
1630
+ Parameters: {"id"=>"clock"}
1631
+ Rendered remote_partials/_clock.html.erb (0.0ms)
1632
+ Rendered demos/_clock.html.erb (4.0ms)
1633
+ Rendered demos/show.html.erb within layouts/application (82.5ms)
1634
+ Completed 200 OK in 140ms (Views: 139.5ms | ActiveRecord: 0.0ms)
1635
+
1636
+
1637
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 13:08:55 +0100
1638
+ Served asset /application.css - 304 Not Modified (11ms)
1639
+
1640
+
1641
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 13:08:55 +0100
1642
+ Served asset /demos.css - 304 Not Modified (27ms)
1643
+
1644
+
1645
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 13:08:55 +0100
1646
+ Served asset /samples.css - 304 Not Modified (19ms)
1647
+
1648
+
1649
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 13:08:55 +0100
1650
+ Served asset /jquery.js - 304 Not Modified (9ms)
1651
+
1652
+
1653
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 13:08:55 +0100
1654
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1655
+
1656
+
1657
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 13:08:55 +0100
1658
+ Served asset /samples.js - 304 Not Modified (20ms)
1659
+
1660
+
1661
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 13:08:55 +0100
1662
+ Served asset /demos.js - 304 Not Modified (12ms)
1663
+
1664
+
1665
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 13:08:55 +0100
1666
+ Served asset /application.js - 304 Not Modified (148ms)
1667
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:08:59.287156' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:08:59.287265') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1668
+ Delayed::Backend::ActiveRecord::Job Load (1.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:04.293681' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:04.294016') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1669
+ Delayed::Backend::ActiveRecord::Job Load (7.0ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:09.312136' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:09.312219') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1670
+ Delayed::Backend::ActiveRecord::Job Load (7.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:14.327310' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:14.327629') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1671
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:19.359233' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:19.359304') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1672
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:24.361932' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:24.362089') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1673
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:29.369860' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:29.369919') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1674
+ Delayed::Backend::ActiveRecord::Job Load (1.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:34.377327' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:34.377519') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1675
+ Delayed::Backend::ActiveRecord::Job Load (1.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:39.396037' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:39.396163') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1676
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:44.403694' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:44.403806') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1677
+ Delayed::Backend::ActiveRecord::Job Load (1.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:49.412120' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:49.412222') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1678
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:54.421128' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:54.421161') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1679
+ Delayed::Backend::ActiveRecord::Job Load (7.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:09:59.425539' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:09:59.425796') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1680
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:04.457085' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:04.457151') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1681
+ Delayed::Backend::ActiveRecord::Job Load (7.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:09.465412' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:09.465534') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1682
+ Delayed::Backend::ActiveRecord::Job Load (7.0ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:14.483421' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:14.488167') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1683
+ Delayed::Backend::ActiveRecord::Job Load (0.9ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:19.511399' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:19.511545') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1684
+ Delayed::Backend::ActiveRecord::Job Load (1.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:24.520121' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:24.520171') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1685
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:29.524982' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:29.525090') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1686
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:34.529639' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:34.529698') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1687
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:39.534662' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:39.534778') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1688
+ Delayed::Backend::ActiveRecord::Job Load (2.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:44.546235' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:44.546299') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1689
+ Delayed::Backend::ActiveRecord::Job Load (11.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:49.558834' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:49.559030') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1690
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:54.587293' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:54.587322') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1691
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:10:59.590020' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:10:59.590125') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1692
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:04.593615' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:04.593711') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1693
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:09.599552' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:09.599635') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1694
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:14.603902' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:14.603935') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1695
+ Delayed::Backend::ActiveRecord::Job Load (8.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:19.619440' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:19.621160') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1696
+ Delayed::Backend::ActiveRecord::Job Load (0.9ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:24.632813' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:24.632879') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1697
+ Delayed::Backend::ActiveRecord::Job Load (1.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:29.641057' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:29.641144') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1698
+ Delayed::Backend::ActiveRecord::Job Load (1.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:34.656992' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:34.657058') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1699
+ Delayed::Backend::ActiveRecord::Job Load (1.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:39.665776' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:39.665965') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1700
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:44.688659' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:44.688784') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1701
+ Delayed::Backend::ActiveRecord::Job Load (2.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:49.696307' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:49.696529') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1702
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:54.715868' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:54.715933') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1703
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:11:59.724416' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:11:59.724491') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1704
+ Delayed::Backend::ActiveRecord::Job Load (1.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:04.732667' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:04.732915') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1705
+ Delayed::Backend::ActiveRecord::Job Load (4.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:09.749284' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:09.749404') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1706
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:14.763341' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:14.763430') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1707
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:19.772903' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:19.772934') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1708
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:24.775364' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:24.775467') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1709
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:29.779603' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:29.779709') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1710
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:34.785028' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:34.785104') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1711
+ Delayed::Backend::ActiveRecord::Job Load (3.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:39.797891' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:39.798143') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1712
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:44.818003' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:44.818069') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1713
+ Delayed::Backend::ActiveRecord::Job Load (1.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:49.831432' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:49.831750') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1714
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:54.853405' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:54.853477') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1715
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:12:59.857219' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:59.857264') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1716
+ SQL (195.7ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 12:12:59.857996', "locked_by" = 'host:robvm pid:8204' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 42 AND ((run_at <= '2013-07-03 12:12:59.857219' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:12:59.857264') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1717
+ Delayed::Backend::ActiveRecord::Job Load (5.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 42]]
1718
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1719
+  (0.1ms) begin transaction
1720
+ SQL (6.1ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:13:01 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:18:01 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:13:01 UTC +00:00]]
1721
+  (197.8ms) commit transaction
1722
+  (0.1ms) begin transaction
1723
+ SQL (0.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 42]]
1724
+  (171.5ms) commit transaction
1725
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:01.390322' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:01.390361') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1726
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:01.397544' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:01.397647') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1727
+ Delayed::Backend::ActiveRecord::Job Load (1.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:06.403971' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:06.404147') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1728
+ Delayed::Backend::ActiveRecord::Job Load (1.0ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:11.421228' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:11.421294') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1729
+ Delayed::Backend::ActiveRecord::Job Load (1.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:16.428928' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:16.429008') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1730
+ Delayed::Backend::ActiveRecord::Job Load (1.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:21.440636' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:21.440753') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1731
+ Delayed::Backend::ActiveRecord::Job Load (1.0ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:26.451866' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:26.452058') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1732
+ Delayed::Backend::ActiveRecord::Job Load (0.9ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:31.466619' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:31.466698') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1733
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:36.471038' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:36.471175') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1734
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:41.481511' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:41.481595') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1735
+ SQL (220.0ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 12:13:41.484578', "locked_by" = 'host:robvm pid:8204' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 43 AND ((run_at <= '2013-07-03 12:13:41.481511' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:41.481595') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1736
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 43]]
1737
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1738
+  (0.1ms) begin transaction
1739
+ SQL (0.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:13:42 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:18:42 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:13:42 UTC +00:00]]
1740
+  (173.8ms) commit transaction
1741
+  (0.1ms) begin transaction
1742
+ SQL (0.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 43]]
1743
+  (153.9ms) commit transaction
1744
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:42.370421' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:42.370469') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1745
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:42.381944' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:42.381991') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1746
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:47.390342' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:47.390446') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1747
+ SQL (181.7ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 12:13:47.391264', "locked_by" = 'host:robvm pid:8204' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 44 AND ((run_at <= '2013-07-03 12:13:47.390342' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:47.390446') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1748
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 44]]
1749
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1750
+  (0.1ms) begin transaction
1751
+ SQL (3.2ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:13:47 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:18:47 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:13:47 UTC +00:00]]
1752
+  (170.5ms) commit transaction
1753
+  (0.1ms) begin transaction
1754
+ SQL (0.7ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 44]]
1755
+  (159.1ms) commit transaction
1756
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:48.219391' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:48.219442') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1757
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:48.222689' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:48.222730') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1758
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:53.233382' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:53.233517') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1759
+
1760
+
1761
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 13:13:53 +0100
1762
+ Processing by DemosController#show as HTML
1763
+ Parameters: {"id"=>"clock"}
1764
+ Rendered remote_partials/_clock.html.erb (7.7ms)
1765
+ Rendered demos/_clock.html.erb (8.7ms)
1766
+ Rendered demos/show.html.erb within layouts/application (9.5ms)
1767
+ Completed 200 OK in 47ms (Views: 46.8ms | ActiveRecord: 0.0ms)
1768
+
1769
+
1770
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 13:13:53 +0100
1771
+ Served asset /application.css - 304 Not Modified (0ms)
1772
+
1773
+
1774
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 13:13:53 +0100
1775
+ Served asset /demos.css - 304 Not Modified (0ms)
1776
+
1777
+
1778
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 13:13:53 +0100
1779
+ Served asset /samples.css - 304 Not Modified (0ms)
1780
+
1781
+
1782
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 13:13:53 +0100
1783
+ Served asset /jquery.js - 304 Not Modified (18ms)
1784
+
1785
+
1786
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 13:13:53 +0100
1787
+ Served asset /demos.js - 304 Not Modified (0ms)
1788
+
1789
+
1790
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 13:13:53 +0100
1791
+ Served asset /samples.js - 304 Not Modified (0ms)
1792
+
1793
+
1794
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 13:13:53 +0100
1795
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1796
+
1797
+
1798
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 13:13:53 +0100
1799
+ Served asset /application.js - 304 Not Modified (2ms)
1800
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:13:58.246657' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:13:58.246772') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1801
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:03.253345' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:03.253394') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1802
+ Delayed::Backend::ActiveRecord::Job Load (1.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:08.259365' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:08.259652') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1803
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:13.283093' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:13.283128') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1804
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:18.286220' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:18.286329') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1805
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:23.294884' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:23.294955') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1806
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:28.299861' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:28.299966') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1807
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:33.307204' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:33.307237') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1808
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:38.309460' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:38.309509') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1809
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:43.313907' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:43.314041') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1810
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:48.322454' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:48.322551') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1811
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:53.326808' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:53.326840') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1812
+ Delayed::Backend::ActiveRecord::Job Load (1.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:14:58.334894' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:14:58.335145') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1813
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:15:03.345905' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:15:03.345937') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1814
+ Delayed::Backend::ActiveRecord::Job Load (1.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:15:08.350835' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:15:08.351140') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1815
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:15:13.371649' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:15:13.371679') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1816
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:15:18.375448' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:15:18.375580') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1817
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:15:23.382821' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:15:23.382926') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1818
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:15:28.389978' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:15:28.390034') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1819
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:15:33.404325' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:15:33.404419') OR locked_by = 'host:robvm pid:8204') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1820
+ SQL (1.5ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8204'
1821
+ Connecting to database specified by database.yml
1822
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1823
+  (0.1ms) begin transaction
1824
+  (0.1ms) commit transaction
1825
+  (0.1ms) begin transaction
1826
+ SQL (11.3ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:16:17 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:21:17 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:16:17 UTC +00:00]]
1827
+  (127.0ms) commit transaction
1828
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:16:17.628541' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:16:17.628567') OR locked_by = 'host:robvm pid:8485') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1829
+ SQL (0.2ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8485'
1830
+ Connecting to database specified by database.yml
1831
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1832
+  (0.1ms) begin transaction
1833
+  (0.1ms) commit transaction
1834
+  (0.1ms) begin transaction
1835
+ SQL (10.3ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:21:39 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:26:39 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:21:39 UTC +00:00]]
1836
+  (139.6ms) commit transaction
1837
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:21:39.635129' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:21:39.635156') OR locked_by = 'host:robvm pid:8556') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1838
+ SQL (160.8ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 12:21:39.636583', "locked_by" = 'host:robvm pid:8556' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 45 AND ((run_at <= '2013-07-03 12:21:39.635129' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:21:39.635156') OR locked_by = 'host:robvm pid:8556') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1839
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 45]]
1840
+ RemotePartial::Partial Load (4.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1841
+  (0.4ms) begin transaction
1842
+ SQL (4.1ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:21:40 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:26:40 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:21:40 UTC +00:00]]
1843
+  (152.8ms) commit transaction
1844
+  (0.3ms) begin transaction
1845
+ SQL (12.3ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 45]]
1846
+  (169.5ms) commit transaction
1847
+ Delayed::Backend::ActiveRecord::Job Load (0.7ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:21:40.695955' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:21:40.696047') OR locked_by = 'host:robvm pid:8556') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1848
+ SQL (151.9ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 12:21:40.697071', "locked_by" = 'host:robvm pid:8556' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 46 AND ((run_at <= '2013-07-03 12:21:40.695955' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:21:40.696047') OR locked_by = 'host:robvm pid:8556') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1849
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 46]]
1850
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1851
+  (0.1ms) begin transaction
1852
+ SQL (4.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:21:41 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:26:41 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:21:41 UTC +00:00]]
1853
+  (128.6ms) commit transaction
1854
+  (0.1ms) begin transaction
1855
+ SQL (0.6ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 46]]
1856
+  (352.2ms) commit transaction
1857
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:21:41.802762' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:21:41.802789') OR locked_by = 'host:robvm pid:8556') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1858
+ SQL (190.2ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 12:21:41.803302', "locked_by" = 'host:robvm pid:8556' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 47 AND ((run_at <= '2013-07-03 12:21:41.802762' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:21:41.802789') OR locked_by = 'host:robvm pid:8556') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1859
+ Delayed::Backend::ActiveRecord::Job Load (0.1ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 47]]
1860
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1861
+  (0.1ms) begin transaction
1862
+ SQL (5.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:21:42 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:26:42 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:21:42 UTC +00:00]]
1863
+  (235.6ms) commit transaction
1864
+  (0.1ms) begin transaction
1865
+ SQL (1.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 47]]
1866
+  (257.9ms) commit transaction
1867
+ Delayed::Backend::ActiveRecord::Job Load (0.4ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:21:43.004978' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:21:43.005013') OR locked_by = 'host:robvm pid:8556') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1868
+ SQL (171.0ms) UPDATE "delayed_jobs" SET "locked_at" = '2013-07-03 12:21:43.005582', "locked_by" = 'host:robvm pid:8556' WHERE "delayed_jobs"."id" IN (SELECT "delayed_jobs"."id" FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 48 AND ((run_at <= '2013-07-03 12:21:43.004978' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:21:43.005013') OR locked_by = 'host:robvm pid:8556') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC)
1869
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", 48]]
1870
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1871
+  (0.2ms) begin transaction
1872
+ SQL (8.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:21:43 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300.0\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:26:43 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:21:43 UTC +00:00]]
1873
+  (147.9ms) commit transaction
1874
+  (0.1ms) begin transaction
1875
+ SQL (0.3ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? [["id", 48]]
1876
+  (114.7ms) commit transaction
1877
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:21:43.928078' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:21:43.928104') OR locked_by = 'host:robvm pid:8556') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1878
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:21:43.929437' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:21:43.929453') OR locked_by = 'host:robvm pid:8556') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1879
+ SQL (0.1ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8556'
1880
+ Connecting to database specified by database.yml
1881
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1882
+  (0.1ms) begin transaction
1883
+  (0.1ms) commit transaction
1884
+  (0.1ms) begin transaction
1885
+ SQL (11.4ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:22:58 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:27:58 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:22:58 UTC +00:00]]
1886
+  (175.3ms) commit transaction
1887
+ Connecting to database specified by database.yml
1888
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1889
+  (0.1ms) begin transaction
1890
+  (0.1ms) commit transaction
1891
+ Delayed::Backend::ActiveRecord::Job Load (0.6ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
1892
+ RemotePartial::Partial Load (4.6ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1893
+ SQL (156.2ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 49
1894
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1895
+ SQL (139.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 50
1896
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1897
+ SQL (138.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 51
1898
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1899
+ SQL (139.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 52
1900
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1901
+ SQL (130.3ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 53
1902
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1903
+ SQL (148.0ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 54
1904
+  (0.1ms) begin transaction
1905
+ SQL (7.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:38:36 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:43:36 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:38:36 UTC +00:00]]
1906
+  (124.7ms) commit transaction
1907
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:38:37.083590' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:38:37.083617') OR locked_by = 'host:robvm pid:8644') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1908
+ SQL (0.2ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8644'
1909
+ Connecting to database specified by database.yml
1910
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1911
+  (0.1ms) begin transaction
1912
+  (0.1ms) commit transaction
1913
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
1914
+ RemotePartial::Partial Load (4.5ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1915
+ SQL (132.5ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 55
1916
+  (0.2ms) begin transaction
1917
+ SQL (7.2ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:46:19 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 12:51:19 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:46:19 UTC +00:00]]
1918
+  (119.4ms) commit transaction
1919
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 12:46:20.128699' AND (locked_at IS NULL OR locked_at < '2013-07-03 08:46:20.128738') OR locked_by = 'host:robvm pid:8724') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1920
+ SQL (0.4ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8724'
1921
+
1922
+
1923
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 13:46:36 +0100
1924
+ Processing by DemosController#show as HTML
1925
+ Parameters: {"id"=>"clock"}
1926
+ Rendered remote_partials/_clock.html.erb (0.5ms)
1927
+ Rendered demos/_clock.html.erb (5.5ms)
1928
+ Rendered demos/show.html.erb within layouts/application (6.7ms)
1929
+ Completed 200 OK in 31ms (Views: 30.2ms | ActiveRecord: 0.0ms)
1930
+
1931
+
1932
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 13:46:36 +0100
1933
+ Served asset /application.css - 304 Not Modified (0ms)
1934
+
1935
+
1936
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 13:46:36 +0100
1937
+ Served asset /demos.css - 304 Not Modified (0ms)
1938
+
1939
+
1940
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 13:46:36 +0100
1941
+ Served asset /samples.css - 304 Not Modified (0ms)
1942
+
1943
+
1944
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 13:46:36 +0100
1945
+ Served asset /jquery.js - 304 Not Modified (19ms)
1946
+
1947
+
1948
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 13:46:36 +0100
1949
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1950
+
1951
+
1952
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 13:46:36 +0100
1953
+ Served asset /demos.js - 304 Not Modified (0ms)
1954
+
1955
+
1956
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 13:46:36 +0100
1957
+ Served asset /samples.js - 304 Not Modified (14ms)
1958
+
1959
+
1960
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 13:46:36 +0100
1961
+ Served asset /application.js - 304 Not Modified (9ms)
1962
+ Connecting to database specified by database.yml
1963
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1964
+  (0.1ms) begin transaction
1965
+  (0.1ms) commit transaction
1966
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
1967
+ RemotePartial::Partial Load (10.7ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1968
+ SQL (151.3ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 56
1969
+  (0.1ms) begin transaction
1970
+ SQL (7.4ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 12:57:31 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 13:02:31 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 12:57:31 UTC +00:00]]
1971
+  (133.8ms) commit transaction
1972
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'sample_one_subset' LIMIT 1
1973
+  (0.1ms) begin transaction
1974
+ SQL (4.1ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Jul 2013 12:57:31 UTC +00:00], ["criteria", "#this p"], ["name", "sample_one_subset"], ["repeat_period", 10800.0], ["updated_at", Wed, 03 Jul 2013 12:57:31 UTC +00:00], ["url", "sample/one"]]
1975
+  (140.1ms) commit transaction
1976
+ Connecting to database specified by database.yml
1977
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
1978
+  (0.1ms) begin transaction
1979
+  (0.1ms) commit transaction
1980
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
1981
+ RemotePartial::Partial Load (4.8ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1982
+ SQL (149.9ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 57
1983
+  (0.1ms) begin transaction
1984
+ SQL (5.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:01:20 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 13:06:20 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:01:20 UTC +00:00]]
1985
+  (141.3ms) commit transaction
1986
+ RemotePartial::Partial Load (0.6ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'sample_one_subset' LIMIT 1
1987
+  (0.1ms) begin transaction
1988
+  (4.9ms) UPDATE "remote_partial_partials" SET "url" = 'http://www.ruby-lang.org/en/', "criteria" = '#logo', "updated_at" = '2013-07-03 13:01:20.598175' WHERE "remote_partial_partials"."id" = 2
1989
+  (156.4ms) commit transaction
1990
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
1991
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
1992
+  (0.1ms) begin transaction
1993
+ SQL (1.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:01:20 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 2\n name: sample_one_subset\n url: http://www.ruby-lang.org/en/\n criteria: ! '#logo'\n repeat_period: 10800\n created_at: '2013-07-03 12:57:31.231569'\n updated_at: 2013-07-03 13:01:20.598175458 Z\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 16:01:20 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:01:20 UTC +00:00]]
1994
+  (125.2ms) commit transaction
1995
+ Delayed::Backend::ActiveRecord::Job Load (0.8ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 13:01:21.315596' AND (locked_at IS NULL OR locked_at < '2013-07-03 09:01:21.315634') OR locked_by = 'host:robvm pid:8833') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
1996
+ SQL (0.2ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8833'
1997
+
1998
+
1999
+ Started GET "/" for 127.0.0.1 at 2013-07-03 14:01:38 +0100
2000
+
2001
+ ActionController::RoutingError (No route matches [GET] "/"):
2002
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2003
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2004
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
2005
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
2006
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
2007
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
2008
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2009
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2010
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2011
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2012
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2013
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
2014
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
2015
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
2016
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2017
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
2018
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2019
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2020
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2021
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2022
+
2023
+
2024
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2025
+
2026
+
2027
+ Started GET "/demos" for 127.0.0.1 at 2013-07-03 14:01:43 +0100
2028
+ Processing by DemosController#index as HTML
2029
+ Rendered demos/index.html.erb within layouts/application (8.5ms)
2030
+ Completed 200 OK in 42ms (Views: 41.7ms | ActiveRecord: 0.0ms)
2031
+
2032
+
2033
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:01:43 +0100
2034
+ Served asset /application.css - 304 Not Modified (4ms)
2035
+
2036
+
2037
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:01:43 +0100
2038
+ Served asset /demos.css - 304 Not Modified (44ms)
2039
+
2040
+
2041
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:01:43 +0100
2042
+ Served asset /samples.css - 304 Not Modified (0ms)
2043
+
2044
+
2045
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:01:43 +0100
2046
+ Served asset /jquery.js - 304 Not Modified (9ms)
2047
+
2048
+
2049
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:01:43 +0100
2050
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2051
+
2052
+
2053
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:01:43 +0100
2054
+ Served asset /demos.js - 304 Not Modified (0ms)
2055
+
2056
+
2057
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:01:43 +0100
2058
+ Served asset /samples.js - 304 Not Modified (0ms)
2059
+
2060
+
2061
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:01:43 +0100
2062
+ Served asset /application.js - 304 Not Modified (8ms)
2063
+
2064
+
2065
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 14:01:46 +0100
2066
+ Processing by DemosController#show as HTML
2067
+ Parameters: {"id"=>"clock"}
2068
+ Rendered remote_partials/_clock.html.erb (0.5ms)
2069
+ Rendered demos/_clock.html.erb (1.3ms)
2070
+ Rendered demos/show.html.erb within layouts/application (2.0ms)
2071
+ Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.0ms)
2072
+
2073
+
2074
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:01:46 +0100
2075
+ Served asset /application.css - 304 Not Modified (0ms)
2076
+
2077
+
2078
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:01:46 +0100
2079
+ Served asset /demos.css - 304 Not Modified (54ms)
2080
+
2081
+
2082
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:01:46 +0100
2083
+ Served asset /samples.css - 304 Not Modified (0ms)
2084
+
2085
+
2086
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:01:46 +0100
2087
+ Served asset /jquery.js - 304 Not Modified (5ms)
2088
+
2089
+
2090
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:01:46 +0100
2091
+ Served asset /demos.js - 304 Not Modified (0ms)
2092
+
2093
+
2094
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:01:46 +0100
2095
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
2096
+
2097
+
2098
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:01:46 +0100
2099
+ Served asset /samples.js - 304 Not Modified (10ms)
2100
+
2101
+
2102
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:01:46 +0100
2103
+ Served asset /application.js - 304 Not Modified (8ms)
2104
+
2105
+
2106
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-03 14:01:51 +0100
2107
+ Processing by DemosController#show as HTML
2108
+ Parameters: {"id"=>"ruby"}
2109
+ Rendered demos/_ruby.html.erb (88.6ms)
2110
+ Rendered demos/show.html.erb within layouts/application (89.9ms)
2111
+ Completed 500 Internal Server Error in 98ms
2112
+
2113
+ ActionView::Template::Error (Missing partial remote_partials/ruby with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
2114
+ * "/home/rob/web/remote_partial/test/dummy/app/views"
2115
+ * "/home/rob/web/remote_partial/app/views"
2116
+ ):
2117
+ 1: <h1>We love Ruby</h1>
2118
+ 2:
2119
+ 3: <%= render_remote_partial 'ruby' %>
2120
+ app/views/demos/_ruby.html.erb:3:in `_app_views_demos__ruby_html_erb___867840729_92092750'
2121
+ app/views/demos/show.html.erb:2:in `_app_views_demos_show_html_erb___910946994_80700130'
2122
+
2123
+
2124
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.8ms)
2125
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
2126
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (41.8ms)
2127
+ Connecting to database specified by database.yml
2128
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2129
+  (0.1ms) begin transaction
2130
+  (0.1ms) commit transaction
2131
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
2132
+ RemotePartial::Partial Load (7.5ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
2133
+ SQL (165.1ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 58
2134
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 2]]
2135
+  (0.1ms) begin transaction
2136
+ SQL (3.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:02:13 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 13:07:13 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:02:13 UTC +00:00]]
2137
+  (125.3ms) commit transaction
2138
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'sample_one_subset' LIMIT 1
2139
+  (0.4ms) begin transaction
2140
+  (0.1ms) commit transaction
2141
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
2142
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 2]]
2143
+ SQL (123.4ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 59
2144
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
2145
+  (0.1ms) begin transaction
2146
+ SQL (0.5ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:02:14 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 2\n name: sample_one_subset\n url: http://www.ruby-lang.org/en/\n criteria: ! '#logo'\n repeat_period: 10800\n created_at: '2013-07-03 12:57:31.231569'\n updated_at: '2013-07-03 13:01:20.598175'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 16:02:14 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:02:14 UTC +00:00]]
2147
+  (130.1ms) commit transaction
2148
+
2149
+
2150
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-03 14:02:18 +0100
2151
+ Processing by DemosController#show as HTML
2152
+ Parameters: {"id"=>"ruby"}
2153
+ Rendered demos/_ruby.html.erb (15.9ms)
2154
+ Rendered demos/show.html.erb within layouts/application (26.8ms)
2155
+ Completed 500 Internal Server Error in 179ms
2156
+
2157
+ ActionView::Template::Error (Missing partial remote_partials/ruby with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
2158
+ * "/home/rob/web/remote_partial/test/dummy/app/views"
2159
+ * "/home/rob/web/remote_partial/app/views"
2160
+ ):
2161
+ 1: <h1>We love Ruby</h1>
2162
+ 2:
2163
+ 3: <%= render_remote_partial 'ruby' %>
2164
+ app/views/demos/_ruby.html.erb:3:in `_app_views_demos__ruby_html_erb__534067065_83905630'
2165
+ app/views/demos/show.html.erb:2:in `_app_views_demos_show_html_erb__340071701__615892818'
2166
+
2167
+
2168
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
2169
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
2170
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.4ms)
2171
+ Connecting to database specified by database.yml
2172
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2173
+  (0.1ms) begin transaction
2174
+  (0.1ms) commit transaction
2175
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
2176
+ RemotePartial::Partial Load (4.6ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
2177
+ SQL (180.8ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 60
2178
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 2]]
2179
+  (8.3ms) begin transaction
2180
+ SQL (0.8ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:02:42 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 13:07:42 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:02:42 UTC +00:00]]
2181
+  (120.2ms) commit transaction
2182
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2183
+  (0.1ms) begin transaction
2184
+ SQL (0.7ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Jul 2013 13:02:42 UTC +00:00], ["criteria", "#logo"], ["name", "ruby"], ["repeat_period", 10800.0], ["updated_at", Wed, 03 Jul 2013 13:02:42 UTC +00:00], ["url", "http://www.ruby-lang.org/en/"]]
2185
+  (120.5ms) commit transaction
2186
+ Delayed::Backend::ActiveRecord::Job Load (0.5ms) SELECT "delayed_jobs".* FROM "delayed_jobs" 
2187
+ RemotePartial::Partial Load (2.9ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 2]]
2188
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
2189
+  (0.1ms) begin transaction
2190
+ SQL (5.7ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:02:42 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 3\n name: ruby\n url: http://www.ruby-lang.org/en/\n criteria: ! '#logo'\n repeat_period: 10800\n created_at: 2013-07-03 13:02:42.612055529 Z\n updated_at: 2013-07-03 13:02:42.612055529 Z\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 16:02:42 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:02:42 UTC +00:00]]
2191
+  (111.5ms) commit transaction
2192
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 13:02:43.191621' AND (locked_at IS NULL OR locked_at < '2013-07-03 09:02:43.191652') OR locked_by = 'host:robvm pid:8879') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
2193
+ SQL (0.2ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8879'
2194
+
2195
+
2196
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-03 14:02:47 +0100
2197
+ Processing by DemosController#show as HTML
2198
+ Parameters: {"id"=>"ruby"}
2199
+ Rendered remote_partials/_ruby.html.erb (0.5ms)
2200
+ Rendered demos/_ruby.html.erb (4.9ms)
2201
+ Rendered demos/show.html.erb within layouts/application (5.9ms)
2202
+ Completed 200 OK in 99ms (Views: 99.1ms | ActiveRecord: 0.0ms)
2203
+
2204
+
2205
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:02:47 +0100
2206
+ Served asset /application.css - 304 Not Modified (23ms)
2207
+
2208
+
2209
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:02:47 +0100
2210
+ Served asset /demos.css - 304 Not Modified (8ms)
2211
+
2212
+
2213
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:02:47 +0100
2214
+ Served asset /samples.css - 304 Not Modified (18ms)
2215
+
2216
+
2217
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:02:47 +0100
2218
+ Served asset /jquery.js - 304 Not Modified (37ms)
2219
+
2220
+
2221
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:02:47 +0100
2222
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2223
+
2224
+
2225
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:02:47 +0100
2226
+ Served asset /demos.js - 304 Not Modified (1ms)
2227
+
2228
+
2229
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:02:47 +0100
2230
+ Served asset /samples.js - 304 Not Modified (9ms)
2231
+
2232
+
2233
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:02:47 +0100
2234
+ Served asset /application.js - 304 Not Modified (23ms)
2235
+
2236
+
2237
+ Started GET "/images/logo.gif" for 127.0.0.1 at 2013-07-03 14:02:48 +0100
2238
+
2239
+ ActionController::RoutingError (No route matches [GET] "/images/logo.gif"):
2240
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2241
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2242
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
2243
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
2244
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
2245
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
2246
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2247
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2248
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2249
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2250
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2251
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
2252
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
2253
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
2254
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2255
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
2256
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2257
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2258
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2259
+ /home/rob/.rvm/rubies/ruby-1.9.3-p286/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2260
+
2261
+
2262
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p286@remote_partial/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2263
+ Connecting to database specified by database.yml
2264
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2265
+  (0.1ms) begin transaction
2266
+  (0.1ms) commit transaction
2267
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
2268
+ RemotePartial::Partial Load (7.7ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 2]]
2269
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
2270
+ SQL (211.9ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 62
2271
+ RemotePartial::Partial Load (0.9ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 3]]
2272
+  (0.1ms) begin transaction
2273
+ SQL (0.9ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:03:42 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 13:08:42 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:03:42 UTC +00:00]]
2274
+  (177.6ms) commit transaction
2275
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2276
+  (0.1ms) begin transaction
2277
+  (0.4ms) UPDATE "remote_partial_partials" SET "criteria" = '#intro', "updated_at" = '2013-07-03 13:03:43.082966' WHERE "remote_partial_partials"."id" = 3
2278
+  (176.8ms) commit transaction
2279
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
2280
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 2]]
2281
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 3]]
2282
+ SQL (151.7ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 63
2283
+ RemotePartial::Partial Load (0.5ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
2284
+  (0.1ms) begin transaction
2285
+ SQL (4.7ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:03:43 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 3\n name: ruby\n url: http://www.ruby-lang.org/en/\n criteria: ! '#intro'\n repeat_period: 10800\n created_at: '2013-07-03 13:02:42.612055'\n updated_at: 2013-07-03 13:03:43.082966399 Z\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 16:03:43 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:03:43 UTC +00:00]]
2286
+  (145.8ms) commit transaction
2287
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 13:03:43.947774' AND (locked_at IS NULL OR locked_at < '2013-07-03 09:03:43.947803') OR locked_by = 'host:robvm pid:8896') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
2288
+ SQL (3.8ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8896'
2289
+
2290
+
2291
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-03 14:03:58 +0100
2292
+ Processing by DemosController#show as HTML
2293
+ Parameters: {"id"=>"ruby"}
2294
+ Rendered remote_partials/_ruby.html.erb (0.7ms)
2295
+ Rendered demos/_ruby.html.erb (6.5ms)
2296
+ Rendered demos/show.html.erb within layouts/application (7.7ms)
2297
+ Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
2298
+
2299
+
2300
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:03:59 +0100
2301
+ Served asset /application.css - 304 Not Modified (0ms)
2302
+
2303
+
2304
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:03:59 +0100
2305
+ Served asset /demos.css - 304 Not Modified (0ms)
2306
+
2307
+
2308
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:03:59 +0100
2309
+ Served asset /samples.css - 304 Not Modified (0ms)
2310
+
2311
+
2312
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:03:59 +0100
2313
+ Served asset /jquery.js - 304 Not Modified (5ms)
2314
+
2315
+
2316
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:03:59 +0100
2317
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2318
+
2319
+
2320
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:03:59 +0100
2321
+ Served asset /demos.js - 304 Not Modified (0ms)
2322
+
2323
+
2324
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:03:59 +0100
2325
+ Served asset /samples.js - 304 Not Modified (0ms)
2326
+
2327
+
2328
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:03:59 +0100
2329
+ Served asset /application.js - 304 Not Modified (85ms)
2330
+ Connecting to database specified by database.yml
2331
+ RemotePartial::Partial Load (2.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2332
+  (0.1ms) begin transaction
2333
+  (0.1ms) commit transaction
2334
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
2335
+ RemotePartial::Partial Load (5.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 2]]
2336
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
2337
+ SQL (194.8ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 64
2338
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 3]]
2339
+  (0.1ms) begin transaction
2340
+ SQL (1.6ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:05:26 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 13:10:26 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:05:26 UTC +00:00]]
2341
+  (160.5ms) commit transaction
2342
+ RemotePartial::Partial Load (0.6ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2343
+  (3.4ms) begin transaction
2344
+  (1.8ms) UPDATE "remote_partial_partials" SET "criteria" = '#code', "updated_at" = '2013-07-03 13:05:27.153944' WHERE "remote_partial_partials"."id" = 3
2345
+  (171.1ms) commit transaction
2346
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
2347
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 2]]
2348
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 3]]
2349
+ SQL (158.7ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 65
2350
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
2351
+  (0.6ms) begin transaction
2352
+ SQL (5.7ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:05:27 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 3\n name: ruby\n url: http://www.ruby-lang.org/en/\n criteria: ! '#code'\n repeat_period: 10800\n created_at: '2013-07-03 13:02:42.612055'\n updated_at: 2013-07-03 13:05:27.153944301 Z\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 16:05:27 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:05:27 UTC +00:00]]
2353
+  (146.3ms) commit transaction
2354
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 13:05:28.036219' AND (locked_at IS NULL OR locked_at < '2013-07-03 09:05:28.036262') OR locked_by = 'host:robvm pid:8918') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
2355
+ SQL (0.2ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8918'
2356
+
2357
+
2358
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-03 14:05:38 +0100
2359
+ Processing by DemosController#show as HTML
2360
+ Parameters: {"id"=>"ruby"}
2361
+ Rendered remote_partials/_ruby.html.erb (6.7ms)
2362
+ Rendered demos/_ruby.html.erb (12.5ms)
2363
+ Rendered demos/show.html.erb within layouts/application (14.6ms)
2364
+ Completed 200 OK in 44ms (Views: 35.6ms | ActiveRecord: 0.0ms)
2365
+
2366
+
2367
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:05:39 +0100
2368
+ Served asset /application.css - 304 Not Modified (0ms)
2369
+
2370
+
2371
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:05:39 +0100
2372
+ Served asset /demos.css - 304 Not Modified (0ms)
2373
+
2374
+
2375
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:05:39 +0100
2376
+ Served asset /samples.css - 304 Not Modified (0ms)
2377
+
2378
+
2379
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:05:39 +0100
2380
+ Served asset /jquery.js - 304 Not Modified (6ms)
2381
+
2382
+
2383
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:05:39 +0100
2384
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2385
+
2386
+
2387
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:05:39 +0100
2388
+ Served asset /demos.js - 304 Not Modified (0ms)
2389
+
2390
+
2391
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:05:39 +0100
2392
+ Served asset /samples.js - 304 Not Modified (0ms)
2393
+
2394
+
2395
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:05:39 +0100
2396
+ Served asset /application.js - 304 Not Modified (5ms)
2397
+ Connecting to database specified by database.yml
2398
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2399
+  (0.1ms) begin transaction
2400
+  (0.1ms) commit transaction
2401
+ Delayed::Backend::ActiveRecord::Job Load (0.2ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
2402
+ RemotePartial::Partial Load (8.8ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 2]]
2403
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
2404
+ SQL (184.1ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 66
2405
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 3]]
2406
+  (0.1ms) begin transaction
2407
+ SQL (5.0ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:06:43 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 1\n name: clock\n url: http://www.timeanddate.com/worldclock/city.html?n=136\n criteria: ! '#ct'\n repeat_period: 300\n created_at: '2013-07-03 10:53:20.142980'\n updated_at: '2013-07-03 10:57:32.189252'\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 13:11:43 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:06:43 UTC +00:00]]
2408
+  (152.4ms) commit transaction
2409
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2410
+  (0.1ms) begin transaction
2411
+  (0.3ms) UPDATE "remote_partial_partials" SET "criteria" = '#intro', "updated_at" = '2013-07-03 13:06:43.572002' WHERE "remote_partial_partials"."id" = 3
2412
+  (169.1ms) commit transaction
2413
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs"
2414
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 2]]
2415
+ RemotePartial::Partial Load (0.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 3]]
2416
+ SQL (155.4ms) DELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 67
2417
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."id" = ? LIMIT 1 [["id", 1]]
2418
+  (0.1ms) begin transaction
2419
+ SQL (3.3ms) INSERT INTO "delayed_jobs" ("attempts", "created_at", "failed_at", "handler", "last_error", "locked_at", "locked_by", "priority", "queue", "run_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["attempts", 0], ["created_at", Wed, 03 Jul 2013 13:06:43 UTC +00:00], ["failed_at", nil], ["handler", "--- !ruby/ActiveRecord:RemotePartial::Partial\nattributes:\n id: 3\n name: ruby\n url: http://www.ruby-lang.org/en/\n criteria: ! '#intro'\n repeat_period: 10800\n created_at: '2013-07-03 13:02:42.612055'\n updated_at: 2013-07-03 13:06:43.572002973 Z\n"], ["last_error", nil], ["locked_at", nil], ["locked_by", nil], ["priority", 0], ["queue", nil], ["run_at", Wed, 03 Jul 2013 16:06:43 UTC +00:00], ["updated_at", Wed, 03 Jul 2013 13:06:43 UTC +00:00]]
2420
+  (152.3ms) commit transaction
2421
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 13:06:44.473838' AND (locked_at IS NULL OR locked_at < '2013-07-03 09:06:44.473868') OR locked_by = 'host:robvm pid:8929') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
2422
+ SQL (0.2ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8929'
2423
+
2424
+
2425
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-03 14:07:11 +0100
2426
+ Processing by DemosController#show as HTML
2427
+ Parameters: {"id"=>"ruby"}
2428
+ Rendered remote_partials/_ruby.html.erb (0.8ms)
2429
+ Rendered demos/_ruby.html.erb (1.6ms)
2430
+ Rendered demos/show.html.erb within layouts/application (2.6ms)
2431
+ Completed 200 OK in 36ms (Views: 35.7ms | ActiveRecord: 0.0ms)
2432
+
2433
+
2434
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:07:11 +0100
2435
+ Served asset /application.css - 304 Not Modified (0ms)
2436
+
2437
+
2438
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:07:11 +0100
2439
+ Served asset /demos.css - 304 Not Modified (34ms)
2440
+
2441
+
2442
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:07:11 +0100
2443
+ Served asset /samples.css - 304 Not Modified (0ms)
2444
+
2445
+
2446
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:07:11 +0100
2447
+ Served asset /jquery.js - 304 Not Modified (7ms)
2448
+
2449
+
2450
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:07:11 +0100
2451
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2452
+
2453
+
2454
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:07:11 +0100
2455
+ Served asset /demos.js - 304 Not Modified (0ms)
2456
+
2457
+
2458
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:07:11 +0100
2459
+ Served asset /samples.js - 304 Not Modified (0ms)
2460
+
2461
+
2462
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:07:11 +0100
2463
+ Served asset /application.js - 304 Not Modified (1ms)
2464
+
2465
+
2466
+ Started GET "/demos" for 127.0.0.1 at 2013-07-03 14:07:58 +0100
2467
+ Processing by DemosController#index as HTML
2468
+ Rendered demos/index.html.erb within layouts/application (7.6ms)
2469
+ Completed 200 OK in 28ms (Views: 28.0ms | ActiveRecord: 0.0ms)
2470
+
2471
+
2472
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:07:59 +0100
2473
+ Served asset /application.css - 304 Not Modified (1ms)
2474
+
2475
+
2476
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:07:59 +0100
2477
+ Served asset /demos.css - 304 Not Modified (0ms)
2478
+
2479
+
2480
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:07:59 +0100
2481
+ Served asset /samples.css - 304 Not Modified (0ms)
2482
+
2483
+
2484
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:07:59 +0100
2485
+ Served asset /jquery.js - 304 Not Modified (17ms)
2486
+
2487
+
2488
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:07:59 +0100
2489
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2490
+
2491
+
2492
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:07:59 +0100
2493
+ Served asset /demos.js - 304 Not Modified (5ms)
2494
+
2495
+
2496
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:07:59 +0100
2497
+ Served asset /samples.js - 304 Not Modified (0ms)
2498
+
2499
+
2500
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:07:59 +0100
2501
+ Served asset /application.js - 304 Not Modified (10ms)
2502
+
2503
+
2504
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 14:08:02 +0100
2505
+ Processing by DemosController#show as HTML
2506
+ Parameters: {"id"=>"clock"}
2507
+ Rendered remote_partials/_clock.html.erb (0.3ms)
2508
+ Rendered demos/_clock.html.erb (3.5ms)
2509
+ Rendered demos/show.html.erb within layouts/application (4.4ms)
2510
+ Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.0ms)
2511
+
2512
+
2513
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:08:03 +0100
2514
+ Served asset /application.css - 304 Not Modified (0ms)
2515
+
2516
+
2517
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:08:03 +0100
2518
+ Served asset /demos.css - 304 Not Modified (0ms)
2519
+
2520
+
2521
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:08:03 +0100
2522
+ Served asset /samples.css - 304 Not Modified (0ms)
2523
+
2524
+
2525
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:08:03 +0100
2526
+ Served asset /jquery.js - 304 Not Modified (13ms)
2527
+
2528
+
2529
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:08:03 +0100
2530
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2531
+
2532
+
2533
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:08:03 +0100
2534
+ Served asset /demos.js - 304 Not Modified (0ms)
2535
+
2536
+
2537
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:08:03 +0100
2538
+ Served asset /samples.js - 304 Not Modified (0ms)
2539
+
2540
+
2541
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:08:03 +0100
2542
+ Served asset /application.js - 304 Not Modified (13ms)
2543
+
2544
+
2545
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-03 14:08:09 +0100
2546
+ Processing by DemosController#show as HTML
2547
+ Parameters: {"id"=>"ruby"}
2548
+ Rendered remote_partials/_ruby.html.erb (0.1ms)
2549
+ Rendered demos/_ruby.html.erb (0.9ms)
2550
+ Rendered demos/show.html.erb within layouts/application (1.6ms)
2551
+ Completed 200 OK in 25ms (Views: 18.1ms | ActiveRecord: 0.0ms)
2552
+
2553
+
2554
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:08:09 +0100
2555
+ Served asset /application.css - 304 Not Modified (0ms)
2556
+
2557
+
2558
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:08:09 +0100
2559
+ Served asset /demos.css - 304 Not Modified (0ms)
2560
+
2561
+
2562
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:08:09 +0100
2563
+ Served asset /jquery.js - 304 Not Modified (24ms)
2564
+
2565
+
2566
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:08:09 +0100
2567
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2568
+
2569
+
2570
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:08:09 +0100
2571
+ Served asset /demos.js - 304 Not Modified (0ms)
2572
+
2573
+
2574
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:08:09 +0100
2575
+ Served asset /samples.css - 304 Not Modified (5ms)
2576
+
2577
+
2578
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:08:09 +0100
2579
+ Served asset /samples.js - 304 Not Modified (11ms)
2580
+
2581
+
2582
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:08:10 +0100
2583
+ Served asset /application.js - 304 Not Modified (5ms)
2584
+
2585
+
2586
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 14:10:30 +0100
2587
+ Processing by DemosController#show as HTML
2588
+ Parameters: {"id"=>"clock"}
2589
+ Rendered remote_partials/_clock.html.erb (0.0ms)
2590
+ Rendered demos/_clock.html.erb (1.4ms)
2591
+ Rendered demos/show.html.erb within layouts/application (2.3ms)
2592
+ Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
2593
+
2594
+
2595
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:10:30 +0100
2596
+ Served asset /application.css - 304 Not Modified (0ms)
2597
+
2598
+
2599
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:10:30 +0100
2600
+ Served asset /demos.css - 304 Not Modified (0ms)
2601
+
2602
+
2603
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:10:30 +0100
2604
+ Served asset /samples.css - 304 Not Modified (0ms)
2605
+
2606
+
2607
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:10:30 +0100
2608
+ Served asset /jquery.js - 304 Not Modified (1ms)
2609
+
2610
+
2611
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:10:30 +0100
2612
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2613
+
2614
+
2615
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:10:30 +0100
2616
+ Served asset /demos.js - 304 Not Modified (0ms)
2617
+
2618
+
2619
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:10:30 +0100
2620
+ Served asset /samples.js - 304 Not Modified (0ms)
2621
+
2622
+
2623
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:10:31 +0100
2624
+ Served asset /application.js - 304 Not Modified (6ms)
2625
+ Connecting to database specified by database.yml
2626
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2627
+  (0.1ms) begin transaction
2628
+  (0.1ms) commit transaction
2629
+ RemotePartial::Partial Load (0.9ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2630
+  (0.1ms) begin transaction
2631
+  (0.0ms) commit transaction
2632
+ Delayed::Backend::ActiveRecord::Job Load (0.3ms) SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE ((run_at <= '2013-07-03 13:10:44.449076' AND (locked_at IS NULL OR locked_at < '2013-07-03 09:10:44.449112') OR locked_by = 'host:robvm pid:8993') AND failed_at IS NULL) ORDER BY priority ASC, run_at ASC LIMIT 5
2633
+ SQL (3.5ms) UPDATE "delayed_jobs" SET "locked_by" = NULL, "locked_at" = NULL WHERE "delayed_jobs"."locked_by" = 'host:robvm pid:8993'
2634
+
2635
+
2636
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-03 14:10:47 +0100
2637
+ Processing by DemosController#show as HTML
2638
+ Parameters: {"id"=>"clock"}
2639
+ Rendered remote_partials/_clock.html.erb (0.5ms)
2640
+ Rendered demos/_clock.html.erb (1.2ms)
2641
+ Rendered demos/show.html.erb within layouts/application (1.9ms)
2642
+ Completed 200 OK in 26ms (Views: 25.2ms | ActiveRecord: 0.0ms)
2643
+
2644
+
2645
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-03 14:10:48 +0100
2646
+ Served asset /application.css - 304 Not Modified (0ms)
2647
+
2648
+
2649
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-03 14:10:48 +0100
2650
+ Served asset /demos.css - 304 Not Modified (0ms)
2651
+
2652
+
2653
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-03 14:10:48 +0100
2654
+ Served asset /samples.css - 304 Not Modified (0ms)
2655
+
2656
+
2657
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-03 14:10:48 +0100
2658
+ Served asset /jquery.js - 304 Not Modified (1ms)
2659
+
2660
+
2661
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-03 14:10:48 +0100
2662
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2663
+
2664
+
2665
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-03 14:10:48 +0100
2666
+ Served asset /demos.js - 304 Not Modified (0ms)
2667
+
2668
+
2669
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-03 14:10:48 +0100
2670
+ Served asset /samples.js - 304 Not Modified (0ms)
2671
+
2672
+
2673
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-03 14:10:48 +0100
2674
+ Served asset /application.js - 304 Not Modified (7ms)
2675
+ Connecting to database specified by database.yml
2676
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2677
+  (0.1ms) begin transaction
2678
+  (0.1ms) commit transaction
2679
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2680
+  (0.1ms) begin transaction
2681
+  (0.1ms) commit transaction
2682
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2683
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2684
+ Migrating to CreateDelayedJobs (20130703102760)
2685
+  (0.1ms) select sqlite_version(*)
2686
+  (0.0ms) begin transaction
2687
+  (1.3ms) DROP TABLE "delayed_jobs"
2688
+  (0.4ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130703102760'
2689
+  (185.2ms) commit transaction
2690
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2691
+ Connecting to database specified by database.yml
2692
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2693
+  (0.1ms) begin transaction
2694
+  (2.1ms) UPDATE "remote_partial_partials" SET "repeat_period" = 43200.0, "updated_at" = '2013-07-03 13:54:36.927639' WHERE "remote_partial_partials"."id" = 1
2695
+  (143.9ms) commit transaction
2696
+ Connecting to database specified by database.yml
2697
+ RemotePartial::Partial Load (0.9ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2698
+  (0.1ms) begin transaction
2699
+  (0.1ms) commit transaction
2700
+ Connecting to database specified by database.yml
2701
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2702
+  (0.1ms) begin transaction
2703
+  (0.1ms) commit transaction
2704
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2705
+  (0.1ms) begin transaction
2706
+  (2.2ms) UPDATE "remote_partial_partials" SET "repeat_period" = 43200.0, "updated_at" = '2013-07-03 14:15:27.505951' WHERE "remote_partial_partials"."id" = 3
2707
+  (226.1ms) commit transaction
2708
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2709
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2710
+ Migrating to CreateRemotePartialPartials (20130703102759)
2711
+  (0.1ms) select sqlite_version(*)
2712
+  (0.1ms) begin transaction
2713
+  (3.9ms) DROP TABLE "remote_partial_partials"
2714
+  (0.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130703102759'
2715
+  (219.3ms) commit transaction
2716
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2717
+ Connecting to database specified by database.yml
2718
+ Connecting to database specified by database.yml
2719
+ Connecting to database specified by database.yml
2720
+ Connecting to database specified by database.yml
2721
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2722
+ Migrating to CreateRemotePartialPartials (20130703141929)
2723
+  (0.1ms) select sqlite_version(*)
2724
+  (0.0ms) begin transaction
2725
+  (2.8ms) CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "url" text(2047) NOT NULL, "criteria" varchar(255), "repeat_period" float, "stale_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2726
+  (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130703141929')
2727
+  (175.5ms) commit transaction
2728
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2729
+ Connecting to database specified by database.yml
2730
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2731
+  (0.1ms) begin transaction
2732
+ SQL (9.8ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Jul 2013 14:21:28 UTC +00:00], ["criteria", "#ct"], ["name", "clock"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Wed, 03 Jul 2013 14:21:28 UTC +00:00], ["url", "http://www.timeanddate.com/worldclock/city.html?n=136"]]
2733
+  (168.8ms) commit transaction
2734
+ RemotePartial::Partial Load (1.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2735
+  (0.1ms) begin transaction
2736
+ SQL (5.0ms) INSERT INTO "remote_partial_partials" ("created_at", "criteria", "name", "repeat_period", "stale_at", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Wed, 03 Jul 2013 14:21:37 UTC +00:00], ["criteria", "#intro"], ["name", "ruby"], ["repeat_period", 43200.0], ["stale_at", nil], ["updated_at", Wed, 03 Jul 2013 14:21:37 UTC +00:00], ["url", "http://www.ruby-lang.org/en/"]]
2737
+  (202.9ms) commit transaction
2738
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2739
+  (0.2ms) select sqlite_version(*)
2740
+  (193.7ms) CREATE TABLE "remote_partial_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(100) NOT NULL, "url" text(2047) NOT NULL, "criteria" varchar(255), "repeat_period" float, "stale_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2741
+  (124.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2742
+  (124.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2743
+  (0.1ms) SELECT version FROM "schema_migrations"
2744
+  (157.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130703141929')
2745
+ Connecting to database specified by database.yml
2746
+ RemotePartial::Partial Load (0.8ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2747
+  (0.1ms) begin transaction
2748
+  (2.7ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 02:28:22.270842', "updated_at" = '2013-07-03 14:28:22.271572' WHERE "remote_partial_partials"."id" = 1
2749
+  (161.7ms) commit transaction
2750
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2751
+  (0.1ms) begin transaction
2752
+  (1.9ms) UPDATE "remote_partial_partials" SET "stale_at" = '2013-07-04 02:28:22.980404', "updated_at" = '2013-07-03 14:28:22.980887' WHERE "remote_partial_partials"."id" = 2
2753
+  (134.1ms) commit transaction
2754
+ Connecting to database specified by database.yml
2755
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2756
+  (1.0ms) begin transaction
2757
+  (0.1ms) commit transaction
2758
+ RemotePartial::Partial Load (0.2ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2759
+  (0.1ms) begin transaction
2760
+  (0.1ms) commit transaction
2761
+
2762
+
2763
+ Started GET "/demos" for 127.0.0.1 at 2013-07-04 15:05:40 +0100
2764
+ Processing by DemosController#index as HTML
2765
+ Rendered demos/index.html.erb within layouts/application (38.6ms)
2766
+ Completed 200 OK in 192ms (Views: 191.8ms | ActiveRecord: 0.0ms)
2767
+
2768
+
2769
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:05:41 +0100
2770
+ Served asset /application.css - 304 Not Modified (14ms)
2771
+
2772
+
2773
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:05:41 +0100
2774
+ Served asset /demos.css - 304 Not Modified (21ms)
2775
+
2776
+
2777
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:05:41 +0100
2778
+ Served asset /samples.css - 304 Not Modified (10ms)
2779
+
2780
+
2781
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:05:41 +0100
2782
+ Served asset /jquery.js - 304 Not Modified (38ms)
2783
+
2784
+
2785
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:05:41 +0100
2786
+ Served asset /jquery_ujs.js - 304 Not Modified (20ms)
2787
+
2788
+
2789
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:05:41 +0100
2790
+ Served asset /demos.js - 304 Not Modified (1ms)
2791
+
2792
+
2793
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:05:41 +0100
2794
+ Served asset /samples.js - 304 Not Modified (21ms)
2795
+
2796
+
2797
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:05:42 +0100
2798
+ Served asset /application.js - 304 Not Modified (34ms)
2799
+
2800
+
2801
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-04 15:06:06 +0100
2802
+ Processing by DemosController#show as HTML
2803
+ Parameters: {"id"=>"clock"}
2804
+ Rendered remote_partials/_clock.html.erb (0.4ms)
2805
+ Rendered demos/_clock.html.erb (3.7ms)
2806
+ Rendered demos/show.html.erb within layouts/application (21.4ms)
2807
+ Completed 200 OK in 78ms (Views: 77.2ms | ActiveRecord: 0.0ms)
2808
+
2809
+
2810
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:06:06 +0100
2811
+ Served asset /application.css - 304 Not Modified (1ms)
2812
+
2813
+
2814
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:06:06 +0100
2815
+ Served asset /demos.css - 304 Not Modified (0ms)
2816
+
2817
+
2818
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:07 +0100
2819
+ Served asset /jquery.js - 304 Not Modified (35ms)
2820
+
2821
+
2822
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:06:07 +0100
2823
+ Served asset /samples.css - 304 Not Modified (0ms)
2824
+
2825
+
2826
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:07 +0100
2827
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
2828
+
2829
+
2830
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:07 +0100
2831
+ Served asset /demos.js - 304 Not Modified (22ms)
2832
+
2833
+
2834
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:07 +0100
2835
+ Served asset /samples.js - 304 Not Modified (0ms)
2836
+
2837
+
2838
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:07 +0100
2839
+ Served asset /application.js - 304 Not Modified (9ms)
2840
+
2841
+
2842
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-04 15:06:12 +0100
2843
+ Processing by DemosController#show as HTML
2844
+ Parameters: {"id"=>"ruby"}
2845
+ Rendered remote_partials/_ruby.html.erb (0.4ms)
2846
+ Rendered demos/_ruby.html.erb (5.6ms)
2847
+ Rendered demos/show.html.erb within layouts/application (10.3ms)
2848
+ Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.0ms)
2849
+
2850
+
2851
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:06:12 +0100
2852
+ Served asset /application.css - 304 Not Modified (0ms)
2853
+
2854
+
2855
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:06:13 +0100
2856
+ Served asset /demos.css - 304 Not Modified (0ms)
2857
+
2858
+
2859
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:06:13 +0100
2860
+ Served asset /samples.css - 304 Not Modified (0ms)
2861
+
2862
+
2863
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:13 +0100
2864
+ Served asset /jquery.js - 304 Not Modified (9ms)
2865
+
2866
+
2867
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:13 +0100
2868
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2869
+
2870
+
2871
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:13 +0100
2872
+ Served asset /demos.js - 304 Not Modified (9ms)
2873
+
2874
+
2875
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:13 +0100
2876
+ Served asset /samples.js - 304 Not Modified (0ms)
2877
+
2878
+
2879
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:13 +0100
2880
+ Served asset /application.js - 304 Not Modified (10ms)
2881
+
2882
+
2883
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-04 15:06:17 +0100
2884
+ Processing by DemosController#show as HTML
2885
+ Parameters: {"id"=>"fixed"}
2886
+ Rendered remote_partials/_fixed.html.erb (0.4ms)
2887
+ Rendered demos/_fixed.html.erb (8.3ms)
2888
+ Rendered demos/show.html.erb within layouts/application (9.1ms)
2889
+ Completed 200 OK in 32ms (Views: 24.4ms | ActiveRecord: 0.0ms)
2890
+
2891
+
2892
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:06:18 +0100
2893
+ Served asset /application.css - 304 Not Modified (0ms)
2894
+
2895
+
2896
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:06:18 +0100
2897
+ Served asset /demos.css - 304 Not Modified (2ms)
2898
+
2899
+
2900
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:06:18 +0100
2901
+ Served asset /samples.css - 304 Not Modified (0ms)
2902
+
2903
+
2904
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:18 +0100
2905
+ Served asset /demos.js - 304 Not Modified (0ms)
2906
+
2907
+
2908
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:18 +0100
2909
+ Served asset /jquery_ujs.js - 304 Not Modified (9ms)
2910
+
2911
+
2912
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:18 +0100
2913
+ Served asset /jquery.js - 304 Not Modified (13ms)
2914
+
2915
+
2916
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:18 +0100
2917
+ Served asset /samples.js - 304 Not Modified (4ms)
2918
+
2919
+
2920
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:06:18 +0100
2921
+ Served asset /application.js - 304 Not Modified (6ms)
2922
+ Connecting to database specified by database.yml
2923
+ RemotePartial::Partial Load (0.7ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2924
+  (0.1ms) begin transaction
2925
+  (0.1ms) commit transaction
2926
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2927
+  (0.1ms) begin transaction
2928
+  (0.4ms) commit transaction
2929
+ Connecting to database specified by database.yml
2930
+ RemotePartial::Partial Load (1.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2931
+  (0.1ms) begin transaction
2932
+  (0.1ms) commit transaction
2933
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2934
+  (0.1ms) begin transaction
2935
+  (0.0ms) commit transaction
2936
+ Connecting to database specified by database.yml
2937
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2938
+  (0.1ms) begin transaction
2939
+  (0.1ms) commit transaction
2940
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2941
+  (0.1ms) begin transaction
2942
+  (0.1ms) commit transaction
2943
+ Connecting to database specified by database.yml
2944
+ RemotePartial::Partial Load (6.1ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
2945
+  (0.1ms) begin transaction
2946
+  (0.1ms) commit transaction
2947
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
2948
+  (0.1ms) begin transaction
2949
+  (0.6ms) commit transaction
2950
+
2951
+
2952
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:14:03 +0100
2953
+ Processing by DemosController#index as HTML
2954
+ Rendered demos/index.html.erb within layouts/application (43.0ms)
2955
+ Completed 200 OK in 103ms (Views: 102.8ms | ActiveRecord: 0.0ms)
2956
+
2957
+
2958
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:14:04 +0100
2959
+ Served asset /application.css - 304 Not Modified (9ms)
2960
+
2961
+
2962
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:14:04 +0100
2963
+ Served asset /demos.css - 304 Not Modified (2ms)
2964
+
2965
+
2966
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:14:04 +0100
2967
+ Served asset /samples.css - 304 Not Modified (6ms)
2968
+
2969
+
2970
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:14:04 +0100
2971
+ Served asset /jquery.js - 304 Not Modified (28ms)
2972
+
2973
+
2974
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:14:04 +0100
2975
+ Served asset /jquery_ujs.js - 304 Not Modified (32ms)
2976
+
2977
+
2978
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:14:04 +0100
2979
+ Served asset /demos.js - 304 Not Modified (11ms)
2980
+
2981
+
2982
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:14:04 +0100
2983
+ Served asset /samples.js - 304 Not Modified (7ms)
2984
+
2985
+
2986
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:14:04 +0100
2987
+ Served asset /application.js - 304 Not Modified (55ms)
2988
+
2989
+
2990
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-04 15:14:08 +0100
2991
+ Processing by DemosController#show as HTML
2992
+ Parameters: {"id"=>"fixed"}
2993
+ Rendered remote_partials/_fixed.html.erb (0.5ms)
2994
+ Rendered demos/_fixed.html.erb (2.9ms)
2995
+ Rendered demos/show.html.erb within layouts/application (41.6ms)
2996
+ Completed 200 OK in 104ms (Views: 103.5ms | ActiveRecord: 0.0ms)
2997
+
2998
+
2999
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:14:08 +0100
3000
+ Served asset /application.css - 304 Not Modified (0ms)
3001
+
3002
+
3003
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:14:08 +0100
3004
+ Served asset /demos.css - 304 Not Modified (23ms)
3005
+
3006
+
3007
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:14:08 +0100
3008
+ Served asset /samples.css - 304 Not Modified (0ms)
3009
+
3010
+
3011
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:14:08 +0100
3012
+ Served asset /jquery.js - 304 Not Modified (11ms)
3013
+
3014
+
3015
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:14:08 +0100
3016
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
3017
+
3018
+
3019
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:14:08 +0100
3020
+ Served asset /demos.js - 304 Not Modified (0ms)
3021
+
3022
+
3023
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:14:08 +0100
3024
+ Served asset /samples.js - 304 Not Modified (0ms)
3025
+
3026
+
3027
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:14:08 +0100
3028
+ Served asset /application.js - 304 Not Modified (2ms)
3029
+
3030
+
3031
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-04 15:15:10 +0100
3032
+ Processing by DemosController#show as HTML
3033
+ Parameters: {"id"=>"fixed"}
3034
+ Rendered remote_partials/_fixed.html.erb (0.0ms)
3035
+ Rendered demos/_fixed.html.erb (10.4ms)
3036
+ Rendered demos/show.html.erb within layouts/application (17.9ms)
3037
+ Completed 200 OK in 38ms (Views: 37.7ms | ActiveRecord: 0.0ms)
3038
+
3039
+
3040
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:10 +0100
3041
+ Served asset /application.css - 304 Not Modified (0ms)
3042
+
3043
+
3044
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:10 +0100
3045
+ Served asset /demos.css - 304 Not Modified (5ms)
3046
+
3047
+
3048
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:11 +0100
3049
+ Served asset /samples.css - 304 Not Modified (0ms)
3050
+
3051
+
3052
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:11 +0100
3053
+ Served asset /jquery.js - 304 Not Modified (1ms)
3054
+
3055
+
3056
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:11 +0100
3057
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3058
+
3059
+
3060
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:11 +0100
3061
+ Served asset /demos.js - 304 Not Modified (0ms)
3062
+
3063
+
3064
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:11 +0100
3065
+ Served asset /samples.js - 304 Not Modified (0ms)
3066
+
3067
+
3068
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:11 +0100
3069
+ Served asset /application.js - 304 Not Modified (2ms)
3070
+
3071
+
3072
+ Started GET "/demos" for 127.0.0.1 at 2013-07-04 15:15:16 +0100
3073
+ Processing by DemosController#index as HTML
3074
+ Rendered demos/index.html.erb within layouts/application (0.8ms)
3075
+ Completed 200 OK in 24ms (Views: 24.0ms | ActiveRecord: 0.0ms)
3076
+
3077
+
3078
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:16 +0100
3079
+ Served asset /application.css - 304 Not Modified (0ms)
3080
+
3081
+
3082
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:16 +0100
3083
+ Served asset /demos.css - 304 Not Modified (18ms)
3084
+
3085
+
3086
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:16 +0100
3087
+ Served asset /samples.css - 304 Not Modified (0ms)
3088
+
3089
+
3090
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:16 +0100
3091
+ Served asset /jquery.js - 304 Not Modified (3ms)
3092
+
3093
+
3094
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:16 +0100
3095
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3096
+
3097
+
3098
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:16 +0100
3099
+ Served asset /demos.js - 304 Not Modified (0ms)
3100
+
3101
+
3102
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:16 +0100
3103
+ Served asset /samples.js - 304 Not Modified (0ms)
3104
+
3105
+
3106
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:16 +0100
3107
+ Served asset /application.js - 304 Not Modified (1ms)
3108
+
3109
+
3110
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:15:21 +0100
3111
+ Processing by DemosController#index as HTML
3112
+ Rendered demos/index.html.erb within layouts/application (1.1ms)
3113
+ Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms)
3114
+
3115
+
3116
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:22 +0100
3117
+ Served asset /application.css - 304 Not Modified (0ms)
3118
+
3119
+
3120
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:22 +0100
3121
+ Served asset /demos.css - 304 Not Modified (0ms)
3122
+
3123
+
3124
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:22 +0100
3125
+ Served asset /samples.css - 304 Not Modified (0ms)
3126
+
3127
+
3128
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:22 +0100
3129
+ Served asset /jquery.js - 304 Not Modified (9ms)
3130
+
3131
+
3132
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:22 +0100
3133
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
3134
+
3135
+
3136
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:22 +0100
3137
+ Served asset /demos.js - 304 Not Modified (0ms)
3138
+
3139
+
3140
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:22 +0100
3141
+ Served asset /samples.js - 304 Not Modified (0ms)
3142
+
3143
+
3144
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:22 +0100
3145
+ Served asset /application.js - 304 Not Modified (2ms)
3146
+
3147
+
3148
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-04 15:15:33 +0100
3149
+ Processing by DemosController#show as HTML
3150
+ Parameters: {"id"=>"fixed"}
3151
+ Rendered remote_partials/_fixed.html.erb (0.0ms)
3152
+ Rendered demos/_fixed.html.erb (3.3ms)
3153
+ Rendered demos/show.html.erb within layouts/application (17.1ms)
3154
+ Completed 200 OK in 35ms (Views: 35.1ms | ActiveRecord: 0.0ms)
3155
+
3156
+
3157
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:33 +0100
3158
+ Served asset /application.css - 304 Not Modified (0ms)
3159
+
3160
+
3161
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:33 +0100
3162
+ Served asset /demos.css - 304 Not Modified (0ms)
3163
+
3164
+
3165
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:34 +0100
3166
+ Served asset /samples.css - 304 Not Modified (0ms)
3167
+
3168
+
3169
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:34 +0100
3170
+ Served asset /jquery.js - 304 Not Modified (1ms)
3171
+
3172
+
3173
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:34 +0100
3174
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3175
+
3176
+
3177
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:34 +0100
3178
+ Served asset /demos.js - 304 Not Modified (0ms)
3179
+
3180
+
3181
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:34 +0100
3182
+ Served asset /samples.js - 304 Not Modified (26ms)
3183
+
3184
+
3185
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:34 +0100
3186
+ Served asset /application.js - 304 Not Modified (93ms)
3187
+
3188
+
3189
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:15:36 +0100
3190
+ Processing by DemosController#index as HTML
3191
+ Rendered demos/index.html.erb within layouts/application (1.0ms)
3192
+ Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.0ms)
3193
+
3194
+
3195
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:36 +0100
3196
+ Served asset /application.css - 304 Not Modified (0ms)
3197
+
3198
+
3199
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:36 +0100
3200
+ Served asset /demos.css - 304 Not Modified (7ms)
3201
+
3202
+
3203
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:36 +0100
3204
+ Served asset /samples.css - 304 Not Modified (6ms)
3205
+
3206
+
3207
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:36 +0100
3208
+ Served asset /jquery.js - 304 Not Modified (44ms)
3209
+
3210
+
3211
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:36 +0100
3212
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
3213
+
3214
+
3215
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:36 +0100
3216
+ Served asset /demos.js - 304 Not Modified (0ms)
3217
+
3218
+
3219
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:36 +0100
3220
+ Served asset /samples.js - 304 Not Modified (0ms)
3221
+
3222
+
3223
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:36 +0100
3224
+ Served asset /application.js - 304 Not Modified (7ms)
3225
+
3226
+
3227
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-04 15:15:47 +0100
3228
+ Processing by DemosController#show as HTML
3229
+ Parameters: {"id"=>"ruby"}
3230
+ Rendered remote_partials/_ruby.html.erb (0.4ms)
3231
+ Rendered demos/_ruby.html.erb (8.6ms)
3232
+ Rendered demos/show.html.erb within layouts/application (10.5ms)
3233
+ Completed 200 OK in 33ms (Views: 32.5ms | ActiveRecord: 0.0ms)
3234
+
3235
+
3236
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:47 +0100
3237
+ Served asset /application.css - 304 Not Modified (0ms)
3238
+
3239
+
3240
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:47 +0100
3241
+ Served asset /demos.css - 304 Not Modified (0ms)
3242
+
3243
+
3244
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:47 +0100
3245
+ Served asset /samples.css - 304 Not Modified (0ms)
3246
+
3247
+
3248
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:48 +0100
3249
+ Served asset /jquery.js - 304 Not Modified (9ms)
3250
+
3251
+
3252
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:48 +0100
3253
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3254
+
3255
+
3256
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:48 +0100
3257
+ Served asset /demos.js - 304 Not Modified (7ms)
3258
+
3259
+
3260
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:48 +0100
3261
+ Served asset /samples.js - 304 Not Modified (5ms)
3262
+
3263
+
3264
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:48 +0100
3265
+ Served asset /application.js - 304 Not Modified (12ms)
3266
+
3267
+
3268
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:15:53 +0100
3269
+ Processing by DemosController#index as HTML
3270
+ Rendered demos/index.html.erb within layouts/application (0.6ms)
3271
+ Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.0ms)
3272
+
3273
+
3274
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:53 +0100
3275
+ Served asset /application.css - 304 Not Modified (5ms)
3276
+
3277
+
3278
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:54 +0100
3279
+ Served asset /demos.css - 304 Not Modified (4ms)
3280
+
3281
+
3282
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:15:54 +0100
3283
+ Served asset /samples.css - 304 Not Modified (0ms)
3284
+
3285
+
3286
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:54 +0100
3287
+ Served asset /jquery.js - 304 Not Modified (1ms)
3288
+
3289
+
3290
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:54 +0100
3291
+ Served asset /jquery_ujs.js - 304 Not Modified (6ms)
3292
+
3293
+
3294
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:54 +0100
3295
+ Served asset /demos.js - 304 Not Modified (0ms)
3296
+
3297
+
3298
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:54 +0100
3299
+ Served asset /samples.js - 304 Not Modified (0ms)
3300
+
3301
+
3302
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:15:54 +0100
3303
+ Served asset /application.js - 304 Not Modified (15ms)
3304
+
3305
+
3306
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-04 15:16:24 +0100
3307
+ Processing by DemosController#show as HTML
3308
+ Parameters: {"id"=>"fixed"}
3309
+ Rendered remote_partials/_fixed.html.erb (0.0ms)
3310
+ Rendered demos/_fixed.html.erb (7.0ms)
3311
+ Rendered demos/show.html.erb within layouts/application (14.0ms)
3312
+ Completed 200 OK in 33ms (Views: 33.1ms | ActiveRecord: 0.0ms)
3313
+
3314
+
3315
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:25 +0100
3316
+ Served asset /application.css - 304 Not Modified (0ms)
3317
+
3318
+
3319
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:25 +0100
3320
+ Served asset /demos.css - 304 Not Modified (31ms)
3321
+
3322
+
3323
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:25 +0100
3324
+ Served asset /samples.css - 304 Not Modified (0ms)
3325
+
3326
+
3327
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:25 +0100
3328
+ Served asset /jquery.js - 304 Not Modified (1ms)
3329
+
3330
+
3331
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:25 +0100
3332
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3333
+
3334
+
3335
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:25 +0100
3336
+ Served asset /demos.js - 304 Not Modified (0ms)
3337
+
3338
+
3339
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:25 +0100
3340
+ Served asset /samples.js - 304 Not Modified (0ms)
3341
+
3342
+
3343
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:25 +0100
3344
+ Served asset /application.js - 304 Not Modified (1ms)
3345
+
3346
+
3347
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:16:28 +0100
3348
+ Processing by DemosController#index as HTML
3349
+ Rendered demos/index.html.erb within layouts/application (0.8ms)
3350
+ Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.0ms)
3351
+
3352
+
3353
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:28 +0100
3354
+ Served asset /application.css - 304 Not Modified (4ms)
3355
+
3356
+
3357
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:28 +0100
3358
+ Served asset /demos.css - 304 Not Modified (45ms)
3359
+
3360
+
3361
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:29 +0100
3362
+ Served asset /samples.css - 304 Not Modified (5ms)
3363
+
3364
+
3365
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:29 +0100
3366
+ Served asset /jquery.js - 304 Not Modified (9ms)
3367
+
3368
+
3369
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:29 +0100
3370
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3371
+
3372
+
3373
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:29 +0100
3374
+ Served asset /demos.js - 304 Not Modified (0ms)
3375
+
3376
+
3377
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:29 +0100
3378
+ Served asset /samples.js - 304 Not Modified (91ms)
3379
+
3380
+
3381
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:29 +0100
3382
+ Served asset /application.js - 304 Not Modified (2ms)
3383
+
3384
+
3385
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-04 15:16:31 +0100
3386
+ Processing by DemosController#show as HTML
3387
+ Parameters: {"id"=>"ruby"}
3388
+ Rendered remote_partials/_ruby.html.erb (0.0ms)
3389
+ Rendered demos/_ruby.html.erb (3.8ms)
3390
+ Rendered demos/show.html.erb within layouts/application (8.0ms)
3391
+ Completed 200 OK in 22ms (Views: 22.1ms | ActiveRecord: 0.0ms)
3392
+
3393
+
3394
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:31 +0100
3395
+ Served asset /application.css - 304 Not Modified (0ms)
3396
+
3397
+
3398
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:31 +0100
3399
+ Served asset /demos.css - 304 Not Modified (0ms)
3400
+
3401
+
3402
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:31 +0100
3403
+ Served asset /samples.css - 304 Not Modified (0ms)
3404
+
3405
+
3406
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:31 +0100
3407
+ Served asset /jquery.js - 304 Not Modified (1ms)
3408
+
3409
+
3410
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:31 +0100
3411
+ Served asset /demos.js - 304 Not Modified (0ms)
3412
+
3413
+
3414
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:31 +0100
3415
+ Served asset /samples.js - 304 Not Modified (0ms)
3416
+
3417
+
3418
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:31 +0100
3419
+ Served asset /jquery_ujs.js - 304 Not Modified (11ms)
3420
+
3421
+
3422
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:31 +0100
3423
+ Served asset /application.js - 304 Not Modified (11ms)
3424
+
3425
+
3426
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:16:33 +0100
3427
+ Processing by DemosController#index as HTML
3428
+ Rendered demos/index.html.erb within layouts/application (0.8ms)
3429
+ Completed 200 OK in 30ms (Views: 29.7ms | ActiveRecord: 0.0ms)
3430
+
3431
+
3432
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:33 +0100
3433
+ Served asset /application.css - 304 Not Modified (0ms)
3434
+
3435
+
3436
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:33 +0100
3437
+ Served asset /demos.css - 304 Not Modified (0ms)
3438
+
3439
+
3440
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:33 +0100
3441
+ Served asset /samples.css - 304 Not Modified (0ms)
3442
+
3443
+
3444
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:33 +0100
3445
+ Served asset /jquery.js - 304 Not Modified (1ms)
3446
+
3447
+
3448
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:33 +0100
3449
+ Served asset /jquery_ujs.js - 304 Not Modified (23ms)
3450
+
3451
+
3452
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:33 +0100
3453
+ Served asset /demos.js - 304 Not Modified (0ms)
3454
+
3455
+
3456
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:33 +0100
3457
+ Served asset /samples.js - 304 Not Modified (0ms)
3458
+
3459
+
3460
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:33 +0100
3461
+ Served asset /application.js - 304 Not Modified (1ms)
3462
+
3463
+
3464
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-04 15:16:45 +0100
3465
+ Processing by DemosController#show as HTML
3466
+ Parameters: {"id"=>"clock"}
3467
+ Rendered remote_partials/_clock.html.erb (0.4ms)
3468
+ Rendered demos/_clock.html.erb (5.6ms)
3469
+ Rendered demos/show.html.erb within layouts/application (6.5ms)
3470
+ Completed 200 OK in 38ms (Views: 37.5ms | ActiveRecord: 0.0ms)
3471
+
3472
+
3473
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:45 +0100
3474
+ Served asset /application.css - 304 Not Modified (0ms)
3475
+
3476
+
3477
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:45 +0100
3478
+ Served asset /demos.css - 304 Not Modified (0ms)
3479
+
3480
+
3481
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:46 +0100
3482
+ Served asset /samples.css - 304 Not Modified (48ms)
3483
+
3484
+
3485
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:46 +0100
3486
+ Served asset /jquery.js - 304 Not Modified (2ms)
3487
+
3488
+
3489
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:46 +0100
3490
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3491
+
3492
+
3493
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:46 +0100
3494
+ Served asset /demos.js - 304 Not Modified (0ms)
3495
+
3496
+
3497
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:46 +0100
3498
+ Served asset /samples.js - 304 Not Modified (0ms)
3499
+
3500
+
3501
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:46 +0100
3502
+ Served asset /application.js - 304 Not Modified (1ms)
3503
+
3504
+
3505
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:16:51 +0100
3506
+ Processing by DemosController#index as HTML
3507
+ Rendered demos/index.html.erb within layouts/application (6.1ms)
3508
+ Completed 200 OK in 35ms (Views: 23.3ms | ActiveRecord: 0.0ms)
3509
+
3510
+
3511
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:51 +0100
3512
+ Served asset /application.css - 304 Not Modified (5ms)
3513
+
3514
+
3515
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:51 +0100
3516
+ Served asset /demos.css - 304 Not Modified (5ms)
3517
+
3518
+
3519
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:51 +0100
3520
+ Served asset /samples.js - 304 Not Modified (15ms)
3521
+
3522
+
3523
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:51 +0100
3524
+ Served asset /demos.js - 304 Not Modified (0ms)
3525
+
3526
+
3527
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:51 +0100
3528
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3529
+
3530
+
3531
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:51 +0100
3532
+ Served asset /jquery.js - 304 Not Modified (3ms)
3533
+
3534
+
3535
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:51 +0100
3536
+ Served asset /samples.css - 304 Not Modified (0ms)
3537
+
3538
+
3539
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:51 +0100
3540
+ Served asset /application.js - 304 Not Modified (2ms)
3541
+
3542
+
3543
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-04 15:16:53 +0100
3544
+ Processing by DemosController#show as HTML
3545
+ Parameters: {"id"=>"fixed"}
3546
+ Rendered remote_partials/_fixed.html.erb (0.0ms)
3547
+ Rendered demos/_fixed.html.erb (1.0ms)
3548
+ Rendered demos/show.html.erb within layouts/application (8.3ms)
3549
+ Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.0ms)
3550
+
3551
+
3552
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:53 +0100
3553
+ Served asset /application.css - 304 Not Modified (72ms)
3554
+
3555
+
3556
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:53 +0100
3557
+ Served asset /demos.css - 304 Not Modified (54ms)
3558
+
3559
+
3560
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:16:53 +0100
3561
+ Served asset /samples.css - 304 Not Modified (0ms)
3562
+
3563
+
3564
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:53 +0100
3565
+ Served asset /jquery.js - 304 Not Modified (1ms)
3566
+
3567
+
3568
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:53 +0100
3569
+ Served asset /demos.js - 304 Not Modified (0ms)
3570
+
3571
+
3572
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:53 +0100
3573
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3574
+
3575
+
3576
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:53 +0100
3577
+ Served asset /samples.js - 304 Not Modified (6ms)
3578
+
3579
+
3580
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:16:53 +0100
3581
+ Served asset /application.js - 304 Not Modified (1ms)
3582
+
3583
+
3584
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:17:00 +0100
3585
+ Processing by DemosController#index as HTML
3586
+ Rendered demos/index.html.erb within layouts/application (7.5ms)
3587
+ Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
3588
+
3589
+
3590
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:17:01 +0100
3591
+ Served asset /application.css - 304 Not Modified (5ms)
3592
+
3593
+
3594
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:17:01 +0100
3595
+ Served asset /demos.css - 304 Not Modified (51ms)
3596
+
3597
+
3598
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:17:01 +0100
3599
+ Served asset /samples.css - 304 Not Modified (0ms)
3600
+
3601
+
3602
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:17:01 +0100
3603
+ Served asset /jquery.js - 304 Not Modified (6ms)
3604
+
3605
+
3606
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:17:01 +0100
3607
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3608
+
3609
+
3610
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:17:01 +0100
3611
+ Served asset /demos.js - 304 Not Modified (0ms)
3612
+
3613
+
3614
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:17:01 +0100
3615
+ Served asset /samples.js - 304 Not Modified (0ms)
3616
+
3617
+
3618
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:17:01 +0100
3619
+ Served asset /application.js - 304 Not Modified (2ms)
3620
+
3621
+
3622
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-04 15:17:03 +0100
3623
+ Processing by DemosController#show as HTML
3624
+ Parameters: {"id"=>"ruby"}
3625
+ Rendered remote_partials/_ruby.html.erb (0.0ms)
3626
+ Rendered demos/_ruby.html.erb (5.5ms)
3627
+ Rendered demos/show.html.erb within layouts/application (6.5ms)
3628
+ Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms)
3629
+
3630
+
3631
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:17:03 +0100
3632
+ Served asset /application.css - 304 Not Modified (0ms)
3633
+
3634
+
3635
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:17:03 +0100
3636
+ Served asset /demos.css - 304 Not Modified (0ms)
3637
+
3638
+
3639
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:17:03 +0100
3640
+ Served asset /samples.css - 304 Not Modified (0ms)
3641
+
3642
+
3643
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:17:03 +0100
3644
+ Served asset /jquery.js - 304 Not Modified (39ms)
3645
+
3646
+
3647
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:17:03 +0100
3648
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3649
+
3650
+
3651
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:17:03 +0100
3652
+ Served asset /demos.js - 304 Not Modified (0ms)
3653
+
3654
+
3655
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:17:03 +0100
3656
+ Served asset /samples.js - 304 Not Modified (0ms)
3657
+
3658
+
3659
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:17:03 +0100
3660
+ Served asset /application.js - 304 Not Modified (1ms)
3661
+
3662
+
3663
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:18:34 +0100
3664
+ Processing by DemosController#index as HTML
3665
+ Rendered demos/index.html.erb within layouts/application (1.1ms)
3666
+ Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.0ms)
3667
+
3668
+
3669
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:34 +0100
3670
+ Served asset /application.css - 304 Not Modified (0ms)
3671
+
3672
+
3673
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:34 +0100
3674
+ Served asset /demos.css - 304 Not Modified (0ms)
3675
+
3676
+
3677
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:34 +0100
3678
+ Served asset /samples.css - 304 Not Modified (5ms)
3679
+
3680
+
3681
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:34 +0100
3682
+ Served asset /jquery.js - 304 Not Modified (1ms)
3683
+
3684
+
3685
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:34 +0100
3686
+ Served asset /demos.js - 304 Not Modified (3ms)
3687
+
3688
+
3689
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:34 +0100
3690
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3691
+
3692
+
3693
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:34 +0100
3694
+ Served asset /samples.js - 304 Not Modified (0ms)
3695
+
3696
+
3697
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:34 +0100
3698
+ Served asset /application.js - 304 Not Modified (6ms)
3699
+
3700
+
3701
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-04 15:18:36 +0100
3702
+ Processing by DemosController#show as HTML
3703
+ Parameters: {"id"=>"fixed"}
3704
+ Rendered remote_partials/_fixed.html.erb (0.0ms)
3705
+ Rendered demos/_fixed.html.erb (3.0ms)
3706
+ Rendered demos/show.html.erb within layouts/application (4.2ms)
3707
+ Completed 200 OK in 30ms (Views: 30.2ms | ActiveRecord: 0.0ms)
3708
+
3709
+
3710
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:36 +0100
3711
+ Served asset /application.css - 304 Not Modified (0ms)
3712
+
3713
+
3714
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:36 +0100
3715
+ Served asset /demos.css - 304 Not Modified (0ms)
3716
+
3717
+
3718
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:36 +0100
3719
+ Served asset /samples.css - 304 Not Modified (0ms)
3720
+
3721
+
3722
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:36 +0100
3723
+ Served asset /jquery.js - 304 Not Modified (6ms)
3724
+
3725
+
3726
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:36 +0100
3727
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3728
+
3729
+
3730
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:36 +0100
3731
+ Served asset /demos.js - 304 Not Modified (0ms)
3732
+
3733
+
3734
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:36 +0100
3735
+ Served asset /samples.js - 304 Not Modified (0ms)
3736
+
3737
+
3738
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:36 +0100
3739
+ Served asset /application.js - 304 Not Modified (2ms)
3740
+
3741
+
3742
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:18:43 +0100
3743
+ Processing by DemosController#index as HTML
3744
+ Rendered demos/index.html.erb within layouts/application (0.8ms)
3745
+ Completed 200 OK in 84ms (Views: 83.6ms | ActiveRecord: 0.0ms)
3746
+
3747
+
3748
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:43 +0100
3749
+ Served asset /application.css - 304 Not Modified (0ms)
3750
+
3751
+
3752
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:43 +0100
3753
+ Served asset /demos.css - 304 Not Modified (0ms)
3754
+
3755
+
3756
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:44 +0100
3757
+ Served asset /samples.css - 304 Not Modified (0ms)
3758
+
3759
+
3760
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:44 +0100
3761
+ Served asset /jquery.js - 304 Not Modified (1ms)
3762
+
3763
+
3764
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:44 +0100
3765
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3766
+
3767
+
3768
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:44 +0100
3769
+ Served asset /samples.js - 304 Not Modified (0ms)
3770
+
3771
+
3772
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:44 +0100
3773
+ Served asset /demos.js - 304 Not Modified (0ms)
3774
+
3775
+
3776
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:44 +0100
3777
+ Served asset /application.js - 304 Not Modified (10ms)
3778
+
3779
+
3780
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-04 15:18:45 +0100
3781
+ Processing by DemosController#show as HTML
3782
+ Parameters: {"id"=>"clock"}
3783
+ Rendered remote_partials/_clock.html.erb (8.6ms)
3784
+ Rendered demos/_clock.html.erb (10.0ms)
3785
+ Rendered demos/show.html.erb within layouts/application (10.9ms)
3786
+ Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms)
3787
+
3788
+
3789
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:46 +0100
3790
+ Served asset /application.css - 304 Not Modified (0ms)
3791
+
3792
+
3793
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:46 +0100
3794
+ Served asset /demos.css - 304 Not Modified (0ms)
3795
+
3796
+
3797
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:46 +0100
3798
+ Served asset /samples.js - 304 Not Modified (0ms)
3799
+
3800
+
3801
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:46 +0100
3802
+ Served asset /demos.js - 304 Not Modified (0ms)
3803
+
3804
+
3805
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:46 +0100
3806
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3807
+
3808
+
3809
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:46 +0100
3810
+ Served asset /jquery.js - 304 Not Modified (1ms)
3811
+
3812
+
3813
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:18:46 +0100
3814
+ Served asset /samples.css - 304 Not Modified (0ms)
3815
+
3816
+
3817
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:18:46 +0100
3818
+ Served asset /application.js - 304 Not Modified (7ms)
3819
+
3820
+
3821
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-04 15:20:10 +0100
3822
+ Processing by DemosController#show as HTML
3823
+ Parameters: {"id"=>"clock"}
3824
+ Rendered remote_partials/_clock.html.erb (0.1ms)
3825
+ Rendered demos/_clock.html.erb (1.4ms)
3826
+ Rendered demos/show.html.erb within layouts/application (2.4ms)
3827
+ Completed 200 OK in 33ms (Views: 32.6ms | ActiveRecord: 0.0ms)
3828
+
3829
+
3830
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:20:10 +0100
3831
+ Served asset /application.css - 304 Not Modified (0ms)
3832
+
3833
+
3834
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:20:10 +0100
3835
+ Served asset /demos.css - 304 Not Modified (5ms)
3836
+
3837
+
3838
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:20:11 +0100
3839
+ Served asset /samples.css - 304 Not Modified (0ms)
3840
+
3841
+
3842
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:11 +0100
3843
+ Served asset /jquery.js - 304 Not Modified (8ms)
3844
+
3845
+
3846
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:11 +0100
3847
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3848
+
3849
+
3850
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:11 +0100
3851
+ Served asset /demos.js - 304 Not Modified (16ms)
3852
+
3853
+
3854
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:11 +0100
3855
+ Served asset /samples.js - 304 Not Modified (0ms)
3856
+
3857
+
3858
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:11 +0100
3859
+ Served asset /application.js - 304 Not Modified (11ms)
3860
+
3861
+
3862
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:20:22 +0100
3863
+ Processing by DemosController#index as HTML
3864
+ Rendered demos/index.html.erb within layouts/application (0.9ms)
3865
+ Completed 200 OK in 21ms (Views: 21.2ms | ActiveRecord: 0.0ms)
3866
+
3867
+
3868
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:20:22 +0100
3869
+ Served asset /application.css - 304 Not Modified (0ms)
3870
+
3871
+
3872
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:20:22 +0100
3873
+ Served asset /demos.css - 304 Not Modified (0ms)
3874
+
3875
+
3876
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:20:22 +0100
3877
+ Served asset /samples.css - 304 Not Modified (3ms)
3878
+
3879
+
3880
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:22 +0100
3881
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3882
+
3883
+
3884
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:22 +0100
3885
+ Served asset /demos.js - 304 Not Modified (0ms)
3886
+
3887
+
3888
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:22 +0100
3889
+ Served asset /jquery.js - 304 Not Modified (1ms)
3890
+
3891
+
3892
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:22 +0100
3893
+ Served asset /samples.js - 304 Not Modified (0ms)
3894
+
3895
+
3896
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:22 +0100
3897
+ Served asset /application.js - 304 Not Modified (17ms)
3898
+
3899
+
3900
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-04 15:20:24 +0100
3901
+ Processing by DemosController#show as HTML
3902
+ Parameters: {"id"=>"ruby"}
3903
+ Rendered remote_partials/_ruby.html.erb (0.0ms)
3904
+ Rendered demos/_ruby.html.erb (0.7ms)
3905
+ Rendered demos/show.html.erb within layouts/application (1.5ms)
3906
+ Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
3907
+
3908
+
3909
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:20:24 +0100
3910
+ Served asset /application.css - 304 Not Modified (6ms)
3911
+
3912
+
3913
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:20:25 +0100
3914
+ Served asset /demos.css - 304 Not Modified (0ms)
3915
+
3916
+
3917
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:20:25 +0100
3918
+ Served asset /samples.css - 304 Not Modified (0ms)
3919
+
3920
+
3921
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:25 +0100
3922
+ Served asset /jquery.js - 304 Not Modified (7ms)
3923
+
3924
+
3925
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:25 +0100
3926
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3927
+
3928
+
3929
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:25 +0100
3930
+ Served asset /demos.js - 304 Not Modified (0ms)
3931
+
3932
+
3933
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:25 +0100
3934
+ Served asset /samples.js - 304 Not Modified (0ms)
3935
+
3936
+
3937
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:20:25 +0100
3938
+ Served asset /application.js - 304 Not Modified (21ms)
3939
+
3940
+
3941
+ Started GET "/demos/ruby" for 127.0.0.1 at 2013-07-04 15:21:22 +0100
3942
+ Processing by DemosController#show as HTML
3943
+ Parameters: {"id"=>"ruby"}
3944
+ Rendered remote_partials/_ruby.html.erb (0.0ms)
3945
+ Rendered demos/_ruby.html.erb (6.7ms)
3946
+ Rendered demos/show.html.erb within layouts/application (7.9ms)
3947
+ Completed 200 OK in 128ms (Views: 128.1ms | ActiveRecord: 0.0ms)
3948
+
3949
+
3950
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:21:22 +0100
3951
+ Served asset /application.css - 304 Not Modified (3ms)
3952
+
3953
+
3954
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:21:22 +0100
3955
+ Served asset /demos.css - 304 Not Modified (0ms)
3956
+
3957
+
3958
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:21:22 +0100
3959
+ Served asset /samples.css - 304 Not Modified (0ms)
3960
+
3961
+
3962
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:21:23 +0100
3963
+ Served asset /jquery.js - 304 Not Modified (12ms)
3964
+
3965
+
3966
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:21:23 +0100
3967
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
3968
+
3969
+
3970
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:21:23 +0100
3971
+ Served asset /samples.js - 304 Not Modified (0ms)
3972
+
3973
+
3974
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:21:23 +0100
3975
+ Served asset /demos.js - 304 Not Modified (0ms)
3976
+
3977
+
3978
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:21:23 +0100
3979
+ Served asset /application.js - 304 Not Modified (1ms)
3980
+
3981
+
3982
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:21:32 +0100
3983
+ Processing by DemosController#index as HTML
3984
+ Rendered demos/index.html.erb within layouts/application (0.9ms)
3985
+ Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.0ms)
3986
+
3987
+
3988
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:21:32 +0100
3989
+ Served asset /application.css - 304 Not Modified (0ms)
3990
+
3991
+
3992
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:21:32 +0100
3993
+ Served asset /demos.css - 304 Not Modified (0ms)
3994
+
3995
+
3996
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:21:32 +0100
3997
+ Served asset /samples.css - 304 Not Modified (8ms)
3998
+
3999
+
4000
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:21:32 +0100
4001
+ Served asset /jquery.js - 304 Not Modified (1ms)
4002
+
4003
+
4004
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:21:32 +0100
4005
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4006
+
4007
+
4008
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:21:32 +0100
4009
+ Served asset /demos.js - 304 Not Modified (0ms)
4010
+
4011
+
4012
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:21:32 +0100
4013
+ Served asset /samples.js - 304 Not Modified (5ms)
4014
+
4015
+
4016
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:21:32 +0100
4017
+ Served asset /application.js - 304 Not Modified (2ms)
4018
+ Connecting to database specified by database.yml
4019
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
4020
+  (0.1ms) begin transaction
4021
+  (0.1ms) commit transaction
4022
+ RemotePartial::Partial Load (0.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
4023
+  (0.0ms) begin transaction
4024
+  (0.1ms) commit transaction
4025
+
4026
+
4027
+ Started GET "/demos/fixed" for 127.0.0.1 at 2013-07-04 15:25:36 +0100
4028
+ Processing by DemosController#show as HTML
4029
+ Parameters: {"id"=>"fixed"}
4030
+ Rendered remote_partials/_fixed.html.erb (0.5ms)
4031
+ Rendered demos/_fixed.html.erb (2.0ms)
4032
+ Rendered demos/show.html.erb within layouts/application (71.3ms)
4033
+ Completed 200 OK in 132ms (Views: 131.8ms | ActiveRecord: 0.0ms)
4034
+
4035
+
4036
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:25:36 +0100
4037
+ Served asset /application.css - 304 Not Modified (15ms)
4038
+
4039
+
4040
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:25:36 +0100
4041
+ Served asset /demos.css - 304 Not Modified (10ms)
4042
+
4043
+
4044
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:25:36 +0100
4045
+ Served asset /samples.css - 304 Not Modified (1ms)
4046
+
4047
+
4048
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:25:36 +0100
4049
+ Served asset /jquery.js - 304 Not Modified (94ms)
4050
+
4051
+
4052
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:25:37 +0100
4053
+ Served asset /jquery_ujs.js - 304 Not Modified (23ms)
4054
+
4055
+
4056
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:25:37 +0100
4057
+ Served asset /demos.js - 304 Not Modified (1ms)
4058
+
4059
+
4060
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:25:37 +0100
4061
+ Served asset /application.js - 304 Not Modified (50ms)
4062
+
4063
+
4064
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:25:37 +0100
4065
+ Served asset /samples.js - 304 Not Modified (1ms)
4066
+
4067
+
4068
+ Started GET "/" for 127.0.0.1 at 2013-07-04 15:25:38 +0100
4069
+ Processing by DemosController#index as HTML
4070
+ Rendered demos/index.html.erb within layouts/application (6.1ms)
4071
+ Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
4072
+
4073
+
4074
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:25:39 +0100
4075
+ Served asset /application.css - 304 Not Modified (0ms)
4076
+
4077
+
4078
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:25:39 +0100
4079
+ Served asset /demos.css - 304 Not Modified (0ms)
4080
+
4081
+
4082
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:25:39 +0100
4083
+ Served asset /samples.css - 304 Not Modified (4ms)
4084
+
4085
+
4086
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:25:39 +0100
4087
+ Served asset /jquery.js - 304 Not Modified (22ms)
4088
+
4089
+
4090
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:25:39 +0100
4091
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4092
+
4093
+
4094
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:25:39 +0100
4095
+ Served asset /demos.js - 304 Not Modified (0ms)
4096
+
4097
+
4098
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:25:39 +0100
4099
+ Served asset /samples.js - 304 Not Modified (0ms)
4100
+
4101
+
4102
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:25:39 +0100
4103
+ Served asset /application.js - 304 Not Modified (8ms)
4104
+
4105
+
4106
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-04 15:29:09 +0100
4107
+ Processing by DemosController#show as HTML
4108
+ Parameters: {"id"=>"clock"}
4109
+ Rendered remote_partials/_clock.html.erb (0.5ms)
4110
+ Rendered demos/_clock.html.erb (4.9ms)
4111
+ Rendered demos/show.html.erb within layouts/application (14.2ms)
4112
+ Completed 200 OK in 61ms (Views: 60.4ms | ActiveRecord: 0.0ms)
4113
+
4114
+
4115
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:29:09 +0100
4116
+ Served asset /application.css - 304 Not Modified (0ms)
4117
+
4118
+
4119
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:29:09 +0100
4120
+ Served asset /demos.css - 304 Not Modified (0ms)
4121
+
4122
+
4123
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:29:09 +0100
4124
+ Served asset /samples.css - 304 Not Modified (0ms)
4125
+
4126
+
4127
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:29:09 +0100
4128
+ Served asset /jquery.js - 304 Not Modified (1ms)
4129
+
4130
+
4131
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:29:09 +0100
4132
+ Served asset /jquery_ujs.js - 304 Not Modified (7ms)
4133
+
4134
+
4135
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:29:09 +0100
4136
+ Served asset /demos.js - 304 Not Modified (0ms)
4137
+
4138
+
4139
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:29:09 +0100
4140
+ Served asset /samples.js - 304 Not Modified (0ms)
4141
+
4142
+
4143
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:29:09 +0100
4144
+ Served asset /application.js - 304 Not Modified (11ms)
4145
+ Connecting to database specified by database.yml
4146
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
4147
+  (0.2ms) begin transaction
4148
+  (0.1ms) commit transaction
4149
+ RemotePartial::Partial Load (0.5ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
4150
+  (0.1ms) begin transaction
4151
+  (0.1ms) commit transaction
4152
+
4153
+
4154
+ Started GET "/demos/clock" for 127.0.0.1 at 2013-07-04 15:29:40 +0100
4155
+ Processing by DemosController#show as HTML
4156
+ Parameters: {"id"=>"clock"}
4157
+ Rendered remote_partials/_clock.html.erb (0.5ms)
4158
+ Rendered demos/_clock.html.erb (8.4ms)
4159
+ Rendered demos/show.html.erb within layouts/application (9.9ms)
4160
+ Completed 200 OK in 44ms (Views: 43.7ms | ActiveRecord: 0.0ms)
4161
+
4162
+
4163
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-04 15:29:40 +0100
4164
+ Served asset /application.css - 304 Not Modified (1ms)
4165
+
4166
+
4167
+ Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2013-07-04 15:29:40 +0100
4168
+ Served asset /demos.css - 304 Not Modified (0ms)
4169
+
4170
+
4171
+ Started GET "/assets/samples.css?body=1" for 127.0.0.1 at 2013-07-04 15:29:40 +0100
4172
+ Served asset /samples.css - 304 Not Modified (0ms)
4173
+
4174
+
4175
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-04 15:29:40 +0100
4176
+ Served asset /jquery.js - 304 Not Modified (7ms)
4177
+
4178
+
4179
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-04 15:29:40 +0100
4180
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
4181
+
4182
+
4183
+ Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2013-07-04 15:29:40 +0100
4184
+ Served asset /demos.js - 304 Not Modified (0ms)
4185
+
4186
+
4187
+ Started GET "/assets/samples.js?body=1" for 127.0.0.1 at 2013-07-04 15:29:40 +0100
4188
+ Served asset /samples.js - 304 Not Modified (0ms)
4189
+
4190
+
4191
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-07-04 15:29:40 +0100
4192
+ Served asset /application.js - 304 Not Modified (1ms)
4193
+ Connecting to database specified by database.yml
4194
+ RemotePartial::Partial Load (1.3ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'clock' LIMIT 1
4195
+  (0.1ms) begin transaction
4196
+  (0.1ms) commit transaction
4197
+ RemotePartial::Partial Load (0.4ms) SELECT "remote_partial_partials".* FROM "remote_partial_partials" WHERE "remote_partial_partials"."name" = 'ruby' LIMIT 1
4198
+  (0.1ms) begin transaction
4199
+  (0.1ms) commit transaction
4200
+ Updated remote partials at 2013-07-04 15:30:49