gretel 1.2.0 → 1.2.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 (57) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +153 -0
  3. data/Rakefile +38 -0
  4. data/lib/generators/gretel/USAGE +8 -0
  5. data/lib/gretel/helper_methods.rb +0 -8
  6. data/lib/gretel.rb +1 -1
  7. data/test/dummy/Rakefile +7 -0
  8. data/test/dummy/app/assets/javascripts/application.js +15 -0
  9. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  10. data/test/dummy/app/controllers/application_controller.rb +3 -0
  11. data/test/dummy/app/helpers/application_helper.rb +2 -0
  12. data/test/dummy/app/models/issue.rb +3 -0
  13. data/test/dummy/app/models/project.rb +3 -0
  14. data/test/dummy/config/application.rb +59 -0
  15. data/test/dummy/config/boot.rb +10 -0
  16. data/test/dummy/config/database.yml +25 -0
  17. data/test/dummy/config/environment.rb +5 -0
  18. data/test/dummy/config/environments/development.rb +37 -0
  19. data/test/dummy/config/environments/production.rb +67 -0
  20. data/test/dummy/config/environments/test.rb +37 -0
  21. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  22. data/test/dummy/config/initializers/breadcrumbs.rb +43 -0
  23. data/test/dummy/config/initializers/inflections.rb +15 -0
  24. data/test/dummy/config/initializers/mime_types.rb +5 -0
  25. data/test/dummy/config/initializers/secret_token.rb +7 -0
  26. data/test/dummy/config/initializers/session_store.rb +8 -0
  27. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  28. data/test/dummy/config/locales/en.yml +5 -0
  29. data/test/dummy/config/routes.rb +11 -0
  30. data/test/dummy/config.ru +4 -0
  31. data/test/dummy/db/development.sqlite3 +0 -0
  32. data/test/dummy/db/migrate/20130122163007_create_projects.rb +9 -0
  33. data/test/dummy/db/migrate/20130122163051_create_issues.rb +10 -0
  34. data/test/dummy/db/schema.rb +29 -0
  35. data/test/dummy/db/test.sqlite3 +0 -0
  36. data/test/dummy/log/development.log +899 -0
  37. data/test/dummy/log/test.log +9038 -0
  38. data/test/dummy/public/404.html +26 -0
  39. data/test/dummy/public/422.html +26 -0
  40. data/test/dummy/public/500.html +25 -0
  41. data/test/dummy/public/favicon.ico +0 -0
  42. data/test/dummy/script/rails +6 -0
  43. data/test/dummy/tmp/cache/assets/CD0/C10/sprockets%2F54298310314d4114afd54d090ef4eae3 +0 -0
  44. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  45. data/test/dummy/tmp/cache/assets/D11/910/sprockets%2Fa4743dda75a6c1d923065da98d729f21 +0 -0
  46. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  47. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  48. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  49. data/test/dummy/tmp/cache/assets/D5F/7E0/sprockets%2F25f5ca97d1c1c044514dd8d2c5cb6d02 +0 -0
  50. data/test/dummy/tmp/cache/assets/D79/060/sprockets%2Fa2cf91ba98db7115dd35bcd7881934f8 +0 -0
  51. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  52. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  53. data/test/fixtures/issues.yml +4 -0
  54. data/test/fixtures/projects.yml +3 -0
  55. data/test/helper_methods_test.rb +100 -0
  56. data/test/test_helper.rb +15 -0
  57. metadata +140 -4
