token_field 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 (83) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +181 -0
  3. data/Rakefile +26 -0
  4. data/lib/token_field/capybara/dsl.rb +25 -0
  5. data/lib/token_field/engine.rb +11 -0
  6. data/lib/token_field/form_builder.rb +150 -0
  7. data/lib/token_field/version.rb +3 -0
  8. data/lib/token_field.rb +3 -0
  9. data/spec/dummy/README.rdoc +261 -0
  10. data/spec/dummy/Rakefile +7 -0
  11. data/spec/dummy/app/assets/javascripts/application.js +16 -0
  12. data/spec/dummy/app/assets/stylesheets/application.css +14 -0
  13. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  14. data/spec/dummy/app/controllers/categories_controller.rb +38 -0
  15. data/spec/dummy/app/controllers/products_controller.rb +31 -0
  16. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  17. data/spec/dummy/app/models/category.rb +10 -0
  18. data/spec/dummy/app/models/product.rb +13 -0
  19. data/spec/dummy/app/models/product_has_category.rb +6 -0
  20. data/spec/dummy/app/views/categories/_form.html.erb +12 -0
  21. data/spec/dummy/app/views/categories/edit.html.erb +2 -0
  22. data/spec/dummy/app/views/categories/index.html.erb +9 -0
  23. data/spec/dummy/app/views/categories/new.html.erb +2 -0
  24. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/spec/dummy/app/views/products/_form.html.erb +12 -0
  26. data/spec/dummy/app/views/products/edit.html.erb +2 -0
  27. data/spec/dummy/app/views/products/index.html.erb +9 -0
  28. data/spec/dummy/app/views/products/new.html.erb +2 -0
  29. data/spec/dummy/config/application.rb +59 -0
  30. data/spec/dummy/config/boot.rb +10 -0
  31. data/spec/dummy/config/database.yml +25 -0
  32. data/spec/dummy/config/environment.rb +5 -0
  33. data/spec/dummy/config/environments/development.rb +37 -0
  34. data/spec/dummy/config/environments/production.rb +67 -0
  35. data/spec/dummy/config/environments/test.rb +37 -0
  36. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  37. data/spec/dummy/config/initializers/inflections.rb +15 -0
  38. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  39. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  40. data/spec/dummy/config/initializers/session_store.rb +8 -0
  41. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  42. data/spec/dummy/config/locales/en.yml +5 -0
  43. data/spec/dummy/config/routes.rb +11 -0
  44. data/spec/dummy/config.ru +4 -0
  45. data/spec/dummy/db/development.sqlite3 +0 -0
  46. data/spec/dummy/db/migrate/20121012100526_create_categories.rb +10 -0
  47. data/spec/dummy/db/migrate/20121012235444_create_products.rb +9 -0
  48. data/spec/dummy/db/migrate/20121012235509_create_product_has_categories.rb +10 -0
  49. data/spec/dummy/db/schema.rb +36 -0
  50. data/spec/dummy/db/test.sqlite3 +0 -0
  51. data/spec/dummy/log/development.log +2848 -0
  52. data/spec/dummy/log/test.log +5938 -0
  53. data/spec/dummy/public/404.html +26 -0
  54. data/spec/dummy/public/422.html +26 -0
  55. data/spec/dummy/public/500.html +25 -0
  56. data/spec/dummy/public/favicon.ico +0 -0
  57. data/spec/dummy/script/rails +6 -0
  58. data/spec/dummy/tmp/cache/assets/BFD/FA0/sprockets%2F956cc6670041848963c189f12a536075 +0 -0
  59. data/spec/dummy/tmp/cache/assets/C68/F70/sprockets%2F03000591510dc6784ee531c103e66a7a +0 -0
  60. data/spec/dummy/tmp/cache/assets/C82/490/sprockets%2F2cea86012965b76f28b56b4522099f12 +0 -0
  61. data/spec/dummy/tmp/cache/assets/C8A/7F0/sprockets%2F4e7378273896b0f7371ca47f4a24128d +0 -0
  62. data/spec/dummy/tmp/cache/assets/CCB/5D0/sprockets%2F2b021b5261218f4183021778bade6ddd +0 -0
  63. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  64. data/spec/dummy/tmp/cache/assets/D0F/700/sprockets%2Fb728373cb12011fa141dfc9a8386ef89 +0 -0
  65. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  66. data/spec/dummy/tmp/cache/assets/D3E/1E0/sprockets%2Fd3e4a0e0e469d4f2099f2991fc52bd10 +0 -0
  67. data/spec/dummy/tmp/cache/assets/D4C/880/sprockets%2Fbb9e5647377f244f135f349fc70e7cba +0 -0
  68. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  69. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  70. data/spec/dummy/tmp/cache/assets/D63/FB0/sprockets%2Faed0411c9144264bba7519e8cfda37b4 +0 -0
  71. data/spec/dummy/tmp/cache/assets/D7F/9E0/sprockets%2Fd984f45a60778c3cf14f1df92b0d9e6d +0 -0
  72. data/spec/dummy/tmp/cache/assets/DA5/100/sprockets%2F7d657d1d3bce59d08ee0cf74f16086ba +0 -0
  73. data/spec/dummy/tmp/cache/assets/DA7/A00/sprockets%2Fac9acf238820db9d87b3f81c5de1298b +0 -0
  74. data/spec/dummy/tmp/cache/assets/DAC/370/sprockets%2F03a081dc7732cd2c4cbb10a57caa43ec +0 -0
  75. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  76. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  77. data/spec/dummy/tmp/cache/assets/E1A/730/sprockets%2Fa4e8a61e45b4a04eeb1b2fb5f1b90edb +0 -0
  78. data/spec/dummy/tmp/pids/server.pid +1 -0
  79. data/spec/factories/factories.rb +11 -0
  80. data/spec/requests/categories_spec.rb +68 -0
  81. data/spec/requests/products_spec.rb +70 -0
  82. data/spec/spec_helper.rb +62 -0
  83. metadata +352 -0
@@ -0,0 +1,2848 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2012-10-12 12:03:19 +0200
4
+ Connecting to database specified by database.yml
5
+
6
+ ActionController::RoutingError (No route matches [GET] "/"):
7
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
10
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
11
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
12
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
13
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
14
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
15
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
16
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
17
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
18
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
19
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
20
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
21
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
22
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
23
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
24
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
25
+
26
+
27
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.1ms)
28
+ Connecting to database specified by database.yml
29
+ Connecting to database specified by database.yml
30
+  (0.1ms) select sqlite_version(*)
31
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
32
+  (0.0ms) PRAGMA index_list("schema_migrations")
33
+  (33.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
34
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
35
+ Migrating to CreateCategories (20121012100526)
36
+  (0.0ms) begin transaction
37
+  (0.5ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "parent_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
38
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121012100526')
39
+  (1.2ms) commit transaction
40
+  (0.3ms) select sqlite_version(*)
41
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
42
+  (0.0ms) PRAGMA index_list("categories")
43
+
44
+
45
+ Started GET "/" for 127.0.0.1 at 2012-10-12 12:15:42 +0200
46
+ Connecting to database specified by database.yml
47
+ Processing by CategoriesController#index as HTML
48
+ Category Load (0.1ms) SELECT "categories".* FROM "categories" 
49
+ Rendered categories/index.html.erb within layouts/application (2.2ms)
50
+ Compiled token-input.css (0ms) (pid 65815)
51
+ Compiled categories.css (0ms) (pid 65815)
52
+ Compiled application.css (15ms) (pid 65815)
53
+ Compiled jquery.js (4ms) (pid 65815)
54
+ Compiled jquery_ujs.js (0ms) (pid 65815)
55
+ Compiled jquery.tokeninput.js (0ms) (pid 65815)
56
+ Compiled categories.js (0ms) (pid 65815)
57
+ Compiled application.js (109ms) (pid 65815)
58
+ Completed 200 OK in 360ms (Views: 301.7ms | ActiveRecord: 1.6ms)
59
+
60
+
61
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:15:43 +0200
62
+ Served asset /application.css - 200 OK (4ms)
63
+
64
+
65
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:15:43 +0200
66
+ Served asset /token-input.css - 200 OK (2ms)
67
+
68
+
69
+ Started GET "/assets/categories.css?body=1" for 127.0.0.1 at 2012-10-12 12:15:43 +0200
70
+ Served asset /categories.css - 200 OK (1ms)
71
+
72
+
73
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:15:43 +0200
74
+ Served asset /jquery.js - 304 Not Modified (3ms)
75
+
76
+
77
+ Started GET "/assets/categories.js?body=1" for 127.0.0.1 at 2012-10-12 12:15:43 +0200
78
+ Served asset /categories.js - 200 OK (1ms)
79
+
80
+
81
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:15:43 +0200
82
+ Served asset /jquery.tokeninput.js - 200 OK (1ms)
83
+
84
+
85
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:15:43 +0200
86
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
87
+
88
+
89
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:15:43 +0200
90
+ Served asset /application.js - 200 OK (22ms)
91
+
92
+
93
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:15:46 +0200
94
+ Processing by CategoriesController#new as HTML
95
+ Rendered categories/new.html.erb within layouts/application (30.8ms)
96
+ Completed 500 Internal Server Error in 38ms
97
+
98
+ ActionView::Template::Error (undefined method `label_field' for #<ActionView::Helpers::FormBuilder:0x00000101e607d8>):
99
+ 1: <h1>Category#new</h1>
100
+ 2: <%= form_for(@category) do |f| %>
101
+ 3: <p>
102
+ 4: <%= f.label_field :name %>
103
+ 5: <%= f.text_field :name %>
104
+ 6: </p>
105
+ 7: <p>
106
+ app/views/categories/new.html.erb:4:in `block in _app_views_categories_new_html_erb___57800146728870252_2170212380'
107
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb___57800146728870252_2170212380'
108
+
109
+
110
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
111
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
112
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
113
+
114
+
115
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:16:12 +0200
116
+ Processing by CategoriesController#new as HTML
117
+ Rendered categories/new.html.erb within layouts/application (13.9ms)
118
+ Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
119
+
120
+
121
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:12 +0200
122
+ Served asset /token-input.css - 304 Not Modified (0ms)
123
+
124
+
125
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:12 +0200
126
+ Served asset /application.css - 304 Not Modified (0ms)
127
+
128
+
129
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:12 +0200
130
+ Served asset /jquery.js - 304 Not Modified (0ms)
131
+
132
+
133
+ Started GET "/assets/categories.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:12 +0200
134
+ Served asset /categories.css - 304 Not Modified (0ms)
135
+
136
+
137
+ Started GET "/assets/categories.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:12 +0200
138
+ Served asset /categories.js - 304 Not Modified (0ms)
139
+
140
+
141
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:12 +0200
142
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
143
+
144
+
145
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:12 +0200
146
+ Served asset /application.js - 304 Not Modified (0ms)
147
+
148
+
149
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:12 +0200
150
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
151
+
152
+
153
+ Started POST "/categories" for 127.0.0.1 at 2012-10-12 12:16:17 +0200
154
+ Processing by CategoriesController#create as HTML
155
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"2av1uH15caF6Mz+lKlJW9cNDGASdZWyvFy3FWznlwS0=", "category"=>{"name"=>"nova", "parent_id"=>""}, "commit"=>"Create Category"}
156
+  (0.1ms) begin transaction
157
+ SQL (44.0ms) INSERT INTO "categories" ("created_at", "name", "parent_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 12 Oct 2012 10:16:17 UTC +00:00], ["name", "nova"], ["parent_id", nil], ["updated_at", Fri, 12 Oct 2012 10:16:17 UTC +00:00]]
158
+  (1.1ms) commit transaction
159
+ Redirected to http://localhost:3000/categories
160
+ Completed 302 Found in 48ms (ActiveRecord: 45.1ms)
161
+
162
+
163
+ Started GET "/categories" for 127.0.0.1 at 2012-10-12 12:16:17 +0200
164
+ Processing by CategoriesController#index as HTML
165
+ Category Load (0.1ms) SELECT "categories".* FROM "categories" 
166
+ Rendered categories/index.html.erb within layouts/application (1.0ms)
167
+ Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.1ms)
168
+
169
+
170
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:17 +0200
171
+ Served asset /application.css - 304 Not Modified (0ms)
172
+
173
+
174
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:17 +0200
175
+ Served asset /token-input.css - 304 Not Modified (0ms)
176
+
177
+
178
+ Started GET "/assets/categories.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:17 +0200
179
+ Served asset /categories.css - 304 Not Modified (0ms)
180
+
181
+
182
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:17 +0200
183
+ Served asset /jquery.js - 304 Not Modified (0ms)
184
+
185
+
186
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:17 +0200
187
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
188
+
189
+
190
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:17 +0200
191
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
192
+
193
+
194
+ Started GET "/assets/categories.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:17 +0200
195
+ Served asset /categories.js - 304 Not Modified (0ms)
196
+
197
+
198
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:17 +0200
199
+ Served asset /application.js - 304 Not Modified (0ms)
200
+
201
+
202
+ Started GET "/categories" for 127.0.0.1 at 2012-10-12 12:16:41 +0200
203
+ Processing by CategoriesController#index as HTML
204
+ Category Load (0.2ms) SELECT "categories".* FROM "categories"
205
+ Rendered categories/index.html.erb within layouts/application (1.6ms)
206
+ Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.2ms)
207
+
208
+
209
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:41 +0200
210
+ Served asset /token-input.css - 304 Not Modified (0ms)
211
+
212
+
213
+ Started GET "/assets/categories.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:41 +0200
214
+ Served asset /categories.css - 304 Not Modified (0ms)
215
+
216
+
217
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:41 +0200
218
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
219
+
220
+
221
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:41 +0200
222
+ Served asset /jquery.js - 304 Not Modified (0ms)
223
+
224
+
225
+ Started GET "/assets/categories.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:41 +0200
226
+ Served asset /categories.js - 304 Not Modified (0ms)
227
+
228
+
229
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:41 +0200
230
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
231
+
232
+
233
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:41 +0200
234
+ Served asset /application.css - 304 Not Modified (0ms)
235
+
236
+
237
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:41 +0200
238
+ Served asset /application.js - 304 Not Modified (0ms)
239
+
240
+
241
+ Started GET "/categories" for 127.0.0.1 at 2012-10-12 12:16:54 +0200
242
+ Processing by CategoriesController#index as HTML
243
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" 
244
+ Rendered categories/index.html.erb within layouts/application (2.5ms)
245
+ Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.2ms)
246
+
247
+
248
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:54 +0200
249
+ Served asset /application.css - 304 Not Modified (0ms)
250
+
251
+
252
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:54 +0200
253
+ Served asset /token-input.css - 304 Not Modified (0ms)
254
+
255
+
256
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:54 +0200
257
+ Served asset /jquery.js - 304 Not Modified (0ms)
258
+
259
+
260
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:54 +0200
261
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
262
+
263
+
264
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:54 +0200
265
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
266
+
267
+
268
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:54 +0200
269
+ Served asset /application.js - 304 Not Modified (0ms)
270
+
271
+
272
+ Started GET "/assets/categories.css?body=1" for 127.0.0.1 at 2012-10-12 12:16:54 +0200
273
+ Served asset /categories.css - 304 Not Modified (0ms)
274
+
275
+
276
+ Started GET "/assets/categories.js?body=1" for 127.0.0.1 at 2012-10-12 12:16:54 +0200
277
+ Served asset /categories.js - 304 Not Modified (0ms)
278
+
279
+
280
+ Started GET "/categories" for 127.0.0.1 at 2012-10-12 12:17:02 +0200
281
+ Processing by CategoriesController#index as HTML
282
+ Category Load (0.1ms) SELECT "categories".* FROM "categories"
283
+ Rendered categories/index.html.erb within layouts/application (1.0ms)
284
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.1ms)
285
+
286
+
287
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:17:02 +0200
288
+ Served asset /application.css - 304 Not Modified (0ms)
289
+
290
+
291
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:17:02 +0200
292
+ Served asset /token-input.css - 304 Not Modified (0ms)
293
+
294
+
295
+ Started GET "/assets/categories.css?body=1" for 127.0.0.1 at 2012-10-12 12:17:02 +0200
296
+ Served asset /categories.css - 304 Not Modified (0ms)
297
+
298
+
299
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:17:02 +0200
300
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
301
+
302
+
303
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:17:02 +0200
304
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
305
+
306
+
307
+ Started GET "/assets/categories.js?body=1" for 127.0.0.1 at 2012-10-12 12:17:02 +0200
308
+ Served asset /categories.js - 304 Not Modified (0ms)
309
+
310
+
311
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:17:02 +0200
312
+ Served asset /jquery.js - 304 Not Modified (0ms)
313
+
314
+
315
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:17:02 +0200
316
+ Served asset /application.js - 304 Not Modified (0ms)
317
+
318
+
319
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:22:01 +0200
320
+ Processing by CategoriesController#new as HTML
321
+ Rendered categories/new.html.erb within layouts/application (5.1ms)
322
+ Completed 200 OK in 28ms (Views: 13.4ms | ActiveRecord: 0.6ms)
323
+
324
+
325
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:22:01 +0200
326
+ Served asset /application.css - 304 Not Modified (0ms)
327
+
328
+
329
+ Started GET "/assets/categories.js?body=1" for 127.0.0.1 at 2012-10-12 12:22:01 +0200
330
+ Served asset /categories.js - 304 Not Modified (0ms)
331
+
332
+
333
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:22:01 +0200
334
+ Served asset /jquery.js - 304 Not Modified (0ms)
335
+
336
+
337
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:22:01 +0200
338
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
339
+
340
+
341
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:22:01 +0200
342
+ Served asset /token-input.css - 304 Not Modified (0ms)
343
+
344
+
345
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:22:01 +0200
346
+ Served asset /application.js - 304 Not Modified (0ms)
347
+
348
+
349
+ Started GET "/assets/categories.css?body=1" for 127.0.0.1 at 2012-10-12 12:22:01 +0200
350
+ Served asset /categories.css - 304 Not Modified (0ms)
351
+
352
+
353
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:22:01 +0200
354
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
355
+
356
+
357
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:30:35 +0200
358
+
359
+ ArgumentError (wrong number of arguments (3 for 2)):
360
+ app/models/category.rb:4:in `<class:Category>'
361
+ app/models/category.rb:1:in `<top (required)>'
362
+ app/controllers/categories_controller.rb:1:in `<top (required)>'
363
+
364
+
365
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (35.8ms)
366
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
367
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (45.2ms)
368
+ Connecting to database specified by database.yml
369
+ Connecting to database specified by database.yml
370
+
371
+
372
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:31:14 +0200
373
+ Connecting to database specified by database.yml
374
+ Processing by CategoriesController#new as HTML
375
+ Rendered categories/_form.html.erb (10.3ms)
376
+ Rendered categories/new.html.erb within layouts/application (14.5ms)
377
+ Completed 500 Internal Server Error in 59ms
378
+
379
+ ActionView::Template::Error (uninitialized constant Parent):
380
+ 5: </p>
381
+ 6: <p>
382
+ 7: <%= f.label :parent_id %>
383
+ 8: <%= f.token_field :parent_id %>
384
+ 9: </p>
385
+ 10: <%= f.submit %>
386
+ 11: <% end %>
387
+ app/helpers/token_field_helper.rb:94:in `token_field'
388
+ app/views/categories/_form.html.erb:8:in `block in _app_views_categories__form_html_erb__2909152794900590978_2158127440'
389
+ app/views/categories/_form.html.erb:1:in `_app_views_categories__form_html_erb__2909152794900590978_2158127440'
390
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb___2371400964088186688_2157781700'
391
+
392
+
393
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
394
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
395
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.7ms)
396
+
397
+
398
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:31:52 +0200
399
+ Processing by CategoriesController#new as HTML
400
+ Rendered categories/_form.html.erb (31.0ms)
401
+ Rendered categories/new.html.erb within layouts/application (31.9ms)
402
+ Completed 500 Internal Server Error in 34ms
403
+
404
+ ActionView::Template::Error (undefined method `parent' for #<Category:0x000001021d82f8>):
405
+ 5: </p>
406
+ 6: <p>
407
+ 7: <%= f.label :parent_id %>
408
+ 8: <%= f.token_field :parent_id, :model => :category %>
409
+ 9: </p>
410
+ 10: <%= f.submit %>
411
+ 11: <% end %>
412
+ app/helpers/token_field_helper.rb:112:in `token_field'
413
+ app/views/categories/_form.html.erb:8:in `block in _app_views_categories__form_html_erb__2909152794900590978_2165123620'
414
+ app/views/categories/_form.html.erb:1:in `_app_views_categories__form_html_erb__2909152794900590978_2165123620'
415
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb___2371400964088186688_2157781700'
416
+
417
+
418
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
419
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
420
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.1ms)
421
+
422
+
423
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:31:53 +0200
424
+ Processing by CategoriesController#new as HTML
425
+ Rendered categories/_form.html.erb (2.7ms)
426
+ Rendered categories/new.html.erb within layouts/application (3.4ms)
427
+ Completed 500 Internal Server Error in 5ms
428
+
429
+ ActionView::Template::Error (undefined method `parent' for #<Category:0x00000102ef8ca8>):
430
+ 5: </p>
431
+ 6: <p>
432
+ 7: <%= f.label :parent_id %>
433
+ 8: <%= f.token_field :parent_id, :model => :category %>
434
+ 9: </p>
435
+ 10: <%= f.submit %>
436
+ 11: <% end %>
437
+ app/helpers/token_field_helper.rb:112:in `token_field'
438
+ app/views/categories/_form.html.erb:8:in `block in _app_views_categories__form_html_erb__2909152794900590978_2165123620'
439
+ app/views/categories/_form.html.erb:1:in `_app_views_categories__form_html_erb__2909152794900590978_2165123620'
440
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb___2371400964088186688_2157781700'
441
+
442
+
443
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
444
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
445
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.3ms)
446
+
447
+
448
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:32:10 +0200
449
+ Connecting to database specified by database.yml
450
+ Processing by CategoriesController#new as HTML
451
+ Rendered categories/_form.html.erb (16.9ms)
452
+ Rendered categories/new.html.erb within layouts/application (22.9ms)
453
+ Completed 500 Internal Server Error in 95ms
454
+
455
+ ActionView::Template::Error (undefined method `parent' for #<Category:0x0000010155d320>):
456
+ 5: </p>
457
+ 6: <p>
458
+ 7: <%= f.label :parent_id %>
459
+ 8: <%= f.token_field :parent_id, :model => :category %>
460
+ 9: </p>
461
+ 10: <%= f.submit %>
462
+ 11: <% end %>
463
+ app/helpers/token_field_helper.rb:112:in `token_field'
464
+ app/views/categories/_form.html.erb:8:in `block in _app_views_categories__form_html_erb__2228907538185509431_2155516920'
465
+ app/views/categories/_form.html.erb:1:in `_app_views_categories__form_html_erb__2228907538185509431_2155516920'
466
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb__838696099899117069_2158445240'
467
+
468
+
469
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
470
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
471
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.7ms)
472
+
473
+
474
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:33:14 +0200
475
+ Processing by CategoriesController#new as HTML
476
+ Rendered categories/_form.html.erb (31.1ms)
477
+ Rendered categories/new.html.erb within layouts/application (31.8ms)
478
+ Compiled token-input.css (0ms) (pid 76280)
479
+ Compiled application.css (4ms) (pid 76280)
480
+ Compiled jquery.js (4ms) (pid 76280)
481
+ Compiled jquery_ujs.js (0ms) (pid 76280)
482
+ Compiled jquery.tokeninput.js (0ms) (pid 76280)
483
+ Compiled application.js (50ms) (pid 76280)
484
+ Completed 200 OK in 343ms (Views: 334.0ms | ActiveRecord: 0.6ms)
485
+
486
+
487
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:33:15 +0200
488
+ Served asset /application.css - 304 Not Modified (35ms)
489
+
490
+
491
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:33:15 +0200
492
+ Served asset /token-input.css - 304 Not Modified (2ms)
493
+
494
+
495
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:15 +0200
496
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
497
+
498
+
499
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:15 +0200
500
+ Served asset /application.js - 304 Not Modified (4ms)
501
+
502
+
503
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:15 +0200
504
+ Served asset /jquery.tokeninput.js - 304 Not Modified (1ms)
505
+
506
+
507
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:15 +0200
508
+ Served asset /jquery.js - 304 Not Modified (2ms)
509
+
510
+
511
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:33:44 +0200
512
+ Processing by CategoriesController#new as HTML
513
+ Rendered categories/_form.html.erb (2.5ms)
514
+ Rendered categories/new.html.erb within layouts/application (3.1ms)
515
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
516
+
517
+
518
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:44 +0200
519
+ Served asset /jquery.js - 304 Not Modified (0ms)
520
+
521
+
522
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:44 +0200
523
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
524
+
525
+
526
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:33:44 +0200
527
+ Served asset /application.css - 304 Not Modified (0ms)
528
+
529
+
530
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:33:44 +0200
531
+ Served asset /token-input.css - 304 Not Modified (0ms)
532
+
533
+
534
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:44 +0200
535
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
536
+
537
+
538
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:44 +0200
539
+ Served asset /application.js - 304 Not Modified (0ms)
540
+
541
+
542
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
543
+ Processing by CategoriesController#new as HTML
544
+ Rendered categories/_form.html.erb (2.3ms)
545
+ Rendered categories/new.html.erb within layouts/application (2.8ms)
546
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
547
+
548
+
549
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
550
+ Served asset /application.css - 304 Not Modified (0ms)
551
+
552
+
553
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
554
+ Served asset /token-input.css - 304 Not Modified (0ms)
555
+
556
+
557
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
558
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
559
+
560
+
561
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
562
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
563
+
564
+
565
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
566
+ Served asset /jquery.js - 304 Not Modified (0ms)
567
+
568
+
569
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
570
+ Processing by CategoriesController#new as HTML
571
+ Rendered categories/_form.html.erb (2.9ms)
572
+ Rendered categories/new.html.erb within layouts/application (3.8ms)
573
+ Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
574
+
575
+
576
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
577
+ Served asset /application.css - 304 Not Modified (0ms)
578
+
579
+
580
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
581
+ Served asset /token-input.css - 304 Not Modified (0ms)
582
+
583
+
584
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
585
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
586
+
587
+
588
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
589
+ Served asset /jquery.js - 304 Not Modified (0ms)
590
+
591
+
592
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
593
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
594
+
595
+
596
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:45 +0200
597
+ Served asset /application.js - 304 Not Modified (0ms)
598
+
599
+
600
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:33:46 +0200
601
+ Processing by CategoriesController#new as HTML
602
+ Rendered categories/_form.html.erb (2.8ms)
603
+ Rendered categories/new.html.erb within layouts/application (3.5ms)
604
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
605
+
606
+
607
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:33:46 +0200
608
+ Served asset /application.css - 304 Not Modified (0ms)
609
+
610
+
611
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:46 +0200
612
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
613
+
614
+
615
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:46 +0200
616
+ Served asset /jquery.js - 304 Not Modified (0ms)
617
+
618
+
619
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:33:46 +0200
620
+ Served asset /token-input.css - 304 Not Modified (0ms)
621
+
622
+
623
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:46 +0200
624
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
625
+
626
+
627
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:33:46 +0200
628
+ Served asset /application.js - 304 Not Modified (0ms)
629
+
630
+
631
+ Started GET "/admin/categories/token.json?q=d" for 127.0.0.1 at 2012-10-12 12:33:49 +0200
632
+
633
+ ActionController::RoutingError (No route matches [GET] "/admin/categories/token.json"):
634
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
635
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
636
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
637
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
638
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
639
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
640
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
641
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
642
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
643
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
644
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
645
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
646
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
647
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
648
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
649
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
650
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
651
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
652
+
653
+
654
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
655
+
656
+
657
+ Started GET "/admin/categories/token.json?q=df" for 127.0.0.1 at 2012-10-12 12:33:50 +0200
658
+
659
+ ActionController::RoutingError (No route matches [GET] "/admin/categories/token.json"):
660
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
661
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
662
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
663
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
664
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
665
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
666
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
667
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
668
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
669
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
670
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
671
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
672
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
673
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
674
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
675
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
676
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
677
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
678
+
679
+
680
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
681
+
682
+
683
+ Started GET "/admin/categories/token.json?q=df" for 127.0.0.1 at 2012-10-12 12:33:51 +0200
684
+
685
+ ActionController::RoutingError (No route matches [GET] "/admin/categories/token.json"):
686
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
687
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
688
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
689
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
690
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
691
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
692
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
693
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
694
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
695
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
696
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
697
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
698
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
699
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
700
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
701
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
702
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
703
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
704
+
705
+
706
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
707
+
708
+
709
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:35:05 +0200
710
+ Processing by CategoriesController#new as HTML
711
+ Rendered categories/_form.html.erb (4.8ms)
712
+ Rendered categories/new.html.erb within layouts/application (5.7ms)
713
+ Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
714
+
715
+
716
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:35:05 +0200
717
+ Served asset /application.css - 304 Not Modified (0ms)
718
+
719
+
720
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:35:05 +0200
721
+ Served asset /token-input.css - 304 Not Modified (0ms)
722
+
723
+
724
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:35:05 +0200
725
+ Served asset /jquery.js - 304 Not Modified (0ms)
726
+
727
+
728
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:35:05 +0200
729
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
730
+
731
+
732
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:35:05 +0200
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 2012-10-12 12:35:05 +0200
737
+ Served asset /application.js - 304 Not Modified (0ms)
738
+
739
+
740
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:35:07 +0200
741
+ Processing by CategoriesController#new as HTML
742
+ Rendered categories/_form.html.erb (2.1ms)
743
+ Rendered categories/new.html.erb within layouts/application (2.8ms)
744
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
745
+
746
+
747
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:35:07 +0200
748
+ Served asset /application.css - 304 Not Modified (0ms)
749
+
750
+
751
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:35:07 +0200
752
+ Served asset /jquery.js - 304 Not Modified (0ms)
753
+
754
+
755
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:35:07 +0200
756
+ Served asset /token-input.css - 304 Not Modified (0ms)
757
+
758
+
759
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:35:07 +0200
760
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
761
+
762
+
763
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:35:07 +0200
764
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
765
+
766
+
767
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:35:07 +0200
768
+ Served asset /application.js - 304 Not Modified (0ms)
769
+
770
+
771
+ Started GET "/categories/token.json?q=t" for 127.0.0.1 at 2012-10-12 12:35:10 +0200
772
+
773
+ AbstractController::ActionNotFound (The action 'show' could not be found for CategoriesController):
774
+ actionpack (3.2.8) lib/abstract_controller/base.rb:116:in `process'
775
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
776
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
777
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
778
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
779
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
780
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
781
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
782
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
783
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
784
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
785
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
786
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
787
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
788
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
789
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
790
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
791
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
792
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
793
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
794
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
795
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
796
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
797
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
798
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3365942655095098825__call__2216357525263074590__callbacks'
799
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
800
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
801
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
802
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
803
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
804
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
805
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
806
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
807
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
808
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
809
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
810
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
811
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
812
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
813
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
814
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
815
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
816
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
817
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
818
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
819
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
820
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
821
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
822
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
823
+
824
+
825
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms)
826
+
827
+
828
+ Started GET "/categories/token.json?q=d" for 127.0.0.1 at 2012-10-12 12:35:24 +0200
829
+
830
+ AbstractController::ActionNotFound (The action 'show' could not be found for CategoriesController):
831
+ actionpack (3.2.8) lib/abstract_controller/base.rb:116:in `process'
832
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
833
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
834
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
835
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
836
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
837
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
838
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
839
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
840
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
841
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
842
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
843
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
844
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
845
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
846
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
847
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
848
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
849
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
850
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
851
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
852
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
853
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
854
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
855
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3365942655095098825__call__2216357525263074590__callbacks'
856
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
857
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
858
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
859
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
860
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
861
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
862
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
863
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
864
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
865
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
866
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
867
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
868
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
869
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
870
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
871
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
872
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
873
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
874
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
875
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
876
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
877
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
878
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
879
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
880
+
881
+
882
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.3ms)
883
+
884
+
885
+ Started GET "/categories/token.json?q=df" for 127.0.0.1 at 2012-10-12 12:35:25 +0200
886
+
887
+ AbstractController::ActionNotFound (The action 'show' could not be found for CategoriesController):
888
+ actionpack (3.2.8) lib/abstract_controller/base.rb:116:in `process'
889
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
890
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
891
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
892
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
893
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
894
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
895
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
896
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
897
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
898
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
899
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
900
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
901
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
902
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
903
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
904
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
905
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
906
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
907
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
908
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
909
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
910
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
911
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
912
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__3365942655095098825__call__2216357525263074590__callbacks'
913
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
914
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
915
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
916
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
917
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
918
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
919
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
920
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
921
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
922
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
923
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
924
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
925
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
926
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
927
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
928
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
929
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
930
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
931
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
932
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
933
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
934
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
935
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
936
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
937
+
938
+
939
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms)
940
+
941
+
942
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:37:58 +0200
943
+ Processing by CategoriesController#new as HTML
944
+ Rendered categories/_form.html.erb (4.8ms)
945
+ Rendered categories/new.html.erb within layouts/application (5.7ms)
946
+ Completed 200 OK in 27ms (Views: 17.1ms | ActiveRecord: 0.6ms)
947
+
948
+
949
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:37:58 +0200
950
+ Served asset /application.css - 304 Not Modified (0ms)
951
+
952
+
953
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:37:58 +0200
954
+ Served asset /application.js - 304 Not Modified (0ms)
955
+
956
+
957
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:37:58 +0200
958
+ Served asset /jquery.js - 304 Not Modified (0ms)
959
+
960
+
961
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:37:58 +0200
962
+ Served asset /token-input.css - 304 Not Modified (0ms)
963
+
964
+
965
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:37:58 +0200
966
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
967
+
968
+
969
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:37:58 +0200
970
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
971
+
972
+
973
+ Started GET "/categories" for 127.0.0.1 at 2012-10-12 12:38:03 +0200
974
+ Processing by CategoriesController#index as HTML
975
+ Category Load (0.1ms) SELECT "categories".* FROM "categories" 
976
+ Rendered categories/index.html.erb within layouts/application (1.1ms)
977
+ Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.1ms)
978
+
979
+
980
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:38:03 +0200
981
+ Served asset /application.css - 304 Not Modified (0ms)
982
+
983
+
984
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:38:03 +0200
985
+ Served asset /token-input.css - 304 Not Modified (0ms)
986
+
987
+
988
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:03 +0200
989
+ Served asset /jquery.js - 304 Not Modified (0ms)
990
+
991
+
992
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:03 +0200
993
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
994
+
995
+
996
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:03 +0200
997
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
998
+
999
+
1000
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:03 +0200
1001
+ Served asset /application.js - 304 Not Modified (0ms)
1002
+
1003
+
1004
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:38:04 +0200
1005
+ Processing by CategoriesController#new as HTML
1006
+ Rendered categories/_form.html.erb (2.4ms)
1007
+ Rendered categories/new.html.erb within layouts/application (3.0ms)
1008
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
1009
+
1010
+
1011
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:38:04 +0200
1012
+ Served asset /application.css - 304 Not Modified (0ms)
1013
+
1014
+
1015
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:38:04 +0200
1016
+ Served asset /token-input.css - 304 Not Modified (0ms)
1017
+
1018
+
1019
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:04 +0200
1020
+ Served asset /jquery.js - 304 Not Modified (0ms)
1021
+
1022
+
1023
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:04 +0200
1024
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1025
+
1026
+
1027
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:04 +0200
1028
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1029
+
1030
+
1031
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:04 +0200
1032
+ Served asset /application.js - 304 Not Modified (0ms)
1033
+
1034
+
1035
+ Started GET "/categories/token.json?q=n" for 127.0.0.1 at 2012-10-12 12:38:07 +0200
1036
+ Processing by CategoriesController#token as JSON
1037
+ Parameters: {"q"=>"n"}
1038
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%n%')
1039
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
1040
+
1041
+
1042
+ Started POST "/categories" for 127.0.0.1 at 2012-10-12 12:38:16 +0200
1043
+ Processing by CategoriesController#create as HTML
1044
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"2av1uH15caF6Mz+lKlJW9cNDGASdZWyvFy3FWznlwS0=", "category"=>{"name"=>"sub", "parent_id"=>"1"}, "commit"=>"Create Category"}
1045
+  (0.1ms) begin transaction
1046
+ SQL (5.6ms) INSERT INTO "categories" ("created_at", "name", "parent_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 12 Oct 2012 10:38:16 UTC +00:00], ["name", "sub"], ["parent_id", 1], ["updated_at", Fri, 12 Oct 2012 10:38:16 UTC +00:00]]
1047
+  (1.2ms) commit transaction
1048
+ Redirected to http://localhost:3000/categories
1049
+ Completed 302 Found in 11ms (ActiveRecord: 6.8ms)
1050
+
1051
+
1052
+ Started GET "/categories" for 127.0.0.1 at 2012-10-12 12:38:16 +0200
1053
+ Processing by CategoriesController#index as HTML
1054
+ Category Load (0.1ms) SELECT "categories".* FROM "categories"
1055
+ Rendered categories/index.html.erb within layouts/application (0.6ms)
1056
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
1057
+
1058
+
1059
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:38:16 +0200
1060
+ Served asset /application.css - 304 Not Modified (0ms)
1061
+
1062
+
1063
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:38:16 +0200
1064
+ Served asset /token-input.css - 304 Not Modified (0ms)
1065
+
1066
+
1067
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:16 +0200
1068
+ Served asset /jquery.js - 304 Not Modified (0ms)
1069
+
1070
+
1071
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:16 +0200
1072
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1073
+
1074
+
1075
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:16 +0200
1076
+ Served asset /application.js - 304 Not Modified (0ms)
1077
+
1078
+
1079
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:16 +0200
1080
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1081
+
1082
+
1083
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:38:19 +0200
1084
+ Processing by CategoriesController#new as HTML
1085
+ Rendered categories/_form.html.erb (3.3ms)
1086
+ Rendered categories/new.html.erb within layouts/application (4.1ms)
1087
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
1088
+
1089
+
1090
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:38:19 +0200
1091
+ Served asset /application.css - 304 Not Modified (0ms)
1092
+
1093
+
1094
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:19 +0200
1095
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1096
+
1097
+
1098
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:38:19 +0200
1099
+ Served asset /token-input.css - 304 Not Modified (0ms)
1100
+
1101
+
1102
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:19 +0200
1103
+ Served asset /jquery.js - 304 Not Modified (0ms)
1104
+
1105
+
1106
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:19 +0200
1107
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1108
+
1109
+
1110
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:19 +0200
1111
+ Served asset /application.js - 304 Not Modified (0ms)
1112
+
1113
+
1114
+ Started GET "/categories/token.json?q=su" for 127.0.0.1 at 2012-10-12 12:38:24 +0200
1115
+ Processing by CategoriesController#token as JSON
1116
+ Parameters: {"q"=>"su"}
1117
+ Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%su%')
1118
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
1119
+
1120
+
1121
+ Started POST "/categories" for 127.0.0.1 at 2012-10-12 12:38:28 +0200
1122
+ Processing by CategoriesController#create as HTML
1123
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"2av1uH15caF6Mz+lKlJW9cNDGASdZWyvFy3FWznlwS0=", "category"=>{"name"=>"sub sub", "parent_id"=>"2"}, "commit"=>"Create Category"}
1124
+  (0.1ms) begin transaction
1125
+ SQL (0.6ms) INSERT INTO "categories" ("created_at", "name", "parent_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 12 Oct 2012 10:38:28 UTC +00:00], ["name", "sub sub"], ["parent_id", 2], ["updated_at", Fri, 12 Oct 2012 10:38:28 UTC +00:00]]
1126
+  (1.0ms) commit transaction
1127
+ Redirected to http://localhost:3000/categories
1128
+ Completed 302 Found in 4ms (ActiveRecord: 1.7ms)
1129
+
1130
+
1131
+ Started GET "/categories" for 127.0.0.1 at 2012-10-12 12:38:28 +0200
1132
+ Processing by CategoriesController#index as HTML
1133
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" 
1134
+ Rendered categories/index.html.erb within layouts/application (0.6ms)
1135
+ Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.2ms)
1136
+
1137
+
1138
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:38:28 +0200
1139
+ Served asset /application.css - 304 Not Modified (0ms)
1140
+
1141
+
1142
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:38:28 +0200
1143
+ Served asset /token-input.css - 304 Not Modified (0ms)
1144
+
1145
+
1146
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:28 +0200
1147
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1148
+
1149
+
1150
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:28 +0200
1151
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1152
+
1153
+
1154
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:28 +0200
1155
+ Served asset /application.js - 304 Not Modified (0ms)
1156
+
1157
+
1158
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:38:28 +0200
1159
+ Served asset /jquery.js - 304 Not Modified (0ms)
1160
+
1161
+
1162
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:43:50 +0200
1163
+ Processing by CategoriesController#new as HTML
1164
+ Rendered categories/_form.html.erb (2.8ms)
1165
+ Rendered categories/new.html.erb within layouts/application (3.4ms)
1166
+ Completed 200 OK in 13ms (Views: 7.1ms | ActiveRecord: 0.4ms)
1167
+
1168
+
1169
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:43:50 +0200
1170
+ Served asset /application.css - 304 Not Modified (31ms)
1171
+
1172
+
1173
+ Started GET "/assets/token-input.css?body=1" for 127.0.0.1 at 2012-10-12 12:43:50 +0200
1174
+ Served asset /token-input.css - 304 Not Modified (0ms)
1175
+
1176
+
1177
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:43:50 +0200
1178
+ Served asset /jquery.js - 304 Not Modified (0ms)
1179
+
1180
+
1181
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:43:50 +0200
1182
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1183
+
1184
+
1185
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:43:50 +0200
1186
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1187
+
1188
+
1189
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:43:50 +0200
1190
+ Served asset /application.js - 304 Not Modified (0ms)
1191
+
1192
+
1193
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:44:20 +0200
1194
+ Processing by CategoriesController#new as HTML
1195
+ Rendered categories/_form.html.erb (4.5ms)
1196
+ Rendered categories/new.html.erb within layouts/application (5.7ms)
1197
+ Compiled token-input-facebook.css (0ms) (pid 76280)
1198
+ Compiled application.css (12ms) (pid 76280)
1199
+ Completed 200 OK in 32ms (Views: 32.1ms | ActiveRecord: 0.0ms)
1200
+
1201
+
1202
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 12:44:20 +0200
1203
+ Served asset /application.css - 304 Not Modified (3ms)
1204
+
1205
+
1206
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 12:44:20 +0200
1207
+ Served asset /token-input-facebook.css - 200 OK (2ms)
1208
+
1209
+
1210
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 12:44:20 +0200
1211
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1212
+
1213
+
1214
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 12:44:20 +0200
1215
+ Served asset /jquery.js - 304 Not Modified (0ms)
1216
+
1217
+
1218
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 12:44:20 +0200
1219
+ Served asset /application.js - 304 Not Modified (0ms)
1220
+
1221
+
1222
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 12:44:20 +0200
1223
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1224
+
1225
+
1226
+ Started GET "/categories/token.json?q=d" for 127.0.0.1 at 2012-10-12 12:44:22 +0200
1227
+ Processing by CategoriesController#token as JSON
1228
+ Parameters: {"q"=>"d"}
1229
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%d%')
1230
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
1231
+
1232
+
1233
+ Started GET "/categories/token.json?q=df" for 127.0.0.1 at 2012-10-12 12:44:23 +0200
1234
+ Processing by CategoriesController#token as JSON
1235
+ Parameters: {"q"=>"df"}
1236
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%df%')
1237
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
1238
+
1239
+
1240
+ Started GET "/categories/token.json?q=n" for 127.0.0.1 at 2012-10-12 12:44:25 +0200
1241
+ Processing by CategoriesController#token as JSON
1242
+ Parameters: {"q"=>"n"}
1243
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%n%')
1244
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
1245
+
1246
+
1247
+ Started GET "/categories/token.json?q=s" for 127.0.0.1 at 2012-10-12 12:44:27 +0200
1248
+ Processing by CategoriesController#token as JSON
1249
+ Parameters: {"q"=>"s"}
1250
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%s%')
1251
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
1252
+
1253
+
1254
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:55:17 +0200
1255
+ Connecting to database specified by database.yml
1256
+ Processing by CategoriesController#new as HTML
1257
+ Rendered categories/_form.html.erb (55.7ms)
1258
+ Rendered categories/new.html.erb within layouts/application (60.6ms)
1259
+ Completed 500 Internal Server Error in 124ms
1260
+
1261
+ ActionView::Template::Error (undefined method `token_field' for #<ActionView::Helpers::FormBuilder:0x0000010496cbc0>):
1262
+ 5: </p>
1263
+ 6: <p>
1264
+ 7: <%= f.label :parent_id %>
1265
+ 8: <%= f.token_field :parent_id, :model => :category, :token_url => "/categories/token.json" %>
1266
+ 9: </p>
1267
+ 10: <%= f.submit %>
1268
+ 11: <% end %>
1269
+ app/views/categories/_form.html.erb:8:in `block in _app_views_categories__form_html_erb__4482121404535896327_2186680200'
1270
+ app/views/categories/_form.html.erb:1:in `_app_views_categories__form_html_erb__4482121404535896327_2186680200'
1271
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb___569770230832164428_2170274180'
1272
+
1273
+
1274
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (26.2ms)
1275
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
1276
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (35.6ms)
1277
+
1278
+
1279
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:58:01 +0200
1280
+ Connecting to database specified by database.yml
1281
+ Processing by CategoriesController#new as HTML
1282
+ Rendered categories/_form.html.erb (20.3ms)
1283
+ Rendered categories/new.html.erb within layouts/application (25.3ms)
1284
+ Completed 500 Internal Server Error in 70ms
1285
+
1286
+ ActionView::Template::Error (undefined method `token_field' for #<ActionView::Helpers::FormBuilder:0x0000010456c138>):
1287
+ 5: </p>
1288
+ 6: <p>
1289
+ 7: <%= f.label :parent_id %>
1290
+ 8: <%= f.token_field :parent_id, :model => :category, :token_url => "/categories/token.json" %>
1291
+ 9: </p>
1292
+ 10: <%= f.submit %>
1293
+ 11: <% end %>
1294
+ app/views/categories/_form.html.erb:8:in `block in _app_views_categories__form_html_erb__3679864089128704092_2159421260'
1295
+ app/views/categories/_form.html.erb:1:in `_app_views_categories__form_html_erb__3679864089128704092_2159421260'
1296
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb__1882021031944154533_2167231260'
1297
+
1298
+
1299
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (18.2ms)
1300
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1301
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.5ms)
1302
+
1303
+
1304
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 12:58:49 +0200
1305
+ Connecting to database specified by database.yml
1306
+ Processing by CategoriesController#new as HTML
1307
+ Rendered categories/_form.html.erb (35.1ms)
1308
+ Rendered categories/new.html.erb within layouts/application (42.2ms)
1309
+ Completed 500 Internal Server Error in 108ms
1310
+
1311
+ ActionView::Template::Error (undefined method `token_field' for #<ActionView::Helpers::FormBuilder:0x000001010e9820>):
1312
+ 5: </p>
1313
+ 6: <p>
1314
+ 7: <%= f.label :parent_id %>
1315
+ 8: <%= f.token_field :parent_id, :model => :category, :token_url => "/categories/token.json" %>
1316
+ 9: </p>
1317
+ 10: <%= f.submit %>
1318
+ 11: <% end %>
1319
+ app/views/categories/_form.html.erb:8:in `block in _app_views_categories__form_html_erb__4140744813809962419_2179205160'
1320
+ app/views/categories/_form.html.erb:1:in `_app_views_categories__form_html_erb__4140744813809962419_2179205160'
1321
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb___2592824688105459040_2177959320'
1322
+
1323
+
1324
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
1325
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
1326
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (34.0ms)
1327
+
1328
+
1329
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:00:15 +0200
1330
+ Connecting to database specified by database.yml
1331
+ Processing by CategoriesController#new as HTML
1332
+ Rendered categories/_form.html.erb (48.3ms)
1333
+ Rendered categories/new.html.erb within layouts/application (54.5ms)
1334
+ Completed 500 Internal Server Error in 112ms
1335
+
1336
+ ActionView::Template::Error (undefined method `token_field' for #<ActionView::Helpers::FormBuilder:0x000001024918a0>):
1337
+ 5: </p>
1338
+ 6: <p>
1339
+ 7: <%= f.label :parent_id %>
1340
+ 8: <%= f.token_field :parent_id, :model => :category, :token_url => "/categories/token.json" %>
1341
+ 9: </p>
1342
+ 10: <%= f.submit %>
1343
+ 11: <% end %>
1344
+ app/views/categories/_form.html.erb:8:in `block in _app_views_categories__form_html_erb__884084129669588273_2184159260'
1345
+ app/views/categories/_form.html.erb:1:in `_app_views_categories__form_html_erb__884084129669588273_2184159260'
1346
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb___1572138950306552606_2159624640'
1347
+
1348
+
1349
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (20.9ms)
1350
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1351
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (28.7ms)
1352
+
1353
+
1354
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:02:50 +0200
1355
+ Connecting to database specified by database.yml
1356
+ Processing by CategoriesController#new as HTML
1357
+ Rendered categories/_form.html.erb (11.8ms)
1358
+ Rendered categories/new.html.erb within layouts/application (16.0ms)
1359
+ Compiled token-input-facebook.css (0ms) (pid 94882)
1360
+ Compiled application.css (3ms) (pid 94882)
1361
+ Compiled jquery.js (4ms) (pid 94882)
1362
+ Compiled jquery_ujs.js (0ms) (pid 94882)
1363
+ Compiled jquery.tokeninput.js (0ms) (pid 94882)
1364
+ Compiled application.js (17ms) (pid 94882)
1365
+ Completed 200 OK in 120ms (Views: 85.0ms | ActiveRecord: 1.4ms)
1366
+
1367
+
1368
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:02:50 +0200
1369
+ Served asset /application.css - 304 Not Modified (4ms)
1370
+
1371
+
1372
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:02:50 +0200
1373
+ Served asset /token-input-facebook.css - 304 Not Modified (1ms)
1374
+
1375
+
1376
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:02:50 +0200
1377
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
1378
+
1379
+
1380
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:02:50 +0200
1381
+ Served asset /jquery.js - 304 Not Modified (1ms)
1382
+
1383
+
1384
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:02:50 +0200
1385
+ Served asset /jquery.tokeninput.js - 304 Not Modified (1ms)
1386
+
1387
+
1388
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:02:50 +0200
1389
+ Served asset /application.js - 304 Not Modified (4ms)
1390
+
1391
+
1392
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:03:08 +0200
1393
+ Connecting to database specified by database.yml
1394
+ Processing by CategoriesController#new as HTML
1395
+ Rendered categories/_form.html.erb (37.2ms)
1396
+ Rendered categories/new.html.erb within layouts/application (41.9ms)
1397
+ Completed 500 Internal Server Error in 92ms
1398
+
1399
+ ActionView::Template::Error (undefined method `token_field' for #<ActionView::Helpers::FormBuilder:0x00000100a842c8>):
1400
+ 5: </p>
1401
+ 6: <p>
1402
+ 7: <%= f.label :parent_id %>
1403
+ 8: <%= f.token_field :parent_id, :model => :category, :token_url => "/categories/token.json" %>
1404
+ 9: </p>
1405
+ 10: <%= f.submit %>
1406
+ 11: <% end %>
1407
+ app/views/categories/_form.html.erb:8:in `block in _app_views_categories__form_html_erb__4160056059248822195_2165481000'
1408
+ app/views/categories/_form.html.erb:1:in `_app_views_categories__form_html_erb__4160056059248822195_2165481000'
1409
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb__4270653422052904974_2166756260'
1410
+
1411
+
1412
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1413
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1414
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.6ms)
1415
+
1416
+
1417
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:03:25 +0200
1418
+ Connecting to database specified by database.yml
1419
+ Processing by CategoriesController#new as HTML
1420
+ Rendered categories/_form.html.erb (13.4ms)
1421
+ Rendered categories/new.html.erb within layouts/application (18.8ms)
1422
+ Completed 200 OK in 108ms (Views: 64.6ms | ActiveRecord: 1.6ms)
1423
+
1424
+
1425
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:03:25 +0200
1426
+ Served asset /application.css - 304 Not Modified (2ms)
1427
+
1428
+
1429
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:03:25 +0200
1430
+ Served asset /token-input-facebook.css - 304 Not Modified (2ms)
1431
+
1432
+
1433
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:03:25 +0200
1434
+ Served asset /jquery.js - 304 Not Modified (7ms)
1435
+
1436
+
1437
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:03:25 +0200
1438
+ Served asset /jquery.tokeninput.js - 304 Not Modified (2ms)
1439
+
1440
+
1441
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:03:25 +0200
1442
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1443
+
1444
+
1445
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:03:25 +0200
1446
+ Served asset /application.js - 304 Not Modified (5ms)
1447
+
1448
+
1449
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:03:52 +0200
1450
+ Connecting to database specified by database.yml
1451
+ Processing by CategoriesController#new as HTML
1452
+ Rendered categories/_form.html.erb (17.6ms)
1453
+ Rendered categories/new.html.erb within layouts/application (23.5ms)
1454
+ Completed 200 OK in 113ms (Views: 66.5ms | ActiveRecord: 1.8ms)
1455
+
1456
+
1457
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:03:52 +0200
1458
+ Served asset /application.css - 304 Not Modified (3ms)
1459
+
1460
+
1461
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:03:52 +0200
1462
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1463
+
1464
+
1465
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:03:52 +0200
1466
+ Served asset /token-input-facebook.css - 304 Not Modified (2ms)
1467
+
1468
+
1469
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:03:52 +0200
1470
+ Served asset /jquery.js - 304 Not Modified (3ms)
1471
+
1472
+
1473
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:03:52 +0200
1474
+ Served asset /application.js - 304 Not Modified (33ms)
1475
+
1476
+
1477
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:03:52 +0200
1478
+ Served asset /jquery.tokeninput.js - 304 Not Modified (2ms)
1479
+
1480
+
1481
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:04:40 +0200
1482
+ Processing by CategoriesController#new as HTML
1483
+ Rendered categories/_form.html.erb (18.4ms)
1484
+ Rendered categories/new.html.erb within layouts/application (19.2ms)
1485
+ Completed 200 OK in 25ms (Views: 24.9ms | ActiveRecord: 0.0ms)
1486
+
1487
+
1488
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:04:40 +0200
1489
+ Served asset /application.css - 304 Not Modified (0ms)
1490
+
1491
+
1492
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:04:40 +0200
1493
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1494
+
1495
+
1496
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:04:40 +0200
1497
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
1498
+
1499
+
1500
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:04:40 +0200
1501
+ Served asset /jquery.js - 304 Not Modified (0ms)
1502
+
1503
+
1504
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:04:40 +0200
1505
+ Served asset /application.js - 304 Not Modified (0ms)
1506
+
1507
+
1508
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:04:40 +0200
1509
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1510
+
1511
+
1512
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:05:40 +0200
1513
+ Connecting to database specified by database.yml
1514
+ Processing by CategoriesController#new as HTML
1515
+ Rendered categories/_form.html.erb (11.7ms)
1516
+ Rendered categories/new.html.erb within layouts/application (16.1ms)
1517
+ Completed 200 OK in 74ms (Views: 36.3ms | ActiveRecord: 1.5ms)
1518
+
1519
+
1520
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:05:40 +0200
1521
+ Served asset /application.css - 304 Not Modified (6ms)
1522
+
1523
+
1524
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:05:40 +0200
1525
+ Served asset /token-input-facebook.css - 304 Not Modified (2ms)
1526
+
1527
+
1528
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:05:40 +0200
1529
+ Served asset /jquery.js - 304 Not Modified (3ms)
1530
+
1531
+
1532
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:05:40 +0200
1533
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1534
+
1535
+
1536
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:05:40 +0200
1537
+ Served asset /jquery.tokeninput.js - 304 Not Modified (2ms)
1538
+
1539
+
1540
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:05:40 +0200
1541
+ Served asset /application.js - 304 Not Modified (6ms)
1542
+
1543
+
1544
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:06:19 +0200
1545
+ Connecting to database specified by database.yml
1546
+ Processing by CategoriesController#new as HTML
1547
+ Rendered categories/_form.html.erb (11.9ms)
1548
+ Rendered categories/new.html.erb within layouts/application (17.6ms)
1549
+ Completed 200 OK in 78ms (Views: 37.1ms | ActiveRecord: 1.7ms)
1550
+
1551
+
1552
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:06:19 +0200
1553
+ Served asset /application.css - 304 Not Modified (6ms)
1554
+
1555
+
1556
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:06:19 +0200
1557
+ Served asset /token-input-facebook.css - 304 Not Modified (2ms)
1558
+
1559
+
1560
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:19 +0200
1561
+ Served asset /jquery.js - 304 Not Modified (2ms)
1562
+
1563
+
1564
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:19 +0200
1565
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
1566
+
1567
+
1568
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:19 +0200
1569
+ Served asset /jquery.tokeninput.js - 304 Not Modified (1ms)
1570
+
1571
+
1572
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:19 +0200
1573
+ Served asset /application.js - 304 Not Modified (7ms)
1574
+
1575
+
1576
+ Started GET "/categories/token.json?q=f" for 127.0.0.1 at 2012-10-12 13:06:21 +0200
1577
+ Processing by CategoriesController#token as JSON
1578
+ Parameters: {"q"=>"f"}
1579
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%f%')
1580
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
1581
+
1582
+
1583
+ Started GET "/categories/token.json?q=+" for 127.0.0.1 at 2012-10-12 13:06:22 +0200
1584
+ Processing by CategoriesController#token as JSON
1585
+ Parameters: {"q"=>" "}
1586
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '% %')
1587
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
1588
+
1589
+
1590
+ Started POST "/categories" for 127.0.0.1 at 2012-10-12 13:06:25 +0200
1591
+ Processing by CategoriesController#create as HTML
1592
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"2av1uH15caF6Mz+lKlJW9cNDGASdZWyvFy3FWznlwS0=", "category"=>{"name"=>"", "parent_id"=>"3"}, "commit"=>"Create Category"}
1593
+  (0.1ms) begin transaction
1594
+ SQL (5.6ms) INSERT INTO "categories" ("created_at", "name", "parent_id", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 12 Oct 2012 11:06:25 UTC +00:00], ["name", ""], ["parent_id", 3], ["updated_at", Fri, 12 Oct 2012 11:06:25 UTC +00:00]]
1595
+  (0.9ms) commit transaction
1596
+ Redirected to http://localhost:3000/categories
1597
+ Completed 302 Found in 11ms (ActiveRecord: 6.6ms)
1598
+
1599
+
1600
+ Started GET "/categories" for 127.0.0.1 at 2012-10-12 13:06:25 +0200
1601
+ Processing by CategoriesController#index as HTML
1602
+ Category Load (0.1ms) SELECT "categories".* FROM "categories"
1603
+ Rendered categories/index.html.erb within layouts/application (1.5ms)
1604
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
1605
+
1606
+
1607
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:06:25 +0200
1608
+ Served asset /application.css - 304 Not Modified (0ms)
1609
+
1610
+
1611
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:06:25 +0200
1612
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
1613
+
1614
+
1615
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:26 +0200
1616
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1617
+
1618
+
1619
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:26 +0200
1620
+ Served asset /jquery.js - 304 Not Modified (0ms)
1621
+
1622
+
1623
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:26 +0200
1624
+ Served asset /application.js - 304 Not Modified (0ms)
1625
+
1626
+
1627
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:26 +0200
1628
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1629
+
1630
+
1631
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:06:27 +0200
1632
+ Processing by CategoriesController#new as HTML
1633
+ Rendered categories/_form.html.erb (3.8ms)
1634
+ Rendered categories/new.html.erb within layouts/application (4.6ms)
1635
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
1636
+
1637
+
1638
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:06:27 +0200
1639
+ Served asset /application.css - 304 Not Modified (0ms)
1640
+
1641
+
1642
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:06:27 +0200
1643
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
1644
+
1645
+
1646
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:27 +0200
1647
+ Served asset /jquery.js - 304 Not Modified (0ms)
1648
+
1649
+
1650
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:27 +0200
1651
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1652
+
1653
+
1654
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:27 +0200
1655
+ Served asset /application.js - 304 Not Modified (0ms)
1656
+
1657
+
1658
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:06:27 +0200
1659
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1660
+
1661
+
1662
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:14:35 +0200
1663
+ Connecting to database specified by database.yml
1664
+ Processing by CategoriesController#new as HTML
1665
+ Rendered categories/_form.html.erb (10.8ms)
1666
+ Rendered categories/new.html.erb within layouts/application (15.4ms)
1667
+ Compiled token-input-facebook.css (0ms) (pid 2185)
1668
+ Compiled application.css (4ms) (pid 2185)
1669
+ Compiled jquery.js (22ms) (pid 2185)
1670
+ Compiled jquery_ujs.js (0ms) (pid 2185)
1671
+ Compiled jquery.tokeninput.js (0ms) (pid 2185)
1672
+ Compiled application.js (36ms) (pid 2185)
1673
+ Completed 200 OK in 121ms (Views: 82.3ms | ActiveRecord: 1.3ms)
1674
+
1675
+
1676
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:14:35 +0200
1677
+ Served asset /token-input-facebook.css - 304 Not Modified (2ms)
1678
+
1679
+
1680
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:14:35 +0200
1681
+ Served asset /application.css - 304 Not Modified (4ms)
1682
+
1683
+
1684
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:14:35 +0200
1685
+ Served asset /jquery.tokeninput.js - 304 Not Modified (1ms)
1686
+
1687
+
1688
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:14:35 +0200
1689
+ Served asset /application.js - 304 Not Modified (4ms)
1690
+
1691
+
1692
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:14:35 +0200
1693
+ Served asset /jquery.js - 304 Not Modified (2ms)
1694
+
1695
+
1696
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:14:36 +0200
1697
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1698
+
1699
+
1700
+ Started GET "/categories/token.json?q=w" for 127.0.0.1 at 2012-10-12 13:14:39 +0200
1701
+
1702
+ AbstractController::ActionNotFound (The action 'show' could not be found for CategoriesController):
1703
+ actionpack (3.2.8) lib/abstract_controller/base.rb:116:in `process'
1704
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
1705
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
1706
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1707
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
1708
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
1709
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1710
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
1711
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
1712
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
1713
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1714
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
1715
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1716
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1717
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1718
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
1719
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1720
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
1721
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1722
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1723
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
1724
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
1725
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1726
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1727
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1991360950574630941__call__2041765774576432645__callbacks'
1728
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
1729
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1730
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
1731
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1732
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1733
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1734
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1735
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1736
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1737
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1738
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1739
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1740
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1741
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1742
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1743
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1744
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1745
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1746
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1747
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1748
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1749
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1750
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1751
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1752
+
1753
+
1754
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms)
1755
+
1756
+
1757
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:17:06 +0200
1758
+ Processing by CategoriesController#new as HTML
1759
+ Rendered categories/_form.html.erb (4.9ms)
1760
+ Rendered categories/new.html.erb within layouts/application (5.8ms)
1761
+ Completed 200 OK in 31ms (Views: 12.1ms | ActiveRecord: 0.6ms)
1762
+
1763
+
1764
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:17:07 +0200
1765
+ Served asset /application.css - 304 Not Modified (0ms)
1766
+
1767
+
1768
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:17:07 +0200
1769
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
1770
+
1771
+
1772
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:17:07 +0200
1773
+ Served asset /jquery.js - 304 Not Modified (0ms)
1774
+
1775
+
1776
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:17:07 +0200
1777
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1778
+
1779
+
1780
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:17:07 +0200
1781
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1782
+
1783
+
1784
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:17:07 +0200
1785
+ Served asset /application.js - 304 Not Modified (0ms)
1786
+
1787
+
1788
+ Started GET "/categories/token.json?q=d" for 127.0.0.1 at 2012-10-12 13:17:08 +0200
1789
+ Processing by CategoriesController#token as JSON
1790
+ Parameters: {"q"=>"d"}
1791
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%d%')
1792
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
1793
+
1794
+
1795
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 13:19:02 +0200
1796
+ Connecting to database specified by database.yml
1797
+ Processing by CategoriesController#new as HTML
1798
+ Rendered categories/_form.html.erb (22.6ms)
1799
+ Rendered categories/new.html.erb within layouts/application (29.1ms)
1800
+ Compiled token-input-facebook.css (0ms) (pid 4866)
1801
+ Compiled application.css (4ms) (pid 4866)
1802
+ Compiled jquery.js (31ms) (pid 4866)
1803
+ Compiled jquery_ujs.js (0ms) (pid 4866)
1804
+ Compiled jquery.tokeninput.js (0ms) (pid 4866)
1805
+ Compiled application.js (48ms) (pid 4866)
1806
+ Completed 200 OK in 178ms (Views: 115.2ms | ActiveRecord: 3.0ms)
1807
+
1808
+
1809
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 13:19:02 +0200
1810
+ Served asset /application.css - 304 Not Modified (7ms)
1811
+
1812
+
1813
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 13:19:02 +0200
1814
+ Served asset /token-input-facebook.css - 304 Not Modified (5ms)
1815
+
1816
+
1817
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 13:19:02 +0200
1818
+ Served asset /jquery.js - 304 Not Modified (2ms)
1819
+
1820
+
1821
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 13:19:02 +0200
1822
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
1823
+
1824
+
1825
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 13:19:02 +0200
1826
+ Served asset /application.js - 304 Not Modified (4ms)
1827
+
1828
+
1829
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 13:19:02 +0200
1830
+ Served asset /jquery.tokeninput.js - 304 Not Modified (1ms)
1831
+
1832
+
1833
+ Started GET "/categories/token?q=d" for 127.0.0.1 at 2012-10-12 13:19:04 +0200
1834
+ Processing by CategoriesController#token as JSON
1835
+ Parameters: {"q"=>"d"}
1836
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%d%')
1837
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms)
1838
+
1839
+
1840
+ Started GET "/categories/token?q=n" for 127.0.0.1 at 2012-10-12 13:19:06 +0200
1841
+ Processing by CategoriesController#token as JSON
1842
+ Parameters: {"q"=>"n"}
1843
+ Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%n%')
1844
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
1845
+
1846
+
1847
+ Started GET "/admin" for 127.0.0.1 at 2012-10-12 15:53:19 +0200
1848
+
1849
+ ActionController::RoutingError (No route matches [GET] "/admin"):
1850
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1851
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1852
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1853
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1854
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1855
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1856
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1857
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1858
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1859
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1860
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1861
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1862
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1863
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1864
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1865
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1866
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1867
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1868
+
1869
+
1870
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1871
+
1872
+
1873
+ Started GET "/" for 127.0.0.1 at 2012-10-12 18:34:02 +0200
1874
+ Connecting to database specified by database.yml
1875
+ Processing by CategoriesController#index as HTML
1876
+ Category Load (22.9ms) SELECT "categories".* FROM "categories" 
1877
+ Rendered categories/index.html.erb within layouts/application (4.5ms)
1878
+ Completed 200 OK in 203ms (Views: 126.0ms | ActiveRecord: 24.9ms)
1879
+
1880
+
1881
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 18:34:03 +0200
1882
+ Served asset /application.css - 304 Not Modified (3ms)
1883
+
1884
+
1885
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 18:34:03 +0200
1886
+ Served asset /token-input-facebook.css - 304 Not Modified (2ms)
1887
+
1888
+
1889
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 18:34:03 +0200
1890
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
1891
+
1892
+
1893
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 18:34:03 +0200
1894
+ Served asset /jquery.js - 304 Not Modified (6ms)
1895
+
1896
+
1897
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 18:34:03 +0200
1898
+ Served asset /application.js - 304 Not Modified (5ms)
1899
+
1900
+
1901
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 18:34:03 +0200
1902
+ Served asset /jquery.tokeninput.js - 304 Not Modified (2ms)
1903
+
1904
+
1905
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 18:34:05 +0200
1906
+ Processing by CategoriesController#new as HTML
1907
+ Rendered categories/_form.html.erb (47.0ms)
1908
+ Rendered categories/new.html.erb within layouts/application (91.4ms)
1909
+ Completed 500 Internal Server Error in 176ms
1910
+
1911
+ ActionView::Template::Error (uninitialized constant Parent):
1912
+ 5: </p>
1913
+ 6: <p>
1914
+ 7: <%= f.label :parent_id %>
1915
+ 8: <%= f.token_field :parent_id, :token_url => token_categories_path %>
1916
+ 9: </p>
1917
+ 10: <%= f.submit %>
1918
+ 11: <% end %>
1919
+ app/views/categories/_form.html.erb:8:in `block in _app_views_categories__form_html_erb__3710308626687115792_2179179080'
1920
+ app/views/categories/_form.html.erb:1:in `_app_views_categories__form_html_erb__3710308626687115792_2179179080'
1921
+ app/views/categories/new.html.erb:2:in `_app_views_categories_new_html_erb___4559839763195524759_2164109640'
1922
+
1923
+
1924
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1925
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1926
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
1927
+
1928
+
1929
+ Started GET "/categories/new" for 127.0.0.1 at 2012-10-12 18:37:45 +0200
1930
+ Processing by CategoriesController#new as HTML
1931
+ Rendered categories/_form.html.erb (93.4ms)
1932
+ Rendered categories/new.html.erb within layouts/application (112.4ms)
1933
+ Completed 200 OK in 156ms (Views: 155.7ms | ActiveRecord: 0.0ms)
1934
+
1935
+
1936
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-12 18:37:45 +0200
1937
+ Served asset /application.css - 304 Not Modified (0ms)
1938
+
1939
+
1940
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-12 18:37:45 +0200
1941
+ Served asset /jquery.js - 304 Not Modified (0ms)
1942
+
1943
+
1944
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-12 18:37:45 +0200
1945
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1946
+
1947
+
1948
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-12 18:37:45 +0200
1949
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
1950
+
1951
+
1952
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-12 18:37:45 +0200
1953
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
1954
+
1955
+
1956
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-12 18:37:45 +0200
1957
+ Served asset /application.js - 304 Not Modified (0ms)
1958
+ Connecting to database specified by database.yml
1959
+ Connecting to database specified by database.yml
1960
+
1961
+
1962
+ Started GET "/products" for 127.0.0.1 at 2012-10-13 02:00:36 +0200
1963
+ Connecting to database specified by database.yml
1964
+ Processing by ProductsController#index as HTML
1965
+ Completed 500 Internal Server Error in 44ms
1966
+
1967
+ ActiveRecord::StatementInvalid (Could not find table 'products'):
1968
+ app/controllers/products_controller.rb:3:in `index'
1969
+
1970
+
1971
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
1972
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
1973
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.7ms)
1974
+ Connecting to database specified by database.yml
1975
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1976
+ Migrating to CreateCategories (20121012100526)
1977
+ Migrating to CreateProducts (20121012235444)
1978
+  (0.1ms) select sqlite_version(*)
1979
+  (0.1ms) begin transaction
1980
+  (0.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1981
+  (22.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121012235444')
1982
+  (22.4ms) commit transaction
1983
+ Migrating to CreateProductHasCategories (20121012235509)
1984
+  (0.1ms) begin transaction
1985
+  (0.4ms) CREATE TABLE "product_has_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "product_id" integer, "category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1986
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121012235509')
1987
+  (1.0ms) commit transaction
1988
+  (0.4ms) select sqlite_version(*)
1989
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1990
+  (0.1ms) PRAGMA index_list("categories")
1991
+  (0.0ms) PRAGMA index_list("product_has_categories")
1992
+  (0.0ms) PRAGMA index_list("products")
1993
+
1994
+
1995
+ Started GET "/products" for 127.0.0.1 at 2012-10-13 12:08:51 +0200
1996
+ Connecting to database specified by database.yml
1997
+ Processing by ProductsController#index as HTML
1998
+ Product Load (21.7ms) SELECT "products".* FROM "products" 
1999
+ Rendered products/index.html.erb within layouts/application (2.6ms)
2000
+ Compiled token-input-facebook.css (0ms) (pid 98860)
2001
+ Compiled application.css (6ms) (pid 98860)
2002
+ Compiled jquery.js (5ms) (pid 98860)
2003
+ Compiled jquery_ujs.js (0ms) (pid 98860)
2004
+ Compiled jquery.tokeninput.js (0ms) (pid 98860)
2005
+ Compiled application.js (229ms) (pid 98860)
2006
+ Completed 200 OK in 539ms (Views: 473.1ms | ActiveRecord: 23.5ms)
2007
+
2008
+
2009
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2010
+ Served asset /application.css - 304 Not Modified (3ms)
2011
+
2012
+
2013
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2014
+ Served asset /jquery.js - 304 Not Modified (7ms)
2015
+
2016
+
2017
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2018
+ Served asset /token-input-facebook.css - 304 Not Modified (3ms)
2019
+
2020
+
2021
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2022
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
2023
+
2024
+
2025
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2026
+ Served asset /application.js - 304 Not Modified (5ms)
2027
+
2028
+
2029
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2030
+ Served asset /jquery.tokeninput.js - 304 Not Modified (1ms)
2031
+
2032
+
2033
+ Started GET "/products" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2034
+ Processing by ProductsController#index as HTML
2035
+ Product Load (0.1ms) SELECT "products".* FROM "products"
2036
+ Rendered products/index.html.erb within layouts/application (0.3ms)
2037
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
2038
+
2039
+
2040
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2041
+ Served asset /application.css - 304 Not Modified (0ms)
2042
+
2043
+
2044
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2045
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2046
+
2047
+
2048
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2049
+ Served asset /jquery.js - 304 Not Modified (0ms)
2050
+
2051
+
2052
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2053
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2054
+
2055
+
2056
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2057
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2058
+
2059
+
2060
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:53 +0200
2061
+ Served asset /application.js - 304 Not Modified (0ms)
2062
+
2063
+
2064
+ Started GET "/products/new" for 127.0.0.1 at 2012-10-13 12:08:55 +0200
2065
+ Processing by ProductsController#new as HTML
2066
+  (10.2ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" IS NULL
2067
+  (0.2ms) SELECT COUNT(*) FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" IS NULL
2068
+ Rendered products/_form.html.erb (168.4ms)
2069
+ Rendered products/new.html.erb within layouts/application (172.1ms)
2070
+ Completed 200 OK in 223ms (Views: 205.9ms | ActiveRecord: 11.0ms)
2071
+
2072
+
2073
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:08:56 +0200
2074
+ Served asset /application.css - 304 Not Modified (0ms)
2075
+
2076
+
2077
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:08:56 +0200
2078
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2079
+
2080
+
2081
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:56 +0200
2082
+ Served asset /jquery.js - 304 Not Modified (0ms)
2083
+
2084
+
2085
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:56 +0200
2086
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2087
+
2088
+
2089
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:56 +0200
2090
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2091
+
2092
+
2093
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:08:56 +0200
2094
+ Served asset /application.js - 304 Not Modified (0ms)
2095
+
2096
+
2097
+ Started GET "/categories/token?q=p" for 127.0.0.1 at 2012-10-13 12:08:59 +0200
2098
+ Processing by CategoriesController#token as JSON
2099
+ Parameters: {"q"=>"p"}
2100
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%p%')
2101
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2102
+
2103
+
2104
+ Started GET "/categories/token?q=n" for 127.0.0.1 at 2012-10-13 12:09:01 +0200
2105
+ Processing by CategoriesController#token as JSON
2106
+ Parameters: {"q"=>"n"}
2107
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%n%')
2108
+ Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.2ms)
2109
+
2110
+
2111
+ Started GET "/categories/token?q=s" for 127.0.0.1 at 2012-10-13 12:09:04 +0200
2112
+ Processing by CategoriesController#token as JSON
2113
+ Parameters: {"q"=>"s"}
2114
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE (categories.name like '%s%')
2115
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
2116
+
2117
+
2118
+ Started POST "/products" for 127.0.0.1 at 2012-10-13 12:09:06 +0200
2119
+ Processing by ProductsController#create as HTML
2120
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"1GQQLhbv/PFJeStXdkdDsMY8Vf3jPqlo8ns0NEg/4t0=", "product"=>{"name"=>"hello", "category_ids"=>"1,2"}, "commit"=>"Create Product"}
2121
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" IN (1, 2)
2122
+  (0.0ms) begin transaction
2123
+ SQL (30.5ms) INSERT INTO "products" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 13 Oct 2012 10:09:06 UTC +00:00], ["name", "hello"], ["updated_at", Sat, 13 Oct 2012 10:09:06 UTC +00:00]]
2124
+ SQL (0.4ms) INSERT INTO "product_has_categories" ("category_id", "created_at", "product_id", "updated_at") VALUES (?, ?, ?, ?) [["category_id", 1], ["created_at", Sat, 13 Oct 2012 10:09:06 UTC +00:00], ["product_id", 1], ["updated_at", Sat, 13 Oct 2012 10:09:06 UTC +00:00]]
2125
+ SQL (0.3ms) INSERT INTO "product_has_categories" ("category_id", "created_at", "product_id", "updated_at") VALUES (?, ?, ?, ?) [["category_id", 2], ["created_at", Sat, 13 Oct 2012 10:09:06 UTC +00:00], ["product_id", 1], ["updated_at", Sat, 13 Oct 2012 10:09:06 UTC +00:00]]
2126
+  (1.5ms) commit transaction
2127
+ Redirected to http://localhost:3000/products
2128
+ Completed 302 Found in 51ms (ActiveRecord: 33.0ms)
2129
+
2130
+
2131
+ Started GET "/products" for 127.0.0.1 at 2012-10-13 12:09:06 +0200
2132
+ Processing by ProductsController#index as HTML
2133
+ Product Load (0.2ms) SELECT "products".* FROM "products"
2134
+ Rendered products/index.html.erb within layouts/application (43.9ms)
2135
+ Completed 500 Internal Server Error in 48ms
2136
+
2137
+ ActionView::Template::Error (undefined method `parent_ids' for #<Product:0x00000100f5e4b0>):
2138
+ 3: <ul>
2139
+ 4: <% @products.each do |product| %>
2140
+ 5: <%= content_tag_for(:li, product) do %>
2141
+ 6: <%= product.name %> - <%= product.parent_ids.inspect %>
2142
+ 7: <% end %>
2143
+ 8: <% end %>
2144
+ 9: </ul>
2145
+ app/views/products/index.html.erb:6:in `block (2 levels) in _app_views_products_index_html_erb__2022835505448971706_2154178040'
2146
+ app/views/products/index.html.erb:5:in `block in _app_views_products_index_html_erb__2022835505448971706_2154178040'
2147
+ app/views/products/index.html.erb:4:in `each'
2148
+ app/views/products/index.html.erb:4:in `_app_views_products_index_html_erb__2022835505448971706_2154178040'
2149
+
2150
+
2151
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
2152
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2153
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
2154
+
2155
+
2156
+ Started GET "/products" for 127.0.0.1 at 2012-10-13 12:09:20 +0200
2157
+ Processing by ProductsController#index as HTML
2158
+ Product Load (0.2ms) SELECT "products".* FROM "products" 
2159
+  (0.2ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2160
+ Rendered products/index.html.erb within layouts/application (3.5ms)
2161
+ Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.5ms)
2162
+
2163
+
2164
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:09:20 +0200
2165
+ Served asset /application.css - 304 Not Modified (0ms)
2166
+
2167
+
2168
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:09:20 +0200
2169
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2170
+
2171
+
2172
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:20 +0200
2173
+ Served asset /jquery.js - 304 Not Modified (0ms)
2174
+
2175
+
2176
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:20 +0200
2177
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2178
+
2179
+
2180
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:20 +0200
2181
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2182
+
2183
+
2184
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:20 +0200
2185
+ Served asset /application.js - 304 Not Modified (0ms)
2186
+
2187
+
2188
+ Started GET "/products/new" for 127.0.0.1 at 2012-10-13 12:09:26 +0200
2189
+ Processing by ProductsController#new as HTML
2190
+  (0.2ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" IS NULL
2191
+  (0.3ms) SELECT COUNT(*) FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" IS NULL
2192
+ Rendered products/_form.html.erb (7.2ms)
2193
+ Rendered products/new.html.erb within layouts/application (8.0ms)
2194
+ Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.5ms)
2195
+
2196
+
2197
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:09:26 +0200
2198
+ Served asset /application.css - 304 Not Modified (0ms)
2199
+
2200
+
2201
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:09:26 +0200
2202
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2203
+
2204
+
2205
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:26 +0200
2206
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2207
+
2208
+
2209
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:26 +0200
2210
+ Served asset /jquery.js - 304 Not Modified (0ms)
2211
+
2212
+
2213
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:26 +0200
2214
+ Served asset /application.js - 304 Not Modified (0ms)
2215
+
2216
+
2217
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:26 +0200
2218
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2219
+
2220
+
2221
+ Started POST "/products" for 127.0.0.1 at 2012-10-13 12:09:28 +0200
2222
+ Processing by ProductsController#create as HTML
2223
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"1GQQLhbv/PFJeStXdkdDsMY8Vf3jPqlo8ns0NEg/4t0=", "product"=>{"name"=>"novy", "category_ids"=>""}, "commit"=>"Create Product"}
2224
+  (0.1ms) begin transaction
2225
+ SQL (0.4ms) INSERT INTO "products" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Sat, 13 Oct 2012 10:09:28 UTC +00:00], ["name", "novy"], ["updated_at", Sat, 13 Oct 2012 10:09:28 UTC +00:00]]
2226
+  (1.8ms) commit transaction
2227
+ Redirected to http://localhost:3000/products
2228
+ Completed 302 Found in 5ms (ActiveRecord: 2.3ms)
2229
+
2230
+
2231
+ Started GET "/products" for 127.0.0.1 at 2012-10-13 12:09:28 +0200
2232
+ Processing by ProductsController#index as HTML
2233
+ Product Load (0.3ms) SELECT "products".* FROM "products"
2234
+  (0.2ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2235
+  (0.2ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 2
2236
+ Rendered products/index.html.erb within layouts/application (2.9ms)
2237
+ Completed 200 OK in 11ms (Views: 8.3ms | ActiveRecord: 0.7ms)
2238
+
2239
+
2240
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:09:28 +0200
2241
+ Served asset /application.css - 304 Not Modified (0ms)
2242
+
2243
+
2244
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:09:28 +0200
2245
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2246
+
2247
+
2248
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:28 +0200
2249
+ Served asset /jquery.js - 304 Not Modified (0ms)
2250
+
2251
+
2252
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:28 +0200
2253
+ Served asset /application.js - 304 Not Modified (0ms)
2254
+
2255
+
2256
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:28 +0200
2257
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2258
+
2259
+
2260
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:09:28 +0200
2261
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2262
+
2263
+
2264
+ Started GET "/products" for 127.0.0.1 at 2012-10-13 12:24:30 +0200
2265
+ Processing by ProductsController#index as HTML
2266
+ Product Load (0.1ms) SELECT "products".* FROM "products" 
2267
+  (0.1ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2268
+  (0.1ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 2
2269
+ Rendered products/index.html.erb within layouts/application (3.8ms)
2270
+ Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.4ms)
2271
+
2272
+
2273
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:24:30 +0200
2274
+ Served asset /application.css - 304 Not Modified (0ms)
2275
+
2276
+
2277
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:24:30 +0200
2278
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2279
+
2280
+
2281
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:24:30 +0200
2282
+ Served asset /application.js - 304 Not Modified (0ms)
2283
+
2284
+
2285
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:24:30 +0200
2286
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2287
+
2288
+
2289
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:24:30 +0200
2290
+ Served asset /jquery.js - 304 Not Modified (0ms)
2291
+
2292
+
2293
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:24:30 +0200
2294
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2295
+
2296
+
2297
+ Started GET "/products/new" for 127.0.0.1 at 2012-10-13 12:24:42 +0200
2298
+ Processing by ProductsController#new as HTML
2299
+  (0.1ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" IS NULL
2300
+  (0.1ms) SELECT COUNT(*) FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" IS NULL
2301
+ Rendered products/_form.html.erb (4.6ms)
2302
+ Rendered products/new.html.erb within layouts/application (5.2ms)
2303
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.2ms)
2304
+
2305
+
2306
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:24:42 +0200
2307
+ Served asset /application.css - 304 Not Modified (0ms)
2308
+
2309
+
2310
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:24:42 +0200
2311
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2312
+
2313
+
2314
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:24:42 +0200
2315
+ Served asset /jquery.js - 304 Not Modified (0ms)
2316
+
2317
+
2318
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:24:42 +0200
2319
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2320
+
2321
+
2322
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:24:42 +0200
2323
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2324
+
2325
+
2326
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:24:42 +0200
2327
+ Served asset /application.js - 304 Not Modified (0ms)
2328
+
2329
+
2330
+ Started GET "/products/1/edit" for 127.0.0.1 at 2012-10-13 12:24:45 +0200
2331
+
2332
+ AbstractController::ActionNotFound (The action 'edit' could not be found for ProductsController):
2333
+ actionpack (3.2.8) lib/abstract_controller/base.rb:116:in `process'
2334
+ actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
2335
+ actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
2336
+ actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2337
+ actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
2338
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
2339
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2340
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
2341
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
2342
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
2343
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2344
+ actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
2345
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2346
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2347
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2348
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
2349
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2350
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
2351
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2352
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2353
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
2354
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
2355
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2356
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2357
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1490882092580662470__call__3367597246046703916__callbacks'
2358
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
2359
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2360
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
2361
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2362
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2363
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2364
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2365
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2366
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
2367
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
2368
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2369
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2370
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2371
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2372
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2373
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
2374
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
2375
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
2376
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2377
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
2378
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2379
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2380
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2381
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2382
+
2383
+
2384
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms)
2385
+
2386
+
2387
+ Started GET "/products" for 127.0.0.1 at 2012-10-13 12:26:37 +0200
2388
+ Processing by ProductsController#index as HTML
2389
+ Product Load (0.1ms) SELECT "products".* FROM "products"
2390
+  (0.1ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2391
+  (0.2ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 2
2392
+ Rendered products/index.html.erb within layouts/application (29.7ms)
2393
+ Completed 200 OK in 73ms (Views: 63.9ms | ActiveRecord: 1.7ms)
2394
+
2395
+
2396
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:26:37 +0200
2397
+ Served asset /application.css - 304 Not Modified (0ms)
2398
+
2399
+
2400
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:37 +0200
2401
+ Served asset /jquery.js - 304 Not Modified (0ms)
2402
+
2403
+
2404
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:26:37 +0200
2405
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2406
+
2407
+
2408
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:37 +0200
2409
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2410
+
2411
+
2412
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:37 +0200
2413
+ Served asset /application.js - 304 Not Modified (0ms)
2414
+
2415
+
2416
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:37 +0200
2417
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2418
+
2419
+
2420
+ Started GET "/products/1/edit" for 127.0.0.1 at 2012-10-13 12:26:38 +0200
2421
+ Processing by ProductsController#edit as HTML
2422
+ Parameters: {"id"=>"1"}
2423
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
2424
+  (0.2ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2425
+  (0.3ms) SELECT COUNT(*) FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2426
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2427
+ Rendered products/_form.html.erb (10.6ms)
2428
+ Rendered products/edit.html.erb within layouts/application (12.2ms)
2429
+ Completed 200 OK in 19ms (Views: 16.0ms | ActiveRecord: 1.0ms)
2430
+
2431
+
2432
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:26:39 +0200
2433
+ Served asset /application.css - 304 Not Modified (0ms)
2434
+
2435
+
2436
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:26:39 +0200
2437
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2438
+
2439
+
2440
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:39 +0200
2441
+ Served asset /jquery.js - 304 Not Modified (0ms)
2442
+
2443
+
2444
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:39 +0200
2445
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2446
+
2447
+
2448
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:39 +0200
2449
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2450
+
2451
+
2452
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:39 +0200
2453
+ Served asset /application.js - 304 Not Modified (0ms)
2454
+
2455
+
2456
+ Started GET "/products/2/edit" for 127.0.0.1 at 2012-10-13 12:26:46 +0200
2457
+ Processing by ProductsController#edit as HTML
2458
+ Parameters: {"id"=>"2"}
2459
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "2"]]
2460
+  (0.2ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 2
2461
+  (0.2ms) SELECT COUNT(*) FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 2
2462
+ Rendered products/_form.html.erb (6.6ms)
2463
+ Rendered products/edit.html.erb within layouts/application (7.4ms)
2464
+ Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.5ms)
2465
+
2466
+
2467
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:26:46 +0200
2468
+ Served asset /application.css - 304 Not Modified (0ms)
2469
+
2470
+
2471
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:26:46 +0200
2472
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2473
+
2474
+
2475
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:46 +0200
2476
+ Served asset /jquery.js - 304 Not Modified (0ms)
2477
+
2478
+
2479
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:46 +0200
2480
+ Served asset /application.js - 304 Not Modified (0ms)
2481
+
2482
+
2483
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:46 +0200
2484
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2485
+
2486
+
2487
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:46 +0200
2488
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2489
+
2490
+
2491
+ Started GET "/categories" for 127.0.0.1 at 2012-10-13 12:26:52 +0200
2492
+ Processing by CategoriesController#index as HTML
2493
+ Category Load (0.2ms) SELECT "categories".* FROM "categories"
2494
+ Rendered categories/index.html.erb within layouts/application (4.1ms)
2495
+ Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.2ms)
2496
+
2497
+
2498
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:26:52 +0200
2499
+ Served asset /application.css - 304 Not Modified (0ms)
2500
+
2501
+
2502
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:52 +0200
2503
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2504
+
2505
+
2506
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:26:52 +0200
2507
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2508
+
2509
+
2510
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:52 +0200
2511
+ Served asset /jquery.js - 304 Not Modified (0ms)
2512
+
2513
+
2514
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:52 +0200
2515
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2516
+
2517
+
2518
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:52 +0200
2519
+ Served asset /application.js - 304 Not Modified (0ms)
2520
+
2521
+
2522
+ Started GET "/categories/1/edit" for 127.0.0.1 at 2012-10-13 12:26:53 +0200
2523
+ Processing by CategoriesController#edit as HTML
2524
+ Parameters: {"id"=>"1"}
2525
+ Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]]
2526
+ Rendered categories/_form.html.erb (5.9ms)
2527
+ Rendered categories/edit.html.erb within layouts/application (7.4ms)
2528
+ Completed 200 OK in 15ms (Views: 12.5ms | ActiveRecord: 0.3ms)
2529
+
2530
+
2531
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:26:53 +0200
2532
+ Served asset /application.css - 304 Not Modified (0ms)
2533
+
2534
+
2535
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:26:53 +0200
2536
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2537
+
2538
+
2539
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:53 +0200
2540
+ Served asset /jquery.js - 304 Not Modified (0ms)
2541
+
2542
+
2543
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:53 +0200
2544
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2545
+
2546
+
2547
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:53 +0200
2548
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2549
+
2550
+
2551
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:26:53 +0200
2552
+ Served asset /application.js - 304 Not Modified (0ms)
2553
+
2554
+
2555
+ Started GET "/categories/1/edit" for 127.0.0.1 at 2012-10-13 12:27:18 +0200
2556
+ Processing by CategoriesController#edit as HTML
2557
+ Parameters: {"id"=>"1"}
2558
+ Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]]
2559
+ Rendered categories/_form.html.erb (5.9ms)
2560
+ Rendered categories/edit.html.erb within layouts/application (6.8ms)
2561
+ Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.1ms)
2562
+
2563
+
2564
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:27:19 +0200
2565
+ Served asset /application.css - 304 Not Modified (0ms)
2566
+
2567
+
2568
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:27:19 +0200
2569
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2570
+
2571
+
2572
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:27:19 +0200
2573
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2574
+
2575
+
2576
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:27:19 +0200
2577
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2578
+
2579
+
2580
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:27:19 +0200
2581
+ Served asset /application.js - 304 Not Modified (0ms)
2582
+
2583
+
2584
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:27:19 +0200
2585
+ Served asset /jquery.js - 304 Not Modified (0ms)
2586
+
2587
+
2588
+ Started GET "/categories/2/edit" for 127.0.0.1 at 2012-10-13 12:30:18 +0200
2589
+ Processing by CategoriesController#edit as HTML
2590
+ Parameters: {"id"=>"2"}
2591
+ Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "2"]]
2592
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1
2593
+ Rendered categories/_form.html.erb (11.6ms)
2594
+ Rendered categories/edit.html.erb within layouts/application (12.4ms)
2595
+ Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.3ms)
2596
+
2597
+
2598
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:30:18 +0200
2599
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2600
+
2601
+
2602
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:30:18 +0200
2603
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2604
+
2605
+
2606
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:30:18 +0200
2607
+ Served asset /application.js - 304 Not Modified (0ms)
2608
+
2609
+
2610
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:30:18 +0200
2611
+ Served asset /jquery.js - 304 Not Modified (0ms)
2612
+
2613
+
2614
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:30:18 +0200
2615
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2616
+
2617
+
2618
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:30:18 +0200
2619
+ Served asset /application.css - 304 Not Modified (0ms)
2620
+
2621
+
2622
+ Started GET "/products" for 127.0.0.1 at 2012-10-13 12:32:03 +0200
2623
+ Processing by ProductsController#index as HTML
2624
+ Product Load (0.2ms) SELECT "products".* FROM "products" 
2625
+  (0.2ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2626
+  (0.1ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 2
2627
+ Rendered products/index.html.erb within layouts/application (4.1ms)
2628
+ Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.5ms)
2629
+
2630
+
2631
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:32:04 +0200
2632
+ Served asset /application.css - 304 Not Modified (0ms)
2633
+
2634
+
2635
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:32:04 +0200
2636
+ Served asset /jquery.js - 304 Not Modified (0ms)
2637
+
2638
+
2639
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:32:04 +0200
2640
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2641
+
2642
+
2643
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:32:04 +0200
2644
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2645
+
2646
+
2647
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:32:04 +0200
2648
+ Served asset /application.js - 304 Not Modified (0ms)
2649
+
2650
+
2651
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:32:04 +0200
2652
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2653
+
2654
+
2655
+ Started GET "/products/1/edit" for 127.0.0.1 at 2012-10-13 12:32:07 +0200
2656
+ Processing by ProductsController#edit as HTML
2657
+ Parameters: {"id"=>"1"}
2658
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
2659
+  (0.2ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2660
+  (0.1ms) SELECT COUNT(*) FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2661
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2662
+ Rendered products/_form.html.erb (8.9ms)
2663
+ Rendered products/edit.html.erb within layouts/application (9.8ms)
2664
+ Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.6ms)
2665
+
2666
+
2667
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:32:07 +0200
2668
+ Served asset /application.css - 304 Not Modified (0ms)
2669
+
2670
+
2671
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:32:07 +0200
2672
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2673
+
2674
+
2675
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:32:07 +0200
2676
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2677
+
2678
+
2679
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:32:07 +0200
2680
+ Served asset /jquery.js - 304 Not Modified (0ms)
2681
+
2682
+
2683
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:32:07 +0200
2684
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2685
+
2686
+
2687
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:32:07 +0200
2688
+ Served asset /application.js - 304 Not Modified (0ms)
2689
+
2690
+
2691
+ Started GET "/products/1/edit" for 127.0.0.1 at 2012-10-13 12:35:21 +0200
2692
+ Processing by ProductsController#edit as HTML
2693
+ Parameters: {"id"=>"1"}
2694
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT 1 [["id", "1"]]
2695
+  (0.1ms) SELECT "categories".id FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2696
+  (0.1ms) SELECT COUNT(*) FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2697
+ Category Load (0.1ms) SELECT "categories".* FROM "categories" INNER JOIN "product_has_categories" ON "categories"."id" = "product_has_categories"."category_id" WHERE "product_has_categories"."product_id" = 1
2698
+ Rendered products/_form.html.erb (5.2ms)
2699
+ Rendered products/edit.html.erb within layouts/application (5.9ms)
2700
+ Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.5ms)
2701
+
2702
+
2703
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:35:21 +0200
2704
+ Served asset /application.css - 304 Not Modified (0ms)
2705
+
2706
+
2707
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:35:21 +0200
2708
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2709
+
2710
+
2711
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:35:21 +0200
2712
+ Served asset /jquery.js - 304 Not Modified (0ms)
2713
+
2714
+
2715
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:35:21 +0200
2716
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2717
+
2718
+
2719
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:35:21 +0200
2720
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2721
+
2722
+
2723
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:35:21 +0200
2724
+ Served asset /application.js - 304 Not Modified (0ms)
2725
+
2726
+
2727
+ Started GET "/category/1/edit" for 127.0.0.1 at 2012-10-13 12:36:20 +0200
2728
+
2729
+ ActionController::RoutingError (No route matches [GET] "/category/1/edit"):
2730
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2731
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2732
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
2733
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
2734
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2735
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2736
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2737
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2738
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2739
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
2740
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
2741
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
2742
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2743
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
2744
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2745
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
2746
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
2747
+ /Users/mirrec/.rvm/rubies/ruby-1.9.3-head/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
2748
+
2749
+
2750
+ Rendered /Users/mirrec/.rvm/gems/ruby-1.9.3-head@wowbox/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
2751
+
2752
+
2753
+ Started GET "/categories/1/edit" for 127.0.0.1 at 2012-10-13 12:36:24 +0200
2754
+ Processing by CategoriesController#edit as HTML
2755
+ Parameters: {"id"=>"1"}
2756
+ Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]]
2757
+ Rendered categories/_form.html.erb (3.6ms)
2758
+ Rendered categories/edit.html.erb within layouts/application (4.3ms)
2759
+ Completed 200 OK in 42ms (Views: 40.9ms | ActiveRecord: 0.1ms)
2760
+
2761
+
2762
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:24 +0200
2763
+ Served asset /jquery.js - 304 Not Modified (0ms)
2764
+
2765
+
2766
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:36:24 +0200
2767
+ Served asset /application.css - 304 Not Modified (0ms)
2768
+
2769
+
2770
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:36:24 +0200
2771
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2772
+
2773
+
2774
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:24 +0200
2775
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2776
+
2777
+
2778
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:24 +0200
2779
+ Served asset /application.js - 304 Not Modified (0ms)
2780
+
2781
+
2782
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:24 +0200
2783
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2784
+
2785
+
2786
+ Started GET "/categories" for 127.0.0.1 at 2012-10-13 12:36:29 +0200
2787
+ Processing by CategoriesController#index as HTML
2788
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" 
2789
+ Rendered categories/index.html.erb within layouts/application (2.9ms)
2790
+ Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.2ms)
2791
+
2792
+
2793
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:36:29 +0200
2794
+ Served asset /application.css - 304 Not Modified (0ms)
2795
+
2796
+
2797
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:29 +0200
2798
+ Served asset /jquery.js - 304 Not Modified (0ms)
2799
+
2800
+
2801
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:36:29 +0200
2802
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2803
+
2804
+
2805
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:29 +0200
2806
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2807
+
2808
+
2809
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:29 +0200
2810
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2811
+
2812
+
2813
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:29 +0200
2814
+ Served asset /application.js - 304 Not Modified (0ms)
2815
+
2816
+
2817
+ Started GET "/categories/2/edit" for 127.0.0.1 at 2012-10-13 12:36:31 +0200
2818
+ Processing by CategoriesController#edit as HTML
2819
+ Parameters: {"id"=>"2"}
2820
+ Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "2"]]
2821
+ Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1
2822
+ Rendered categories/_form.html.erb (5.8ms)
2823
+ Rendered categories/edit.html.erb within layouts/application (6.7ms)
2824
+ Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.3ms)
2825
+
2826
+
2827
+ Started GET "/assets/token-input-facebook.css?body=1" for 127.0.0.1 at 2012-10-13 12:36:31 +0200
2828
+ Served asset /token-input-facebook.css - 304 Not Modified (0ms)
2829
+
2830
+
2831
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-13 12:36:31 +0200
2832
+ Served asset /application.css - 304 Not Modified (0ms)
2833
+
2834
+
2835
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:31 +0200
2836
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2837
+
2838
+
2839
+ Started GET "/assets/jquery.tokeninput.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:31 +0200
2840
+ Served asset /jquery.tokeninput.js - 304 Not Modified (0ms)
2841
+
2842
+
2843
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:31 +0200
2844
+ Served asset /application.js - 304 Not Modified (0ms)
2845
+
2846
+
2847
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-13 12:36:31 +0200
2848
+ Served asset /jquery.js - 304 Not Modified (0ms)