@@ -0,0 +1,899 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+  (0.2ms) select sqlite_version(*)
5
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
+  (11.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
8
+ Connecting to database specified by database.yml
9
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
10
+ Migrating to CreateProjects (20130122163007)
11
+  (0.0ms) select sqlite_version(*)
12
+  (0.0ms) begin transaction
13
+  (0.6ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
14
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130122163007')
15
+  (2.1ms) commit transaction
16
+ Migrating to CreateIssues (20130122163051)
17
+  (0.0ms) begin transaction
18
+  (0.0ms) rollback transaction
19
+ Connecting to database specified by database.yml
20
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
21
+ Migrating to CreateProjects (20130122163007)
22
+ Migrating to CreateIssues (20130122163051)
23
+  (0.0ms) select sqlite_version(*)
24
+  (0.0ms) begin transaction
25
+  (0.7ms) CREATE TABLE "issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "project_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
26
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130122163051')
27
+  (2.3ms) commit transaction
28
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
29
+ Connecting to database specified by database.yml
30
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
31
+  (0.3ms) select sqlite_version(*)
32
+  (1.7ms) CREATE TABLE "issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "project_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
33
+  (1.9ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
34
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
35
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
36
+  (0.1ms) SELECT version FROM "schema_migrations"
37
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122163051')
38
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122163007')
39
+ Connecting to database specified by database.yml
40
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
41
+  (0.2ms) select sqlite_version(*)
42
+  (1.6ms) CREATE TABLE "issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "project_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
43
+  (2.0ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
44
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
45
+  (1.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
46
+  (0.1ms) SELECT version FROM "schema_migrations"
47
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122163051')
48
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122163007')
49
+
50
+
51
+ Started GET "/semantic" for 127.0.0.1 at 2013-01-22 18:14:19 +0100
52
+ Connecting to database specified by database.yml
53
+ Processing by TestController#semantic as HTML
54
+ Rendered test/semantic.html.erb within layouts/application (3.8ms)
55
+ Compiled application.css (1ms) (pid 17837)
56
+ Compiled jquery.js (3ms) (pid 17837)
57
+ Compiled jquery_ujs.js (0ms) (pid 17837)
58
+ Compiled application.js (74ms) (pid 17837)
59
+ Completed 200 OK in 158ms (Views: 157.4ms | ActiveRecord: 0.0ms)
60
+
61
+
62
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:14:20 +0100
63
+ Served asset /application.css - 200 OK (2ms)
64
+
65
+
66
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:20 +0100
67
+ Served asset /jquery.js - 200 OK (4ms)
68
+
69
+
70
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:20 +0100
71
+ Served asset /jquery_ujs.js - 200 OK (2ms)
72
+
73
+
74
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:20 +0100
75
+ Served asset /application.js - 200 OK (3ms)
76
+
77
+
78
+ Started GET "/semantic" for 127.0.0.1 at 2013-01-22 18:14:27 +0100
79
+ Processing by TestController#semantic as HTML
80
+ Rendered test/semantic.html.erb within layouts/application (0.4ms)
81
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
82
+
83
+
84
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:14:27 +0100
85
+ Served asset /application.css - 304 Not Modified (0ms)
86
+
87
+
88
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:27 +0100
89
+ Served asset /jquery.js - 304 Not Modified (0ms)
90
+
91
+
92
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:27 +0100
93
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
94
+
95
+
96
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:27 +0100
97
+ Served asset /application.js - 304 Not Modified (2ms)
98
+
99
+
100
+ Started GET "/semantic" for 127.0.0.1 at 2013-01-22 18:14:49 +0100
101
+ Processing by TestController#semantic as HTML
102
+ Rendered test/semantic.html.erb within layouts/application (0.3ms)
103
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
104
+
105
+
106
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:14:49 +0100
107
+ Served asset /application.css - 304 Not Modified (0ms)
108
+
109
+
110
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:49 +0100
111
+ Served asset /jquery.js - 304 Not Modified (0ms)
112
+
113
+
114
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:49 +0100
115
+ Served asset /application.js - 304 Not Modified (0ms)
116
+
117
+
118
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:49 +0100
119
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
120
+
121
+
122
+ Started GET "/simple" for 127.0.0.1 at 2013-01-22 18:14:53 +0100
123
+ Processing by TestController#simple as HTML
124
+ Rendered test/simple.html.erb within layouts/application (0.5ms)
125
+ Completed 200 OK in 9ms (Views: 7.8ms | ActiveRecord: 0.0ms)
126
+
127
+
128
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:14:54 +0100
129
+ Served asset /application.css - 304 Not Modified (0ms)
130
+
131
+
132
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:54 +0100
133
+ Served asset /application.js - 304 Not Modified (0ms)
134
+
135
+
136
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:54 +0100
137
+ Served asset /jquery.js - 304 Not Modified (0ms)
138
+
139
+
140
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:54 +0100
141
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
142
+
143
+
144
+ Started GET "/simple" for 127.0.0.1 at 2013-01-22 18:14:55 +0100
145
+ Processing by TestController#simple as HTML
146
+ Rendered test/simple.html.erb within layouts/application (0.4ms)
147
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
148
+
149
+
150
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:14:55 +0100
151
+ Served asset /application.css - 304 Not Modified (0ms)
152
+
153
+
154
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:55 +0100
155
+ Served asset /jquery.js - 304 Not Modified (0ms)
156
+
157
+
158
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:55 +0100
159
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
160
+
161
+
162
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:14:55 +0100
163
+ Served asset /application.js - 304 Not Modified (0ms)
164
+
165
+
166
+ Started GET "/simple" for 127.0.0.1 at 2013-01-22 18:15:04 +0100
167
+ Processing by TestController#simple as HTML
168
+ Rendered test/simple.html.erb within layouts/application (57.9ms)
169
+ Completed 500 Internal Server Error in 59ms
170
+
171
+ ActionView::Template::Error (Breadcrumb :simpless not found.):
172
+ 2: breadcrumb :simpless
173
+ 3: %>
174
+ 4:
175
+ 5: <%= breadcrumb %>
176
+ app/views/test/simple.html.erb:5:in `_app_views_test_simple_html_erb___2412996916726328058_70336382500500'
177
+
178
+
179
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
180
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
181
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
182
+
183
+
184
+ Started GET "/simple" for 127.0.0.1 at 2013-01-22 18:15:08 +0100
185
+ Processing by TestController#simple as HTML
186
+ Rendered test/simple.html.erb within layouts/application (1.0ms)
187
+ Completed 500 Internal Server Error in 2ms
188
+
189
+ ActionView::Template::Error (Breadcrumb :simples not found.):
190
+ 2: breadcrumb :simples
191
+ 3: %>
192
+ 4:
193
+ 5: <%= breadcrumb %>
194
+ app/views/test/simple.html.erb:5:in `_app_views_test_simple_html_erb___2412996916726328058_70336372013880'
195
+
196
+
197
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
198
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
199
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
200
+
201
+
202
+ Started GET "/simple" for 127.0.0.1 at 2013-01-22 18:15:10 +0100
203
+ Processing by TestController#simple as HTML
204
+ Rendered test/simple.html.erb within layouts/application (0.7ms)
205
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
206
+
207
+
208
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:15:10 +0100
209
+ Served asset /application.css - 304 Not Modified (0ms)
210
+
211
+
212
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:15:10 +0100
213
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
214
+
215
+
216
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:15:10 +0100
217
+ Served asset /application.js - 304 Not Modified (0ms)
218
+
219
+
220
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:15:10 +0100
221
+ Served asset /jquery.js - 304 Not Modified (0ms)
222
+
223
+
224
+ Started GET "/simple" for 127.0.0.1 at 2013-01-22 18:17:05 +0100
225
+ Processing by TestController#simple as HTML
226
+ Rendered test/simple.html.erb within layouts/application (0.4ms)
227
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
228
+
229
+
230
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:17:05 +0100
231
+ Served asset /application.css - 304 Not Modified (0ms)
232
+
233
+
234
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:05 +0100
235
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
236
+
237
+
238
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:05 +0100
239
+ Served asset /jquery.js - 304 Not Modified (0ms)
240
+
241
+
242
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:05 +0100
243
+ Served asset /application.js - 304 Not Modified (0ms)
244
+
245
+
246
+ Started GET "/no_breadcrumb" for 127.0.0.1 at 2013-01-22 18:17:09 +0100
247
+ Processing by TestController#no_breadcrumb as HTML
248
+ Rendered test/no_breadcrumb.html.erb within layouts/application (0.7ms)
249
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
250
+
251
+
252
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:17:09 +0100
253
+ Served asset /application.css - 304 Not Modified (0ms)
254
+
255
+
256
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:09 +0100
257
+ Served asset /application.js - 304 Not Modified (0ms)
258
+
259
+
260
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:09 +0100
261
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
262
+
263
+
264
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:09 +0100
265
+ Served asset /jquery.js - 304 Not Modified (0ms)
266
+
267
+
268
+ Started GET "/no_breadcrumb" for 127.0.0.1 at 2013-01-22 18:17:34 +0100
269
+ Processing by TestController#no_breadcrumb as HTML
270
+ Rendered test/no_breadcrumb.html.erb within layouts/application (0.4ms)
271
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
272
+
273
+
274
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:17:34 +0100
275
+ Served asset /application.css - 304 Not Modified (0ms)
276
+
277
+
278
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:34 +0100
279
+ Served asset /jquery.js - 304 Not Modified (0ms)
280
+
281
+
282
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:34 +0100
283
+ Served asset /application.js - 304 Not Modified (0ms)
284
+
285
+
286
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:34 +0100
287
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
288
+
289
+
290
+ Started GET "/no_breadcrumb" for 127.0.0.1 at 2013-01-22 18:17:41 +0100
291
+ Processing by TestController#no_breadcrumb as HTML
292
+ Rendered test/no_breadcrumb.html.erb within layouts/application (1.0ms)
293
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
294
+
295
+
296
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:17:41 +0100
297
+ Served asset /application.css - 304 Not Modified (0ms)
298
+
299
+
300
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:41 +0100
301
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
302
+
303
+
304
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:41 +0100
305
+ Served asset /application.js - 304 Not Modified (0ms)
306
+
307
+
308
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:41 +0100
309
+ Served asset /jquery.js - 304 Not Modified (0ms)
310
+
311
+
312
+ Started GET "/no_breadcrumb" for 127.0.0.1 at 2013-01-22 18:17:45 +0100
313
+ Processing by TestController#no_breadcrumb as HTML
314
+ Rendered test/no_breadcrumb.html.erb within layouts/application (0.9ms)
315
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
316
+
317
+
318
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:17:45 +0100
319
+ Served asset /application.css - 304 Not Modified (0ms)
320
+
321
+
322
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:45 +0100
323
+ Served asset /jquery.js - 304 Not Modified (0ms)
324
+
325
+
326
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:45 +0100
327
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
328
+
329
+
330
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:45 +0100
331
+ Served asset /application.js - 304 Not Modified (0ms)
332
+
333
+
334
+ Started GET "/no_breadcrumb" for 127.0.0.1 at 2013-01-22 18:17:48 +0100
335
+ Processing by TestController#no_breadcrumb as HTML
336
+ Rendered test/no_breadcrumb.html.erb within layouts/application (0.7ms)
337
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
338
+
339
+
340
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:17:48 +0100
341
+ Served asset /application.css - 304 Not Modified (0ms)
342
+
343
+
344
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:48 +0100
345
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
346
+
347
+
348
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:48 +0100
349
+ Served asset /application.js - 304 Not Modified (0ms)
350
+
351
+
352
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:48 +0100
353
+ Served asset /jquery.js - 304 Not Modified (0ms)
354
+
355
+
356
+ Started GET "/no_breadcrumb" for 127.0.0.1 at 2013-01-22 18:17:56 +0100
357
+ Processing by TestController#no_breadcrumb as HTML
358
+ Rendered test/no_breadcrumb.html.erb within layouts/application (1.2ms)
359
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
360
+
361
+
362
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:17:57 +0100
363
+ Served asset /application.css - 304 Not Modified (0ms)
364
+
365
+
366
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:57 +0100
367
+ Served asset /jquery.js - 304 Not Modified (0ms)
368
+
369
+
370
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:57 +0100
371
+ Served asset /application.js - 304 Not Modified (0ms)
372
+
373
+
374
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:17:57 +0100
375
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
376
+
377
+
378
+ Started GET "/no_breadcrumb" for 127.0.0.1 at 2013-01-22 18:18:12 +0100
379
+ Processing by TestController#no_breadcrumb as HTML
380
+ Rendered test/no_breadcrumb.html.erb within layouts/application (0.5ms)
381
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
382
+
383
+
384
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:18:12 +0100
385
+ Served asset /application.css - 304 Not Modified (0ms)
386
+
387
+
388
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:18:12 +0100
389
+ Served asset /jquery.js - 304 Not Modified (0ms)
390
+
391
+
392
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:18:12 +0100
393
+ Served asset /application.js - 304 Not Modified (0ms)
394
+
395
+
396
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:18:12 +0100
397
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
398
+
399
+
400
+ Started GET "/no_breadcrumb" for 127.0.0.1 at 2013-01-22 18:19:02 +0100
401
+ Processing by TestController#no_breadcrumb as HTML
402
+ Rendered test/no_breadcrumb.html.erb within layouts/application (0.0ms)
403
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
404
+
405
+
406
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:19:02 +0100
407
+ Served asset /application.css - 304 Not Modified (0ms)
408
+
409
+
410
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:19:02 +0100
411
+ Served asset /jquery.js - 304 Not Modified (0ms)
412
+
413
+
414
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:19:02 +0100
415
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
416
+
417
+
418
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:19:02 +0100
419
+ Served asset /application.js - 304 Not Modified (0ms)
420
+
421
+
422
+ Started GET "/no_breadcrumb" for 127.0.0.1 at 2013-01-22 18:19:04 +0100
423
+ Processing by TestController#no_breadcrumb as HTML
424
+ Rendered test/no_breadcrumb.html.erb within layouts/application (0.1ms)
425
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
426
+
427
+
428
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:19:04 +0100
429
+ Served asset /application.css - 304 Not Modified (0ms)
430
+
431
+
432
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:19:04 +0100
433
+ Served asset /jquery.js - 304 Not Modified (0ms)
434
+
435
+
436
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:19:04 +0100
437
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
438
+
439
+
440
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:19:04 +0100
441
+ Served asset /application.js - 304 Not Modified (0ms)
442
+
443
+
444
+ Started GET "/simple" for 127.0.0.1 at 2013-01-22 18:19:10 +0100
445
+ Processing by TestController#simple as HTML
446
+ Rendered test/simple.html.erb within layouts/application (0.4ms)
447
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
448
+
449
+
450
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:19:10 +0100
451
+ Served asset /application.css - 304 Not Modified (0ms)
452
+
453
+
454
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:19:10 +0100
455
+ Served asset /jquery.js - 304 Not Modified (0ms)
456
+
457
+
458
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:19:10 +0100
459
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
460
+
461
+
462
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:19:10 +0100
463
+ Served asset /application.js - 304 Not Modified (0ms)
464
+ Connecting to database specified by database.yml
465
+  (10.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
466
+  (0.4ms) select sqlite_version(*)
467
+  (2.0ms) CREATE TABLE "issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "project_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
468
+  (1.5ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
469
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
470
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
471
+  (0.1ms) SELECT version FROM "schema_migrations"
472
+  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122163051')
473
+  (1.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122163007')
474
+
475
+
476
+ Started GET "/" for 127.0.0.1 at 2013-01-22 18:22:37 +0100
477
+ Connecting to database specified by database.yml
478
+
479
+ ActionController::RoutingError (uninitialized constant HomeController):
480
+ activesupport (3.2.11) lib/active_support/inflector/methods.rb:230:in `block in constantize'
481
+ activesupport (3.2.11) lib/active_support/inflector/methods.rb:229:in `each'
482
+ activesupport (3.2.11) lib/active_support/inflector/methods.rb:229:in `constantize'
483
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
484
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:54:in `controller'
485
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:32:in `call'
486
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
487
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
488
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
489
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
490
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
491
+ rack (1.4.4) lib/rack/etag.rb:23:in `call'
492
+ rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
493
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
494
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
495
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
496
+ rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
497
+ rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
498
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
499
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
500
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
501
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
502
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__257557704907031242__call__590546397681007486__callbacks'
503
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
504
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
505
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
506
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
507
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
508
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
509
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
510
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
511
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
512
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
513
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
514
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
515
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
516
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
517
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
518
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
519
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
520
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
521
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
522
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
523
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
524
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
525
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
526
+ /Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
527
+ /Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
528
+ /Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
529
+
530
+
531
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.7ms)
532
+
533
+
534
+ Started GET "/" for 127.0.0.1 at 2013-01-22 18:22:58 +0100
535
+
536
+ AbstractController::ActionNotFound (The action 'root' could not be found for TestController):
537
+ actionpack (3.2.11) lib/abstract_controller/base.rb:116:in `process'
538
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
539
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
540
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
541
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
542
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
543
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
544
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
545
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
546
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
547
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
548
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
549
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
550
+ rack (1.4.4) lib/rack/etag.rb:23:in `call'
551
+ rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
552
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
553
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
554
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
555
+ rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
556
+ rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
557
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
558
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
559
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
560
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
561
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__257557704907031242__call__590546397681007486__callbacks'
562
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
563
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
564
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
565
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
566
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
567
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
568
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
569
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
570
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
571
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
572
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
573
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
574
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
575
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
576
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
577
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
578
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
579
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
580
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
581
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
582
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
583
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
584
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
585
+ /Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
586
+ /Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
587
+ /Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
588
+
589
+
590
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms)
591
+
592
+
593
+ Started GET "/" for 127.0.0.1 at 2013-01-22 18:24:06 +0100
594
+ Processing by TestController#root as HTML
595
+ Completed 500 Internal Server Error in 6ms
596
+
597
+ ActionView::MissingTemplate (Missing template test/root, application/root with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
598
+ * "/Users/lassebunk/dev/gems/gretel/test/dummy/app/views"
599
+ ):
600
+ actionpack (3.2.11) lib/action_view/path_set.rb:58:in `find'
601
+ actionpack (3.2.11) lib/action_view/lookup_context.rb:109:in `find'
602
+ actionpack (3.2.11) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
603
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
604
+ actionpack (3.2.11) lib/action_view/renderer/template_renderer.rb:10:in `render'
605
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:36:in `render_template'
606
+ actionpack (3.2.11) lib/action_view/renderer/renderer.rb:17:in `render'
607
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:110:in `_render_template'
608
+ actionpack (3.2.11) lib/action_controller/metal/streaming.rb:225:in `_render_template'
609
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:103:in `render_to_body'
610
+ actionpack (3.2.11) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
611
+ actionpack (3.2.11) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
612
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:88:in `render'
613
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:16:in `render'
614
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
615
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
616
+ /Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
617
+ activesupport (3.2.11) lib/active_support/core_ext/benchmark.rb:5:in `ms'
618
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
619
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
620
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
621
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:39:in `render'
622
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
623
+ actionpack (3.2.11) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
624
+ actionpack (3.2.11) lib/abstract_controller/base.rb:167:in `process_action'
625
+ actionpack (3.2.11) lib/action_controller/metal/rendering.rb:10:in `process_action'
626
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
627
+ activesupport (3.2.11) lib/active_support/callbacks.rb:414:in `_run__1613843395995671237__process_action__4240461885857801320__callbacks'
628
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
629
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
630
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
631
+ actionpack (3.2.11) lib/abstract_controller/callbacks.rb:17:in `process_action'
632
+ actionpack (3.2.11) lib/action_controller/metal/rescue.rb:29:in `process_action'
633
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
634
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `block in instrument'
635
+ activesupport (3.2.11) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
636
+ activesupport (3.2.11) lib/active_support/notifications.rb:123:in `instrument'
637
+ actionpack (3.2.11) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
638
+ actionpack (3.2.11) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
639
+ activerecord (3.2.11) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
640
+ actionpack (3.2.11) lib/abstract_controller/base.rb:121:in `process'
641
+ actionpack (3.2.11) lib/abstract_controller/rendering.rb:45:in `process'
642
+ actionpack (3.2.11) lib/action_controller/metal.rb:203:in `dispatch'
643
+ actionpack (3.2.11) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
644
+ actionpack (3.2.11) lib/action_controller/metal.rb:246:in `block in action'
645
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `call'
646
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
647
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:36:in `call'
648
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
649
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
650
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
651
+ actionpack (3.2.11) lib/action_dispatch/routing/route_set.rb:601:in `call'
652
+ actionpack (3.2.11) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
653
+ rack (1.4.4) lib/rack/etag.rb:23:in `call'
654
+ rack (1.4.4) lib/rack/conditionalget.rb:25:in `call'
655
+ actionpack (3.2.11) lib/action_dispatch/middleware/head.rb:14:in `call'
656
+ actionpack (3.2.11) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
657
+ actionpack (3.2.11) lib/action_dispatch/middleware/flash.rb:242:in `call'
658
+ rack (1.4.4) lib/rack/session/abstract/id.rb:210:in `context'
659
+ rack (1.4.4) lib/rack/session/abstract/id.rb:205:in `call'
660
+ actionpack (3.2.11) lib/action_dispatch/middleware/cookies.rb:341:in `call'
661
+ activerecord (3.2.11) lib/active_record/query_cache.rb:64:in `call'
662
+ activerecord (3.2.11) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
663
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
664
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `_run__257557704907031242__call__590546397681007486__callbacks'
665
+ activesupport (3.2.11) lib/active_support/callbacks.rb:405:in `__run_callback'
666
+ activesupport (3.2.11) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
667
+ activesupport (3.2.11) lib/active_support/callbacks.rb:81:in `run_callbacks'
668
+ actionpack (3.2.11) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
669
+ actionpack (3.2.11) lib/action_dispatch/middleware/reloader.rb:65:in `call'
670
+ actionpack (3.2.11) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
671
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
672
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
673
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
674
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
675
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
676
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
677
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
678
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
679
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
680
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
681
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
682
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
683
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
684
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
685
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
686
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
687
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
688
+ /Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
689
+ /Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
690
+ /Users/lassebunk/.rvm/rubies/ruby-1.9.3-p362/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
691
+
692
+
693
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
694
+
695
+
696
+ Started GET "/" for 127.0.0.1 at 2013-01-22 18:24:15 +0100
697
+ Processing by TestController#root as HTML
698
+ Rendered test/root.html.erb within layouts/application (0.5ms)
699
+ Completed 200 OK in 44ms (Views: 44.2ms | ActiveRecord: 0.0ms)
700
+
701
+
702
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:24:15 +0100
703
+ Served asset /application.css - 304 Not Modified (3ms)
704
+
705
+
706
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:24:15 +0100
707
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
708
+
709
+
710
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:24:15 +0100
711
+ Served asset /jquery.js - 304 Not Modified (2ms)
712
+
713
+
714
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:24:15 +0100
715
+ Served asset /application.js - 304 Not Modified (6ms)
716
+
717
+
718
+ Started GET "/" for 127.0.0.1 at 2013-01-22 18:24:36 +0100
719
+ Processing by TestController#root as HTML
720
+ Rendered test/root.html.erb within layouts/application (0.7ms)
721
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
722
+
723
+
724
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:24:36 +0100
725
+ Served asset /application.css - 304 Not Modified (0ms)
726
+
727
+
728
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:24:36 +0100
729
+ Served asset /jquery.js - 304 Not Modified (0ms)
730
+
731
+
732
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:24:36 +0100
733
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
734
+
735
+
736
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:24:36 +0100
737
+ Served asset /application.js - 304 Not Modified (0ms)
738
+
739
+
740
+ Started GET "/" for 127.0.0.1 at 2013-01-22 18:25:50 +0100
741
+ Processing by TestController#root as HTML
742
+ Rendered test/root.html.erb within layouts/application (0.2ms)
743
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
744
+
745
+
746
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-22 18:25:50 +0100
747
+ Served asset /application.css - 304 Not Modified (0ms)
748
+
749
+
750
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-22 18:25:50 +0100
751
+ Served asset /jquery.js - 304 Not Modified (0ms)
752
+
753
+
754
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-22 18:25:50 +0100
755
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
756
+
757
+
758
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-22 18:25:50 +0100
759
+ Served asset /application.js - 304 Not Modified (0ms)
760
+
761
+
762
+ Started GET "/" for 127.0.0.1 at 2013-01-22 18:25:57 +0100
763
+ Processing by TestController#root as HTML
764
+ Rendered test/root.html.erb (0.3ms)
765
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
766
+
767
+
768
+ Started GET "/" for 127.0.0.1 at 2013-01-22 18:26:11 +0100
769
+ Processing by TestController#root as HTML
770
+ Rendered test/root.html.erb (1.2ms)
771
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
772
+
773
+
774
+ Started GET "/basic" for 127.0.0.1 at 2013-01-22 22:01:40 +0100
775
+ Connecting to database specified by database.yml
776
+ Processing by TestController#basic as HTML
777
+ Rendered test/basic.html.erb (2.8ms)
778
+ Completed 200 OK in 39ms (Views: 38.8ms | ActiveRecord: 0.0ms)
779
+
780
+
781
+ Started GET "/basic" for 127.0.0.1 at 2013-01-22 22:06:25 +0100
782
+ Processing by TestController#basic as HTML
783
+ Rendered test/basic.html.erb (0.4ms)
784
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
785
+
786
+
787
+ Started GET "/with_root" for 127.0.0.1 at 2013-01-22 22:07:26 +0100
788
+ Processing by TestController#with_root as HTML
789
+ Rendered test/with_root.html.erb (1.7ms)
790
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.0ms)
791
+
792
+
793
+ Started GET "/with_parent" for 127.0.0.1 at 2013-01-22 22:11:02 +0100
794
+ Connecting to database specified by database.yml
795
+ Processing by TestController#with_parent as HTML
796
+ Rendered test/with_parent.html.erb (2.7ms)
797
+ Completed 200 OK in 33ms (Views: 32.3ms | ActiveRecord: 0.0ms)
798
+
799
+
800
+ Started GET "/with_autopath" for 127.0.0.1 at 2013-01-22 22:13:00 +0100
801
+ Processing by TestController#with_autopath as HTML
802
+ Project Load (11.3ms) SELECT "projects".* FROM "projects" LIMIT 1
803
+ Rendered test/with_autopath.html.erb (14.0ms)
804
+ Completed 500 Internal Server Error in 67ms
805
+
806
+ ActionView::Template::Error (undefined method `name' for nil:NilClass):
807
+ 1: <%
808
+ 2: breadcrumb :with_autopath, @project
809
+ 3: %>
810
+ 4: <%= breadcrumb %>
811
+ config/initializers/breadcrumbs.rb:25:in `block (2 levels) in <top (required)>'
812
+ app/views/test/with_autopath.html.erb:4:in `_app_views_test_with_autopath_html_erb___348675438117501573_70273953657940'
813
+
814
+
815
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
816
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
817
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
818
+ Connecting to database specified by database.yml
819
+  (5.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
820
+  (0.3ms) select sqlite_version(*)
821
+  (2.1ms) CREATE TABLE "issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "project_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
822
+  (2.1ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
823
+  (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
824
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
825
+  (0.1ms) SELECT version FROM "schema_migrations"
826
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122163051')
827
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122163007')
828
+
829
+
830
+ Started GET "/with_autopath" for 127.0.0.1 at 2013-01-22 22:41:23 +0100
831
+ Processing by TestController#with_autopath as HTML
832
+ Project Load (4.3ms) SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", 1]]
833
+ Completed 404 Not Found in 12ms
834
+
835
+ ActiveRecord::RecordNotFound (Couldn't find Project with id=1):
836
+ app/controllers/test_controller.rb:15:in `with_autopath'
837
+
838
+
839
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
840
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
841
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.5ms)
842
+ Connecting to database specified by database.yml
843
+  (11.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
844
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
845
+ Migrating to CreateIssues (20130122163051)
846
+  (0.0ms) select sqlite_version(*)
847
+  (0.0ms) begin transaction
848
+  (20.2ms) DROP TABLE "issues"
849
+  (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20130122163051'
850
+  (1.9ms) commit transaction
851
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
852
+ Connecting to database specified by database.yml
853
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
854
+ Migrating to CreateProjects (20130122163007)
855
+ Migrating to CreateIssues (20130122163051)
856
+  (0.0ms) select sqlite_version(*)
857
+  (0.0ms) begin transaction
858
+  (0.5ms) CREATE TABLE "issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "project_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
859
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130122163051')
860
+  (2.2ms) commit transaction
861
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
862
+ Connecting to database specified by database.yml
863
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
864
+  (0.3ms) select sqlite_version(*)
865
+  (1.9ms) CREATE TABLE "issues" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "project_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
866
+  (1.6ms) CREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
867
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
868
+  (1.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
869
+  (0.1ms) SELECT version FROM "schema_migrations"
870
+  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122163051')
871
+  (1.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130122163007')
872
+
873
+
874
+ Started GET "/with_autopath" for 127.0.0.1 at 2013-01-22 23:15:08 +0100
875
+ Processing by TestController#with_autopath as HTML
876
+ Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", 1]]
877
+ Completed 404 Not Found in 7ms
878
+
879
+ ActiveRecord::RecordNotFound (Couldn't find Project with id=1):
880
+ app/controllers/test_controller.rb:3:in `with_autopath'
881
+
882
+
883
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
884
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
885
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
886
+
887
+
888
+ Started GET "/with_autopath" for 127.0.0.1 at 2013-01-22 23:29:24 +0100
889
+ Processing by TestController#with_autopath as HTML
890
+ Project Load (0.1ms) SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", 1]]
891
+ Completed 404 Not Found in 1ms
892
+
893
+ ActiveRecord::RecordNotFound (Couldn't find Project with id=1):
894
+ app/controllers/test_controller.rb:3:in `with_autopath'
895
+
896
+
897
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
898
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
899
+ Rendered /Users/lassebunk/.rvm/gems/ruby-1.9.3-p362/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.5ms)