nweintraut-forem 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 (195) hide show
  1. data/.gitignore +7 -0
  2. data/Gemfile +17 -0
  3. data/Gemfile.lock +136 -0
  4. data/MIT-LICENSE +20 -0
  5. data/README.rdoc +3 -0
  6. data/Rakefile +45 -0
  7. data/app/assets/images/forem/.gitkeep +0 -0
  8. data/app/assets/javascripts/forem/application.js +15 -0
  9. data/app/assets/javascripts/forem/forem/goofy.js +2 -0
  10. data/app/assets/javascripts/forem/goofy.js +2 -0
  11. data/app/assets/javascripts/forem/placeholder.js +2 -0
  12. data/app/assets/javascripts/forem/posts.js +2 -0
  13. data/app/assets/javascripts/forem/topics.js +2 -0
  14. data/app/assets/stylesheets/forem/application.css +13 -0
  15. data/app/assets/stylesheets/forem/forem/goofy.css +4 -0
  16. data/app/assets/stylesheets/forem/goofy.css +4 -0
  17. data/app/assets/stylesheets/forem/placeholder.css +4 -0
  18. data/app/assets/stylesheets/forem/posts.css +4 -0
  19. data/app/assets/stylesheets/forem/topics.css +4 -0
  20. data/app/controllers/forem/application_controller.rb +4 -0
  21. data/app/controllers/forem/placeholder_controller.rb +2 -0
  22. data/app/controllers/forem/posts_controller.rb +25 -0
  23. data/app/controllers/forem/topics_controller.rb +35 -0
  24. data/app/helpers/forem/application_helper.rb +4 -0
  25. data/app/helpers/forem/placeholder_helper.rb +2 -0
  26. data/app/helpers/forem/posts_helper.rb +2 -0
  27. data/app/helpers/forem/topics_helper.rb +2 -0
  28. data/app/models/forem/post.rb +5 -0
  29. data/app/models/forem/topic.rb +14 -0
  30. data/app/models/forem.rb +5 -0
  31. data/app/views/forem/posts/_form.html.erb +4 -0
  32. data/app/views/forem/posts/_post.html.erb +11 -0
  33. data/app/views/forem/posts/new.html.erb +5 -0
  34. data/app/views/forem/topics/_form.html.erb +10 -0
  35. data/app/views/forem/topics/index.html.erb +27 -0
  36. data/app/views/forem/topics/new.html.erb +2 -0
  37. data/app/views/forem/topics/show.html.erb +6 -0
  38. data/app/views/layouts/forem/_application.html.erb +13 -0
  39. data/bin/autospec +16 -0
  40. data/bin/erubis +16 -0
  41. data/bin/htmldiff +16 -0
  42. data/bin/ldiff +16 -0
  43. data/bin/nokogiri +16 -0
  44. data/bin/rackup +16 -0
  45. data/bin/rails +16 -0
  46. data/bin/rake +16 -0
  47. data/bin/rake2thor +16 -0
  48. data/bin/rdoc +16 -0
  49. data/bin/ri +16 -0
  50. data/bin/rspec +16 -0
  51. data/bin/thor +16 -0
  52. data/bin/tilt +16 -0
  53. data/bin/tt +16 -0
  54. data/config/routes.rb +6 -0
  55. data/db/migrate/20120501042813_create_forem_topics.rb +10 -0
  56. data/db/migrate/20120501050428_create_forem_posts.rb +11 -0
  57. data/db/migrate/20120501064638_add_posts_count_to_forem_topics.rb +5 -0
  58. data/db/migrate/20120520151511_add_user_id_to_forem_topics.rb +5 -0
  59. data/lib/forem/engine.rb +14 -0
  60. data/lib/forem/version.rb +3 -0
  61. data/lib/forem.rb +6 -0
  62. data/lib/tasks/forem_tasks.rake +4 -0
  63. data/nweintraut-forem.gemspec +28 -0
  64. data/script/rails +9 -0
  65. data/spec/configuration_spec.rb +17 -0
  66. data/spec/dummy/README.rdoc +261 -0
  67. data/spec/dummy/Rakefile +7 -0
  68. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  69. data/spec/dummy/app/assets/javascripts/forem/goofy.js +2 -0
  70. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  71. data/spec/dummy/app/assets/stylesheets/forem/goofy.css +4 -0
  72. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  73. data/spec/dummy/app/controllers/fake_controller.rb +5 -0
  74. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  75. data/spec/dummy/app/mailers/.gitkeep +0 -0
  76. data/spec/dummy/app/models/.gitkeep +0 -0
  77. data/spec/dummy/app/models/user.rb +6 -0
  78. data/spec/dummy/app/views/layouts/application.html.erb +16 -0
  79. data/spec/dummy/config/application.rb +56 -0
  80. data/spec/dummy/config/boot.rb +10 -0
  81. data/spec/dummy/config/database.yml +56 -0
  82. data/spec/dummy/config/environment.rb +5 -0
  83. data/spec/dummy/config/environments/development.rb +37 -0
  84. data/spec/dummy/config/environments/production.rb +67 -0
  85. data/spec/dummy/config/environments/test.rb +37 -0
  86. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  87. data/spec/dummy/config/initializers/forem.rb +1 -0
  88. data/spec/dummy/config/initializers/inflections.rb +15 -0
  89. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  90. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  91. data/spec/dummy/config/initializers/session_store.rb +8 -0
  92. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  93. data/spec/dummy/config/locales/en.yml +5 -0
  94. data/spec/dummy/config/routes.rb +5 -0
  95. data/spec/dummy/config.ru +4 -0
  96. data/spec/dummy/db/migrate/20120501050517_create_forem_topics.forem.rb_ +11 -0
  97. data/spec/dummy/db/migrate/20120501050518_create_forem_posts.forem.rb_ +12 -0
  98. data/spec/dummy/db/migrate/20120501064803_add_posts_count_to_forem_topics.forem.rb +6 -0
  99. data/spec/dummy/db/migrate/20120520055828_create_users.rb +9 -0
  100. data/spec/dummy/db/schema.rb +38 -0
  101. data/spec/dummy/lib/assets/.gitkeep +0 -0
  102. data/spec/dummy/log/.gitkeep +0 -0
  103. data/spec/dummy/log/development.log +1745 -0
  104. data/spec/dummy/log/test.log +8320 -0
  105. data/spec/dummy/public/404.html +26 -0
  106. data/spec/dummy/public/422.html +26 -0
  107. data/spec/dummy/public/500.html +25 -0
  108. data/spec/dummy/public/favicon.ico +0 -0
  109. data/spec/dummy/script/rails +6 -0
  110. data/spec/dummy/test/fixtures/users.yml +7 -0
  111. data/spec/dummy/test/functional/forem/goofy_controller_test.rb +7 -0
  112. data/spec/dummy/test/unit/helpers/forem/goofy_helper_test.rb +4 -0
  113. data/spec/dummy/test/unit/user_test.rb +7 -0
  114. data/spec/dummy/tmp/cache/assets/C83/890/sprockets%2F04b7712512f728c84bb2dd94742c5909 +0 -0
  115. data/spec/dummy/tmp/cache/assets/CC8/790/sprockets%2Fce93eb9b88e2d7904b44649437f51169 +0 -0
  116. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  117. data/spec/dummy/tmp/cache/assets/CE7/8B0/sprockets%2F077815b5af9649318a9a2fc603e184bf +0 -0
  118. data/spec/dummy/tmp/cache/assets/D0D/490/sprockets%2F314449a2a810fe259b55ceae428f0c87 +0 -0
  119. data/spec/dummy/tmp/cache/assets/D28/030/sprockets%2Ffd60a7a8345f40bfb0264ac5085c23a0 +0 -0
  120. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  121. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  122. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  123. data/spec/dummy/tmp/cache/assets/DA2/6B0/sprockets%2F8f1fcf792b440d9cb2ad3f9b1836e4a3 +0 -0
  124. data/spec/dummy/tmp/cache/assets/DC0/120/sprockets%2F8eb27b4d88f6595dc5ee7eb679cc367c +0 -0
  125. data/spec/dummy/tmp/cache/assets/DD5/5A0/sprockets%2F82bc4ebce47cb9dc9e38557bda8c0092 +0 -0
  126. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  127. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  128. data/spec/integration/posts_spec.rb +51 -0
  129. data/spec/integration/topics_spec.rb +40 -0
  130. data/spec/spec_helper.rb +20 -0
  131. data/spec/support/capybara.rb +7 -0
  132. data/spec/support/dummy_login.rb +17 -0
  133. data/spec/support/load_routes.rb +3 -0
  134. data/test/dummy/README.rdoc +261 -0
  135. data/test/dummy/Rakefile +7 -0
  136. data/test/dummy/app/assets/javascripts/application.js +15 -0
  137. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  138. data/test/dummy/app/controllers/application_controller.rb +3 -0
  139. data/test/dummy/app/helpers/application_helper.rb +2 -0
  140. data/test/dummy/app/mailers/.gitkeep +0 -0
  141. data/test/dummy/app/models/.gitkeep +0 -0
  142. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  143. data/test/dummy/config/application.rb +56 -0
  144. data/test/dummy/config/boot.rb +10 -0
  145. data/test/dummy/config/database.yml +55 -0
  146. data/test/dummy/config/environment.rb +5 -0
  147. data/test/dummy/config/environments/development.rb +37 -0
  148. data/test/dummy/config/environments/production.rb +67 -0
  149. data/test/dummy/config/environments/test.rb +37 -0
  150. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  151. data/test/dummy/config/initializers/inflections.rb +15 -0
  152. data/test/dummy/config/initializers/mime_types.rb +5 -0
  153. data/test/dummy/config/initializers/secret_token.rb +7 -0
  154. data/test/dummy/config/initializers/session_store.rb +8 -0
  155. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  156. data/test/dummy/config/locales/en.yml +5 -0
  157. data/test/dummy/config/routes.rb +4 -0
  158. data/test/dummy/config.ru +4 -0
  159. data/test/dummy/db/migrate/20120501044219_create_forem_topics.forem.rb +11 -0
  160. data/test/dummy/db/schema.rb +23 -0
  161. data/test/dummy/lib/assets/.gitkeep +0 -0
  162. data/test/dummy/log/.gitkeep +0 -0
  163. data/test/dummy/log/development.log +3588 -0
  164. data/test/dummy/public/404.html +26 -0
  165. data/test/dummy/public/422.html +26 -0
  166. data/test/dummy/public/500.html +25 -0
  167. data/test/dummy/public/favicon.ico +0 -0
  168. data/test/dummy/script/rails +6 -0
  169. data/test/dummy/tmp/cache/assets/CC8/790/sprockets%2Fce93eb9b88e2d7904b44649437f51169 +0 -0
  170. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  171. data/test/dummy/tmp/cache/assets/D0D/490/sprockets%2F314449a2a810fe259b55ceae428f0c87 +0 -0
  172. data/test/dummy/tmp/cache/assets/D28/030/sprockets%2Ffd60a7a8345f40bfb0264ac5085c23a0 +0 -0
  173. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  174. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  175. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  176. data/test/dummy/tmp/cache/assets/DA2/6B0/sprockets%2F8f1fcf792b440d9cb2ad3f9b1836e4a3 +0 -0
  177. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  178. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  179. data/test/fixtures/forem/posts.yml +11 -0
  180. data/test/fixtures/forem/topics.yml +9 -0
  181. data/test/fixtures/topics.yml +9 -0
  182. data/test/forem_test.rb +7 -0
  183. data/test/functional/forem/placeholder_controller_test.rb +7 -0
  184. data/test/functional/forem/posts_controller_test.rb +7 -0
  185. data/test/functional/forem/topics_controller_test.rb +7 -0
  186. data/test/integration/navigation_test.rb +10 -0
  187. data/test/test_helper.rb +15 -0
  188. data/test/unit/forem/post_test.rb +7 -0
  189. data/test/unit/forem/topic_test.rb +7 -0
  190. data/test/unit/helpers/forem/goofy_helper_test.rb +4 -0
  191. data/test/unit/helpers/forem/placeholder_helper_test.rb +4 -0
  192. data/test/unit/helpers/forem/posts_helper_test.rb +4 -0
  193. data/test/unit/helpers/forem/topics_helper_test.rb +4 -0
  194. data/test/unit/topic_test.rb +7 -0
  195. metadata +357 -0
@@ -0,0 +1,3588 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2012-04-30 20:05:11 -0700
4
+
5
+ PG::Error (FATAL: database "dummy_development" does not exist
6
+ ):
7
+ activerecord (3.2.3) lib/active_record/connection_adapters/postgresql_adapter.rb:1194:in `initialize'
8
+ activerecord (3.2.3) lib/active_record/connection_adapters/postgresql_adapter.rb:1194:in `new'
9
+ activerecord (3.2.3) lib/active_record/connection_adapters/postgresql_adapter.rb:1194:in `connect'
10
+ activerecord (3.2.3) lib/active_record/connection_adapters/postgresql_adapter.rb:329:in `initialize'
11
+ activerecord (3.2.3) lib/active_record/connection_adapters/postgresql_adapter.rb:28:in `new'
12
+ activerecord (3.2.3) lib/active_record/connection_adapters/postgresql_adapter.rb:28:in `postgresql_connection'
13
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:303:in `new_connection'
14
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:313:in `checkout_new_connection'
15
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:237:in `block (2 levels) in checkout'
16
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:232:in `loop'
17
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:232:in `block in checkout'
18
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/monitor.rb:201:in `mon_synchronize'
19
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:229:in `checkout'
20
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:95:in `connection'
21
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:398:in `retrieve_connection'
22
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_specification.rb:168:in `retrieve_connection'
23
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_specification.rb:142:in `connection'
24
+ activerecord (3.2.3) lib/active_record/query_cache.rb:67:in `rescue in call'
25
+ activerecord (3.2.3) lib/active_record/query_cache.rb:61:in `call'
26
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
27
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
28
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__345792955852610100__call__4352240794753016341__callbacks'
29
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
30
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
31
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
32
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
33
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
34
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
35
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
36
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
37
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
38
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
39
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
40
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
41
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
42
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
43
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
44
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
45
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
46
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
47
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
48
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
49
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
50
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
51
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
52
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
53
+
54
+
55
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (7.5ms)
56
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (21.2ms)
57
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (62.7ms)
58
+
59
+
60
+ Started GET "/" for 127.0.0.1 at 2012-04-30 20:05:51 -0700
61
+
62
+ ActionController::RoutingError (No route matches [GET] "/"):
63
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
64
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
65
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
66
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
67
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
68
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
69
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
70
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
71
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
72
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
73
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
74
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
75
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
76
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
77
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
78
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
79
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
80
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
81
+
82
+
83
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.1ms)
84
+
85
+
86
+ Started GET "/" for 127.0.0.1 at 2012-04-30 20:25:55 -0700
87
+
88
+ ActionController::RoutingError (No route matches [GET] "/"):
89
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
90
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
91
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
92
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
93
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
94
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
95
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
96
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
97
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
98
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
99
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
100
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
101
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
102
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
103
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
104
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
105
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
106
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
107
+
108
+
109
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
110
+
111
+
112
+ Started GET "/forem" for 127.0.0.1 at 2012-04-30 20:26:03 -0700
113
+
114
+ ActionController::RoutingError (No route matches [GET] "/forem"):
115
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
116
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
117
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
118
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
119
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
120
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
121
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
122
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
123
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
124
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
125
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
126
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
127
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
128
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
129
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
130
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
131
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
132
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
133
+
134
+
135
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
136
+
137
+
138
+ Started GET "/forem" for 127.0.0.1 at 2012-04-30 20:27:16 -0700
139
+
140
+ ActionController::RoutingError (No route matches [GET] "/forem"):
141
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
142
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
143
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
144
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
145
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
146
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
147
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
148
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
149
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
150
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
151
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
152
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
153
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
154
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
155
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
156
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
157
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
158
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
159
+
160
+
161
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
162
+
163
+
164
+ Started GET "/forem" for 127.0.0.1 at 2012-04-30 20:31:06 -0700
165
+
166
+ ActionController::RoutingError (No route matches [GET] "/forem"):
167
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
168
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
169
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
170
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
171
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
172
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
173
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
174
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
175
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
176
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
177
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
178
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
179
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
180
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
181
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
182
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
183
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
184
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
185
+
186
+
187
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (22.9ms)
188
+  (24.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
189
+  (35.6ms) SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
190
+ FROM pg_class t
191
+ INNER JOIN pg_index d ON t.oid = d.indrelid
192
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
193
+ WHERE i.relkind = 'i'
194
+ AND d.indisprimary = 'f'
195
+ AND t.relname = 'schema_migrations'
196
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
197
+ ORDER BY i.relname
198
+
199
+  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
200
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
201
+  (116.6ms) DROP DATABASE IF EXISTS "dummy_test"
202
+  (713.2ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
203
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
204
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
205
+  (117.8ms) DROP DATABASE IF EXISTS "dummy_test"
206
+  (566.0ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
207
+  (5.1ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
208
+  (3.2ms)  SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
209
+ FROM pg_class t
210
+ INNER JOIN pg_index d ON t.oid = d.indrelid
211
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
212
+ WHERE i.relkind = 'i'
213
+ AND d.indisprimary = 'f'
214
+ AND t.relname = 'schema_migrations'
215
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
216
+ ORDER BY i.relname
217
+ 
218
+  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
219
+  (0.3ms) SELECT version FROM "schema_migrations"
220
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
221
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
222
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
223
+  (115.6ms) DROP DATABASE IF EXISTS "dummy_test"
224
+  (311.1ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
225
+  (5.7ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
226
+  (3.2ms)  SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
227
+ FROM pg_class t
228
+ INNER JOIN pg_index d ON t.oid = d.indrelid
229
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
230
+ WHERE i.relkind = 'i'
231
+ AND d.indisprimary = 'f'
232
+ AND t.relname = 'schema_migrations'
233
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
234
+ ORDER BY i.relname
235
+ 
236
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
237
+  (0.3ms) SELECT version FROM "schema_migrations"
238
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
239
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
240
+ Migrating to CreateForemTopics (20120501044219)
241
+  (0.1ms) BEGIN
242
+  (64.2ms) CREATE TABLE "forem_topics" ("id" serial primary key, "subject" text, "user_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
243
+  (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120501044219')
244
+  (1.1ms) COMMIT
245
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
246
+ PK and serial sequence (3.5ms)  SELECT attr.attname, seq.relname
247
+ FROM pg_class seq,
248
+ pg_attribute attr,
249
+ pg_depend dep,
250
+ pg_namespace name,
251
+ pg_constraint cons
252
+ WHERE seq.oid = dep.objid
253
+ AND seq.relkind = 'S'
254
+ AND attr.attrelid = dep.refobjid
255
+ AND attr.attnum = dep.refobjsubid
256
+ AND attr.attrelid = cons.conrelid
257
+ AND attr.attnum = cons.conkey[1]
258
+ AND cons.contype = 'p'
259
+ AND dep.refobjid = '"forem_topics"'::regclass
260
+ 
261
+  (2.4ms) SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
262
+ FROM pg_class t
263
+ INNER JOIN pg_index d ON t.oid = d.indrelid
264
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
265
+ WHERE i.relkind = 'i'
266
+ AND d.indisprimary = 'f'
267
+ AND t.relname = 'forem_topics'
268
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
269
+ ORDER BY i.relname
270
+
271
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
272
+  (115.7ms) DROP DATABASE IF EXISTS "dummy_test"
273
+  (360.7ms) CREATE DATABASE "dummy_test" ENCODING = 'unicode'
274
+  (14.2ms) CREATE TABLE "forem_topics" ("id" serial primary key, "subject" text, "user_id" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
275
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
276
+  (3.6ms) SELECT distinct i.relname, d.indisunique, d.indkey, pg_get_indexdef(d.indexrelid), t.oid
277
+ FROM pg_class t
278
+ INNER JOIN pg_index d ON t.oid = d.indrelid
279
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
280
+ WHERE i.relkind = 'i'
281
+ AND d.indisprimary = 'f'
282
+ AND t.relname = 'schema_migrations'
283
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname = ANY (current_schemas(false)) )
284
+ ORDER BY i.relname
285
+
286
+  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
287
+  (0.4ms) SELECT version FROM "schema_migrations"
288
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120501044219')
289
+
290
+
291
+ Started GET "/" for 127.0.0.1 at 2012-04-30 22:20:25 -0700
292
+
293
+ ActionController::RoutingError (No route matches [GET] "/"):
294
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
295
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
296
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
297
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
298
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
299
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
300
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
301
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
302
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
303
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
304
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
305
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
306
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
307
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
308
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
309
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
310
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
311
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
312
+
313
+
314
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (72.7ms)
315
+
316
+
317
+ Started GET "/forem" for 127.0.0.1 at 2012-04-30 22:20:33 -0700
318
+ Processing by Forem::TopicsController#index as HTML
319
+ Forem::Topic Load (1.1ms) SELECT "forem_topics".* FROM "forem_topics" 
320
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/index.html.erb within layouts/application (2.1ms)
321
+ Compiled application.css (1ms) (pid 2286)
322
+ Compiled jquery.js (5ms) (pid 2286)
323
+ Compiled jquery_ujs.js (0ms) (pid 2286)
324
+ Compiled application.js (124ms) (pid 2286)
325
+ Completed 200 OK in 416ms (Views: 200.8ms | ActiveRecord: 81.3ms)
326
+
327
+
328
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 22:20:33 -0700
329
+ Served asset /application.js - 304 Not Modified (79ms)
330
+
331
+
332
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 22:20:33 -0700
333
+ Served asset /application.css - 304 Not Modified (5ms)
334
+
335
+
336
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 22:20:33 -0700
337
+ Served asset /jquery.js - 304 Not Modified (5ms)
338
+
339
+
340
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 22:20:33 -0700
341
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
342
+
343
+
344
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 22:20:36 -0700
345
+ Processing by Forem::TopicsController#new as HTML
346
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (4.5ms)
347
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (24.5ms)
348
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (48.9ms)
349
+ Completed 200 OK in 274ms (Views: 56.9ms | ActiveRecord: 2.8ms)
350
+
351
+
352
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 22:20:37 -0700
353
+ Served asset /application.js - 304 Not Modified (0ms)
354
+
355
+
356
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 22:20:37 -0700
357
+ Served asset /jquery.js - 304 Not Modified (0ms)
358
+
359
+
360
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 22:20:37 -0700
361
+ Served asset /application.css - 304 Not Modified (0ms)
362
+
363
+
364
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 22:20:37 -0700
365
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
366
+
367
+
368
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 22:30:51 -0700
369
+ Processing by Forem::TopicsController#new as HTML
370
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (3.7ms)
371
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (11.7ms)
372
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (12.9ms)
373
+ Completed 200 OK in 59ms (Views: 21.8ms | ActiveRecord: 5.1ms)
374
+
375
+
376
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 22:30:52 -0700
377
+ Served asset /application.css - 304 Not Modified (0ms)
378
+
379
+
380
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 22:30:52 -0700
381
+ Served asset /jquery.js - 304 Not Modified (0ms)
382
+
383
+
384
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 22:30:52 -0700
385
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
386
+
387
+
388
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 22:30:52 -0700
389
+ Served asset /application.js - 304 Not Modified (0ms)
390
+
391
+
392
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 22:30:58 -0700
393
+ Processing by Forem::TopicsController#create as HTML
394
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"ddd", "posts_attributes"=>{"0"=>{"text"=>"dddddd"}}}, "commit"=>"Create Topic"}
395
+ Completed 500 Internal Server Error in 1ms
396
+
397
+ ArgumentError (wrong number of arguments (1 for 0)):
398
+ actionpack (3.2.3) lib/action_dispatch/http/request.rb:79:in `method'
399
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:48:in `accept'
400
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:36:in `<<'
401
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych.rb:165:in `dump'
402
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/core_ext.rb:13:in `psych_to_yaml'
403
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:10:in `create'
404
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
405
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
406
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
407
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
408
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__1253922262647723441__process_action__1574973021429038241__callbacks'
409
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
410
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
411
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
412
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
413
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
414
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
415
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
416
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
417
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
418
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
419
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
420
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
421
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
422
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
423
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
424
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
425
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
426
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
427
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
428
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
429
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
430
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
431
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
432
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
433
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
434
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
435
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
436
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
437
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
438
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
439
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
440
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
441
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
442
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
443
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
444
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
445
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
446
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
447
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
448
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
449
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
450
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
451
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__1328795713998843637__call__3254659366744693761__callbacks'
452
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
453
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
454
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
455
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
456
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
457
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
458
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
459
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
460
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
461
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
462
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
463
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
464
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
465
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
466
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
467
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
468
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
469
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
470
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
471
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
472
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
473
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
474
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
475
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
476
+
477
+
478
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (9.2ms)
479
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.6ms)
480
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.9ms)
481
+
482
+
483
+ Started GET "/forem/" for 127.0.0.1 at 2012-04-30 22:49:26 -0700
484
+ Processing by Forem::TopicsController#index as HTML
485
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" 
486
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/index.html.erb within layouts/application (76.9ms)
487
+ Completed 200 OK in 351ms (Views: 191.7ms | ActiveRecord: 27.7ms)
488
+
489
+
490
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 22:49:28 -0700
491
+ Served asset /application.css - 304 Not Modified (4ms)
492
+
493
+
494
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 22:49:28 -0700
495
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
496
+
497
+
498
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 22:49:28 -0700
499
+ Served asset /application.js - 304 Not Modified (9ms)
500
+
501
+
502
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 22:49:28 -0700
503
+ Served asset /jquery.js - 304 Not Modified (5ms)
504
+
505
+
506
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 22:49:29 -0700
507
+ Processing by Forem::TopicsController#new as HTML
508
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (4.7ms)
509
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (24.4ms)
510
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (46.9ms)
511
+ Completed 200 OK in 284ms (Views: 55.3ms | ActiveRecord: 3.3ms)
512
+
513
+
514
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 22:49:30 -0700
515
+ Served asset /application.js - 304 Not Modified (0ms)
516
+
517
+
518
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 22:49:30 -0700
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-04-30 22:49:30 -0700
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-04-30 22:49:30 -0700
527
+ Served asset /application.css - 304 Not Modified (0ms)
528
+
529
+
530
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 22:49:34 -0700
531
+ Processing by Forem::TopicsController#create as HTML
532
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"dddd", "posts_attributes"=>{"0"=>{"text"=>"adsfadsgg"}}}, "commit"=>"Create Topic"}
533
+ Completed 500 Internal Server Error in 1ms
534
+
535
+ ArgumentError (wrong number of arguments (1 for 0)):
536
+ actionpack (3.2.3) lib/action_dispatch/http/request.rb:79:in `method'
537
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:48:in `accept'
538
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:36:in `<<'
539
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych.rb:165:in `dump'
540
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/core_ext.rb:13:in `psych_to_yaml'
541
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:10:in `create'
542
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
543
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
544
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
545
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
546
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__1449423058167117230__callbacks'
547
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
548
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
549
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
550
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
551
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
552
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
553
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
554
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
555
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
556
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
557
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
558
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
559
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
560
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
561
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
562
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
563
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
564
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
565
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
566
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
567
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
568
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
569
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
570
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
571
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
572
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
573
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
574
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
575
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
576
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
577
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
578
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
579
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
580
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
581
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
582
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
583
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
584
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
585
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
586
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
587
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
588
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
589
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
590
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
591
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
592
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
593
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
594
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
595
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
596
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
597
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
598
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
599
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
600
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
601
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
602
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
603
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
604
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
605
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
606
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
607
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
608
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
609
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
610
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
611
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
612
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
613
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
614
+
615
+
616
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (9.1ms)
617
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.3ms)
618
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.3ms)
619
+
620
+
621
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 22:50:53 -0700
622
+ Processing by Forem::TopicsController#create as HTML
623
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"dddd", "posts_attributes"=>{"0"=>{"text"=>"adsfadsgg"}}}, "commit"=>"Create Topic"}
624
+ Completed 500 Internal Server Error in 1ms
625
+
626
+ ArgumentError (wrong number of arguments (1 for 0)):
627
+ actionpack (3.2.3) lib/action_dispatch/http/request.rb:79:in `method'
628
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:48:in `accept'
629
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:36:in `<<'
630
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych.rb:165:in `dump'
631
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/core_ext.rb:13:in `psych_to_yaml'
632
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:10:in `create'
633
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
634
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
635
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
636
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
637
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__1449423058167117230__callbacks'
638
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
639
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
640
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
641
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
642
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
643
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
644
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
645
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
646
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
647
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
648
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
649
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
650
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
651
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
652
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
653
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
654
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
655
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
656
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
657
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
658
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
659
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
660
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
661
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
662
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
663
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
664
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
665
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
666
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
667
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
668
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
669
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
670
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
671
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
672
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
673
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
674
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
675
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
676
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
677
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
678
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
679
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
680
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
681
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
682
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
683
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
684
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
685
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
686
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
687
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
688
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
689
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
690
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
691
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
692
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
693
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
694
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
695
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
696
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
697
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
698
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
699
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
700
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
701
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
702
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
703
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
704
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
705
+
706
+
707
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (9.0ms)
708
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.7ms)
709
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.9ms)
710
+
711
+
712
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 22:51:58 -0700
713
+ Processing by Forem::TopicsController#create as HTML
714
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"dddd", "posts_attributes"=>{"0"=>{"text"=>"adsfadsgg"}}}, "commit"=>"Create Topic"}
715
+ Completed 500 Internal Server Error in 1ms
716
+
717
+ ArgumentError (wrong number of arguments (1 for 0)):
718
+ actionpack (3.2.3) lib/action_dispatch/http/request.rb:79:in `method'
719
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:48:in `accept'
720
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:36:in `<<'
721
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych.rb:165:in `dump'
722
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/core_ext.rb:13:in `psych_to_yaml'
723
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:10:in `create'
724
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
725
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
726
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
727
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
728
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__1449423058167117230__callbacks'
729
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
730
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
731
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
732
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
733
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
734
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
735
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
736
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
737
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
738
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
739
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
740
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
741
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
742
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
743
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
744
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
745
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
746
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
747
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
748
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
749
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
750
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
751
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
752
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
753
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
754
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
755
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
756
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
757
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
758
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
759
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
760
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
761
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
762
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
763
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
764
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
765
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
766
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
767
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
768
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
769
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
770
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
771
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
772
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
773
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
774
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
775
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
776
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
777
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
778
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
779
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
780
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
781
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
782
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
783
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
784
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
785
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
786
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
787
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
788
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
789
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
790
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
791
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
792
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
793
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
794
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
795
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
796
+
797
+
798
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (9.6ms)
799
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.9ms)
800
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.5ms)
801
+
802
+
803
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 22:52:12 -0700
804
+ Processing by Forem::TopicsController#new as HTML
805
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (3.3ms)
806
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (11.4ms)
807
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (12.8ms)
808
+ Completed 200 OK in 58ms (Views: 22.4ms | ActiveRecord: 4.9ms)
809
+
810
+
811
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 22:52:12 -0700
812
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
813
+
814
+
815
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 22:52:12 -0700
816
+ Served asset /application.css - 304 Not Modified (0ms)
817
+
818
+
819
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 22:52:12 -0700
820
+ Served asset /jquery.js - 304 Not Modified (0ms)
821
+
822
+
823
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 22:52:12 -0700
824
+ Served asset /application.js - 304 Not Modified (0ms)
825
+
826
+
827
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 22:52:22 -0700
828
+ Processing by Forem::TopicsController#create as HTML
829
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"dddd", "posts_attributes"=>{"0"=>{"text"=>"dadfdg"}}}, "commit"=>"Create Topic"}
830
+ Completed 500 Internal Server Error in 1ms
831
+
832
+ ArgumentError (wrong number of arguments (1 for 0)):
833
+ actionpack (3.2.3) lib/action_dispatch/http/request.rb:79:in `method'
834
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:48:in `accept'
835
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:36:in `<<'
836
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych.rb:165:in `dump'
837
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/core_ext.rb:13:in `psych_to_yaml'
838
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:10:in `create'
839
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
840
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
841
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
842
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
843
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__1449423058167117230__callbacks'
844
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
845
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
846
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
847
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
848
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
849
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
850
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
851
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
852
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
853
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
854
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
855
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
856
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
857
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
858
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
859
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
860
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
861
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
862
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
863
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
864
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
865
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
866
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
867
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
868
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
869
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
870
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
871
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
872
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
873
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
874
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
875
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
876
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
877
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
878
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
879
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
880
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
881
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
882
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
883
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
884
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
885
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
886
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
887
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
888
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
889
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
890
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
891
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
892
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
893
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
894
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
895
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
896
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
897
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
898
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
899
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
900
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
901
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
902
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
903
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
904
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
905
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
906
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
907
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
908
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
909
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
910
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
911
+
912
+
913
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (11.0ms)
914
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.7ms)
915
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.2ms)
916
+
917
+
918
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 22:52:46 -0700
919
+ Processing by Forem::TopicsController#new as HTML
920
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (3.6ms)
921
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (12.1ms)
922
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (13.5ms)
923
+ Completed 200 OK in 59ms (Views: 22.6ms | ActiveRecord: 4.9ms)
924
+
925
+
926
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 22:52:46 -0700
927
+ Served asset /application.css - 304 Not Modified (0ms)
928
+
929
+
930
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 22:52:46 -0700
931
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
932
+
933
+
934
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 22:52:46 -0700
935
+ Served asset /jquery.js - 304 Not Modified (0ms)
936
+
937
+
938
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 22:52:46 -0700
939
+ Served asset /application.js - 304 Not Modified (0ms)
940
+
941
+
942
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 22:52:51 -0700
943
+ Processing by Forem::TopicsController#create as HTML
944
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"fgaf", "posts_attributes"=>{"0"=>{"text"=>"adsgdhg"}}}, "commit"=>"Create Topic"}
945
+ Completed 500 Internal Server Error in 1ms
946
+
947
+ ArgumentError (wrong number of arguments (1 for 0)):
948
+ actionpack (3.2.3) lib/action_dispatch/http/request.rb:79:in `method'
949
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:48:in `accept'
950
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/visitors/yaml_tree.rb:36:in `<<'
951
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych.rb:165:in `dump'
952
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych/core_ext.rb:13:in `psych_to_yaml'
953
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:10:in `create'
954
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
955
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
956
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
957
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
958
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__1449423058167117230__callbacks'
959
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
960
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
961
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
962
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
963
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
964
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
965
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
966
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
967
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
968
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
969
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
970
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
971
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
972
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
973
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
974
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
975
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
976
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
977
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
978
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
979
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
980
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
981
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
982
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
983
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
984
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
985
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
986
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
987
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
988
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
989
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
990
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
991
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
992
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
993
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
994
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
995
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
996
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
997
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
998
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
999
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1000
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1001
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
1002
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1003
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1004
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1005
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1006
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1007
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1008
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1009
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1010
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1011
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1012
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1013
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1014
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1015
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1016
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1017
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1018
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1019
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1020
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1021
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1022
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1023
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1024
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1025
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1026
+
1027
+
1028
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (9.4ms)
1029
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.7ms)
1030
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.3ms)
1031
+
1032
+
1033
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 22:53:49 -0700
1034
+ Processing by Forem::TopicsController#create as HTML
1035
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"fgaf", "posts_attributes"=>{"0"=>{"text"=>"adsgdhg"}}}, "commit"=>"Create Topic"}
1036
+ Completed 500 Internal Server Error in 4ms
1037
+
1038
+ NameError (undefined local variable or method `rawposts' for #<Forem::TopicsController:0x00000103250bf8>):
1039
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:13:in `create'
1040
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1041
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1042
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1043
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1044
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__1449423058167117230__callbacks'
1045
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1046
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1047
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1048
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1049
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1050
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1051
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1052
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1053
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1054
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1055
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1056
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1057
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1058
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1059
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1060
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1061
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1062
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1063
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1064
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1065
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1066
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1067
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1068
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1069
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1070
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1071
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1072
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1073
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1074
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1075
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1076
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1077
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
1078
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1079
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1080
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1081
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1082
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1083
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1084
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1085
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1086
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1087
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
1088
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1089
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1090
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1091
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1092
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1093
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1094
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1095
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1096
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1097
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1098
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1099
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1100
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1101
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1102
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1103
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1104
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1105
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1106
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1107
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1108
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1109
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1110
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1111
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1112
+
1113
+
1114
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (8.6ms)
1115
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.8ms)
1116
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.7ms)
1117
+
1118
+
1119
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 22:54:24 -0700
1120
+ Processing by Forem::TopicsController#create as HTML
1121
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"fgaf", "posts_attributes"=>{"0"=>{"text"=>"adsgdhg"}}}, "commit"=>"Create Topic"}
1122
+ Completed 500 Internal Server Error in 6ms
1123
+
1124
+ ActiveModel::MassAssignmentSecurity::Error (Can't mass-assign protected attributes: posts_attributes):
1125
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:48:in `process_removed_attributes'
1126
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:20:in `debug_protected_attribute_removal'
1127
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:12:in `sanitize'
1128
+ activemodel (3.2.3) lib/active_model/mass_assignment_security.rb:230:in `sanitize_for_mass_assignment'
1129
+ activerecord (3.2.3) lib/active_record/attribute_assignment.rb:75:in `assign_attributes'
1130
+ activerecord (3.2.3) lib/active_record/base.rb:498:in `initialize'
1131
+ activerecord (3.2.3) lib/active_record/persistence.rb:44:in `new'
1132
+ activerecord (3.2.3) lib/active_record/persistence.rb:44:in `create'
1133
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:14:in `create'
1134
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1135
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1136
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1137
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1138
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__1449423058167117230__callbacks'
1139
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1140
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1141
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1142
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1143
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1144
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1145
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1146
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1147
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1148
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1149
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1150
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1151
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1152
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1153
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1154
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1155
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1156
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1157
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1158
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1159
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1160
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1161
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1162
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1163
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1164
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1165
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1166
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1167
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1168
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1169
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1170
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1171
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
1172
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1173
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1174
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1175
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1176
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1177
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1178
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1179
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1180
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1181
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
1182
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1183
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1184
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1185
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1186
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1187
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1188
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1189
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1190
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1191
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1192
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1193
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1194
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1195
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1196
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1197
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1198
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1199
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1200
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1201
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1202
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1203
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1204
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1205
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1206
+
1207
+
1208
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (11.7ms)
1209
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.8ms)
1210
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.3ms)
1211
+
1212
+
1213
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 22:55:17 -0700
1214
+ Processing by Forem::TopicsController#new as HTML
1215
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (3.6ms)
1216
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (11.9ms)
1217
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (13.1ms)
1218
+ Completed 200 OK in 58ms (Views: 21.8ms | ActiveRecord: 5.1ms)
1219
+
1220
+
1221
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 22:55:17 -0700
1222
+ Served asset /jquery.js - 304 Not Modified (0ms)
1223
+
1224
+
1225
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 22:55:17 -0700
1226
+ Served asset /application.css - 304 Not Modified (0ms)
1227
+
1228
+
1229
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 22:55:17 -0700
1230
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1231
+
1232
+
1233
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 22:55:17 -0700
1234
+ Served asset /application.js - 304 Not Modified (0ms)
1235
+
1236
+
1237
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 22:55:26 -0700
1238
+ Processing by Forem::TopicsController#create as HTML
1239
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"sbc", "posts_attributes"=>{"0"=>{"text"=>"666"}}}, "commit"=>"Create Topic"}
1240
+ Completed 500 Internal Server Error in 1ms
1241
+
1242
+ ActiveModel::MassAssignmentSecurity::Error (Can't mass-assign protected attributes: posts_attributes):
1243
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:48:in `process_removed_attributes'
1244
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:20:in `debug_protected_attribute_removal'
1245
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:12:in `sanitize'
1246
+ activemodel (3.2.3) lib/active_model/mass_assignment_security.rb:230:in `sanitize_for_mass_assignment'
1247
+ activerecord (3.2.3) lib/active_record/attribute_assignment.rb:75:in `assign_attributes'
1248
+ activerecord (3.2.3) lib/active_record/base.rb:498:in `initialize'
1249
+ activerecord (3.2.3) lib/active_record/persistence.rb:44:in `new'
1250
+ activerecord (3.2.3) lib/active_record/persistence.rb:44:in `create'
1251
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:14:in `create'
1252
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1253
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1254
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1255
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1256
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__1449423058167117230__callbacks'
1257
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1258
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1259
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1260
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1261
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1262
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1263
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1264
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1265
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1266
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1267
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1268
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1269
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1270
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1271
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1272
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1273
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1274
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1275
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1276
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1277
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1278
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1279
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1280
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1281
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1282
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1283
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1284
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1285
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1286
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1287
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1288
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1289
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
1290
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1291
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1292
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1293
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1294
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1295
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1296
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1297
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1298
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1299
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
1300
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1301
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1302
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1303
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1304
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1305
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1306
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1307
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1308
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1309
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1310
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1311
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1312
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1313
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1314
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1315
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1316
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1317
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1318
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1319
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1320
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1321
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1322
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1323
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1324
+
1325
+
1326
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (9.9ms)
1327
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.6ms)
1328
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.7ms)
1329
+
1330
+
1331
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 22:55:50 -0700
1332
+ Processing by Forem::TopicsController#create as HTML
1333
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"sbc", "posts_attributes"=>{"0"=>{"text"=>"666"}}}, "commit"=>"Create Topic"}
1334
+ Completed 500 Internal Server Error in 7ms
1335
+
1336
+ ActiveModel::MassAssignmentSecurity::Error (Can't mass-assign protected attributes: posts_attributes):
1337
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:48:in `process_removed_attributes'
1338
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:20:in `debug_protected_attribute_removal'
1339
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:12:in `sanitize'
1340
+ activemodel (3.2.3) lib/active_model/mass_assignment_security.rb:230:in `sanitize_for_mass_assignment'
1341
+ activerecord (3.2.3) lib/active_record/attribute_assignment.rb:75:in `assign_attributes'
1342
+ activerecord (3.2.3) lib/active_record/base.rb:498:in `initialize'
1343
+ activerecord (3.2.3) lib/active_record/persistence.rb:44:in `new'
1344
+ activerecord (3.2.3) lib/active_record/persistence.rb:44:in `create'
1345
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:14:in `create'
1346
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1347
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1348
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1349
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1350
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__1449423058167117230__callbacks'
1351
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1352
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1353
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1354
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1355
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1356
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1357
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1358
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1359
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1360
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1361
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1362
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1363
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1364
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1365
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1366
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1367
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1368
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1369
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1370
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1371
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1372
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1373
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1374
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1375
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1376
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1377
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1378
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1379
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1380
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1381
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1382
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1383
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
1384
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1385
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1386
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1387
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1388
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1389
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1390
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1391
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1392
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1393
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
1394
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1395
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1396
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1397
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1398
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1399
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1400
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1401
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1402
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1403
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1404
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1405
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1406
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1407
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1408
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1409
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1410
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1411
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1412
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1413
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1414
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1415
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1416
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1417
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1418
+
1419
+
1420
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (9.8ms)
1421
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.9ms)
1422
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.9ms)
1423
+
1424
+
1425
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:03:11 -0700
1426
+ Processing by Forem::TopicsController#create as HTML
1427
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"sbc", "posts_attributes"=>{"0"=>{"text"=>"666"}}}, "commit"=>"Create Topic"}
1428
+  (0.2ms) BEGIN
1429
+ SQL (114.7ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:03:11 UTC +00:00], ["subject", "sbc"], ["updated_at", Tue, 01 May 2012 06:03:11 UTC +00:00], ["user_id", nil]]
1430
+  (0.6ms) COMMIT
1431
+  (0.2ms) BEGIN
1432
+ SQL (16.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:03:11 UTC +00:00], ["text", ["0", {"text"=>"666"}]], ["topic_id", 1], ["updated_at", Tue, 01 May 2012 06:03:11 UTC +00:00], ["user_id", nil]]
1433
+  (24.1ms) COMMIT
1434
+ Redirected to http://localhost:3000/forem/topics/1
1435
+ Completed 302 Found in 212ms (ActiveRecord: 160.7ms)
1436
+
1437
+
1438
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2012-04-30 23:03:11 -0700
1439
+ Processing by Forem::TopicsController#show as HTML
1440
+ Parameters: {"id"=>"1"}
1441
+ Forem::Topic Load (0.8ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "1"]]
1442
+ Completed 500 Internal Server Error in 68ms
1443
+
1444
+ ActionView::MissingTemplate (Missing template forem/topics/show, application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
1445
+ * "/Users/neil/R3IA/forem/test/dummy/app/views"
1446
+ * "/Users/neil/R3IA/forem/app/views"
1447
+ ):
1448
+ actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find'
1449
+ actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find'
1450
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
1451
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
1452
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render'
1453
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
1454
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
1455
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
1456
+ actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1457
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1458
+ actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1459
+ actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1460
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
1461
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
1462
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1463
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1464
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
1465
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1466
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1467
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1468
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1469
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
1470
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1471
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1472
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1473
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1474
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1475
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__2251763566437454448__callbacks'
1476
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1477
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1478
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1479
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1480
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1481
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1482
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1483
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1484
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1485
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1486
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1487
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1488
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1489
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1490
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1491
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1492
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1493
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1494
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1495
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1496
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1497
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1498
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1499
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1500
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1501
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1502
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1503
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1504
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1505
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1506
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1507
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1508
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1509
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1510
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1511
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1512
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1513
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1514
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1515
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1516
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1517
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1518
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
1519
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1520
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1521
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1522
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1523
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1524
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1525
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1526
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1527
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1528
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1529
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1530
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1531
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1532
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1533
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1534
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1535
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1536
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1537
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1538
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1539
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1540
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1541
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1542
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1543
+
1544
+
1545
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
1546
+
1547
+
1548
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 23:03:42 -0700
1549
+ Processing by Forem::TopicsController#new as HTML
1550
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (3.6ms)
1551
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (32.8ms)
1552
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (34.0ms)
1553
+ Completed 200 OK in 44ms (Views: 41.7ms | ActiveRecord: 0.0ms)
1554
+
1555
+
1556
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:03:43 -0700
1557
+ Served asset /application.css - 304 Not Modified (0ms)
1558
+
1559
+
1560
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:03:43 -0700
1561
+ Served asset /application.js - 304 Not Modified (0ms)
1562
+
1563
+
1564
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:03:43 -0700
1565
+ Served asset /jquery.js - 304 Not Modified (0ms)
1566
+
1567
+
1568
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:03:43 -0700
1569
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1570
+
1571
+
1572
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:03:56 -0700
1573
+ Processing by Forem::TopicsController#create as HTML
1574
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Neil", "posts_attributes"=>{"0"=>{"text"=>"Something Neil"}}}, "commit"=>"Create Topic"}
1575
+  (0.2ms) BEGIN
1576
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:03:56 UTC +00:00], ["subject", "Neil"], ["updated_at", Tue, 01 May 2012 06:03:56 UTC +00:00], ["user_id", nil]]
1577
+  (25.4ms) COMMIT
1578
+  (0.1ms) BEGIN
1579
+ SQL (1.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:03:56 UTC +00:00], ["text", ["0", {"text"=>"Something Neil"}]], ["topic_id", 2], ["updated_at", Tue, 01 May 2012 06:03:56 UTC +00:00], ["user_id", nil]]
1580
+  (0.6ms) COMMIT
1581
+ Redirected to http://localhost:3000/forem/topics/2
1582
+ Completed 302 Found in 98ms (ActiveRecord: 28.3ms)
1583
+
1584
+
1585
+ Started GET "/forem/topics/2" for 127.0.0.1 at 2012-04-30 23:03:56 -0700
1586
+ Processing by Forem::TopicsController#show as HTML
1587
+ Parameters: {"id"=>"2"}
1588
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "2"]]
1589
+ Completed 500 Internal Server Error in 4ms
1590
+
1591
+ ActionView::MissingTemplate (Missing template forem/topics/show, application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
1592
+ * "/Users/neil/R3IA/forem/test/dummy/app/views"
1593
+ * "/Users/neil/R3IA/forem/app/views"
1594
+ ):
1595
+ actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find'
1596
+ actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find'
1597
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
1598
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
1599
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:10:in `render'
1600
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
1601
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
1602
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
1603
+ actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1604
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1605
+ actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1606
+ actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1607
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
1608
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
1609
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1610
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1611
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
1612
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1613
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1614
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1615
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1616
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
1617
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1618
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1619
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1620
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1621
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1622
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__2251763566437454448__callbacks'
1623
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1624
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1625
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1626
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1627
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1628
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1629
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1630
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1631
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1632
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1633
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1634
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1635
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1636
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1637
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1638
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1639
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1640
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1641
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1642
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1643
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1644
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1645
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1646
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1647
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1648
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1649
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1650
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1651
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1652
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1653
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1654
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1655
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1656
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1657
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1658
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1659
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1660
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1661
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1662
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1663
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1664
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1665
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
1666
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1667
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1668
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1669
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1670
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1671
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1672
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1673
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1674
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1675
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1676
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1677
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1678
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1679
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1680
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1681
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1682
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1683
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1684
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1685
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1686
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1687
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1688
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1689
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1690
+
1691
+
1692
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
1693
+
1694
+
1695
+ Started GET "/forem/topics/2" for 127.0.0.1 at 2012-04-30 23:06:30 -0700
1696
+ Processing by Forem::TopicsController#show as HTML
1697
+ Parameters: {"id"=>"2"}
1698
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "2"]]
1699
+ Forem::Post Load (0.9ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 2 ORDER BY created_at ASC
1700
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (6.7ms)
1701
+ Completed 500 Internal Server Error in 12ms
1702
+
1703
+ ActionView::Template::Error (Missing partial forem/posts/post with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
1704
+ * "/Users/neil/R3IA/forem/test/dummy/app/views"
1705
+ * "/Users/neil/R3IA/forem/app/views"
1706
+ ):
1707
+ 1: <% div_for @topic do %>
1708
+ 2: <h1><%= @topic.subject %></h1>
1709
+ 3: <div id='posts'>
1710
+ 4: <%= render partial: "forem/posts/post", collection: @topic.posts %>
1711
+ 5: </div>
1712
+ 6: <% end %>
1713
+ actionpack (3.2.3) lib/action_view/path_set.rb:58:in `find'
1714
+ actionpack (3.2.3) lib/action_view/lookup_context.rb:109:in `find'
1715
+ actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:339:in `find_template'
1716
+ actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:333:in `find_partial'
1717
+ actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:222:in `render'
1718
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:41:in `render_partial'
1719
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:15:in `render'
1720
+ actionpack (3.2.3) lib/action_view/helpers/rendering_helper.rb:24:in `render'
1721
+ /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb:4:in `block in ___sers_neil______forem_app_views_forem_topics_show_html_erb__668998450875651642_2174108460'
1722
+ actionpack (3.2.3) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
1723
+ actionpack (3.2.3) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
1724
+ actionpack (3.2.3) lib/action_view/helpers/capture_helper.rb:40:in `capture'
1725
+ actionpack (3.2.3) lib/action_view/helpers/record_tag_helper.rb:102:in `content_tag_for_single_record'
1726
+ actionpack (3.2.3) lib/action_view/helpers/record_tag_helper.rb:89:in `content_tag_for'
1727
+ actionpack (3.2.3) lib/action_view/helpers/record_tag_helper.rb:34:in `div_for'
1728
+ /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb:1:in `___sers_neil______forem_app_views_forem_topics_show_html_erb__668998450875651642_2174108460'
1729
+ actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render'
1730
+ activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument'
1731
+ actionpack (3.2.3) lib/action_view/template.rb:141:in `render'
1732
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
1733
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
1734
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1735
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1736
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1737
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
1738
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
1739
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
1740
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
1741
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render'
1742
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
1743
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
1744
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
1745
+ actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
1746
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
1747
+ actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
1748
+ actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
1749
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
1750
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
1751
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
1752
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
1753
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
1754
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
1755
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
1756
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
1757
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
1758
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
1759
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1760
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1761
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1762
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1763
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1764
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__2251763566437454448__callbacks'
1765
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1766
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1767
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1768
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1769
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1770
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1771
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1772
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1773
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1774
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1775
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1776
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1777
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1778
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1779
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1780
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1781
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1782
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1783
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1784
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1785
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1786
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1787
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1788
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1789
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1790
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
1791
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1792
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1793
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1794
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1795
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1796
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1797
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1798
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1799
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1800
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1801
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1802
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1803
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1804
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1805
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1806
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1807
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
1808
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1809
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1810
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1811
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1812
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1813
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1814
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1815
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1816
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1817
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1818
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1819
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1820
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1821
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1822
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1823
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1824
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1825
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1826
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1827
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1828
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1829
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1830
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1831
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1832
+
1833
+
1834
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (13.0ms)
1835
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms)
1836
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (27.2ms)
1837
+
1838
+
1839
+ Started GET "/forem/topics/2" for 127.0.0.1 at 2012-04-30 23:07:42 -0700
1840
+ Processing by Forem::TopicsController#show as HTML
1841
+ Parameters: {"id"=>"2"}
1842
+ Forem::Topic Load (0.5ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "2"]]
1843
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 2 ORDER BY created_at ASC
1844
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (615.5ms)
1845
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (620.3ms)
1846
+ Completed 200 OK in 631ms (Views: 627.6ms | ActiveRecord: 0.9ms)
1847
+
1848
+
1849
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:07:42 -0700
1850
+ Served asset /jquery.js - 304 Not Modified (0ms)
1851
+
1852
+
1853
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:07:42 -0700
1854
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1855
+
1856
+
1857
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:07:42 -0700
1858
+ Served asset /application.css - 304 Not Modified (0ms)
1859
+
1860
+
1861
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:07:42 -0700
1862
+ Served asset /application.js - 304 Not Modified (0ms)
1863
+
1864
+
1865
+ Started GET "/forem/topics/2" for 127.0.0.1 at 2012-04-30 23:07:46 -0700
1866
+ Processing by Forem::TopicsController#show as HTML
1867
+ Parameters: {"id"=>"2"}
1868
+ Forem::Topic Load (0.5ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "2"]]
1869
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 2 ORDER BY created_at ASC
1870
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.7ms)
1871
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (4.8ms)
1872
+ Completed 200 OK in 15ms (Views: 12.7ms | ActiveRecord: 1.0ms)
1873
+
1874
+
1875
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:07:46 -0700
1876
+ Served asset /jquery.js - 304 Not Modified (0ms)
1877
+
1878
+
1879
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:07:46 -0700
1880
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1881
+
1882
+
1883
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:07:46 -0700
1884
+ Served asset /application.js - 304 Not Modified (0ms)
1885
+
1886
+
1887
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:07:46 -0700
1888
+ Served asset /application.css - 304 Not Modified (0ms)
1889
+
1890
+
1891
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:07:49 -0700
1892
+ Processing by Forem::TopicsController#create as HTML
1893
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Neil", "posts_attributes"=>{"0"=>{"text"=>"Something Neil"}}}, "commit"=>"Create Topic"}
1894
+  (0.2ms) BEGIN
1895
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:07:49 UTC +00:00], ["subject", "Neil"], ["updated_at", Tue, 01 May 2012 06:07:49 UTC +00:00], ["user_id", nil]]
1896
+  (0.7ms) COMMIT
1897
+  (0.1ms) BEGIN
1898
+ SQL (1.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:07:49 UTC +00:00], ["text", ["0", {"text"=>"Something Neil"}]], ["topic_id", 3], ["updated_at", Tue, 01 May 2012 06:07:49 UTC +00:00], ["user_id", nil]]
1899
+  (1.4ms) COMMIT
1900
+ Redirected to http://localhost:3000/forem/topics/3
1901
+ Completed 302 Found in 13ms (ActiveRecord: 4.3ms)
1902
+
1903
+
1904
+ Started GET "/forem/topics/3" for 127.0.0.1 at 2012-04-30 23:07:49 -0700
1905
+ Processing by Forem::TopicsController#show as HTML
1906
+ Parameters: {"id"=>"3"}
1907
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "3"]]
1908
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 3 ORDER BY created_at ASC
1909
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.7ms)
1910
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (4.6ms)
1911
+ Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.8ms)
1912
+
1913
+
1914
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:07:49 -0700
1915
+ Served asset /application.css - 304 Not Modified (0ms)
1916
+
1917
+
1918
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:07:49 -0700
1919
+ Served asset /jquery.js - 304 Not Modified (0ms)
1920
+
1921
+
1922
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:07:49 -0700
1923
+ Served asset /application.js - 304 Not Modified (0ms)
1924
+
1925
+
1926
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:07:49 -0700
1927
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1928
+
1929
+
1930
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 23:08:34 -0700
1931
+ Processing by Forem::TopicsController#new as HTML
1932
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (3.6ms)
1933
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (11.7ms)
1934
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (12.9ms)
1935
+ Completed 200 OK in 75ms (Views: 38.7ms | ActiveRecord: 4.9ms)
1936
+
1937
+
1938
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:34 -0700
1939
+ Served asset /jquery.js - 304 Not Modified (0ms)
1940
+
1941
+
1942
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:34 -0700
1943
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1944
+
1945
+
1946
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:34 -0700
1947
+ Served asset /application.js - 304 Not Modified (0ms)
1948
+
1949
+
1950
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:08:34 -0700
1951
+ Served asset /application.css - 304 Not Modified (0ms)
1952
+
1953
+
1954
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:08:38 -0700
1955
+ Processing by Forem::TopicsController#create as HTML
1956
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"dddd", "posts_attributes"=>{"0"=>{"text"=>"ggggg"}}}, "commit"=>"Create Topic"}
1957
+  (0.2ms) BEGIN
1958
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:08:38 UTC +00:00], ["subject", "dddd"], ["updated_at", Tue, 01 May 2012 06:08:38 UTC +00:00], ["user_id", nil]]
1959
+  (22.7ms) COMMIT
1960
+  (0.2ms) BEGIN
1961
+ SQL (1.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:08:38 UTC +00:00], ["text", ["0", {"text"=>"ggggg"}]], ["topic_id", 4], ["updated_at", Tue, 01 May 2012 06:08:38 UTC +00:00], ["user_id", nil]]
1962
+  (0.6ms) COMMIT
1963
+  (0.1ms) BEGIN
1964
+  (0.1ms) COMMIT
1965
+ Redirected to http://localhost:3000/forem/topics/4
1966
+ Completed 302 Found in 40ms (ActiveRecord: 25.6ms)
1967
+
1968
+
1969
+ Started GET "/forem/topics/4" for 127.0.0.1 at 2012-04-30 23:08:38 -0700
1970
+ Processing by Forem::TopicsController#show as HTML
1971
+ Parameters: {"id"=>"4"}
1972
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "4"]]
1973
+ Forem::Post Load (0.4ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 4 ORDER BY created_at ASC
1974
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.8ms)
1975
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (5.2ms)
1976
+ Completed 200 OK in 16ms (Views: 12.6ms | ActiveRecord: 0.8ms)
1977
+
1978
+
1979
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:38 -0700
1980
+ Served asset /application.js - 304 Not Modified (0ms)
1981
+
1982
+
1983
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:38 -0700
1984
+ Served asset /jquery.js - 304 Not Modified (0ms)
1985
+
1986
+
1987
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:38 -0700
1988
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1989
+
1990
+
1991
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:08:38 -0700
1992
+ Served asset /application.css - 304 Not Modified (0ms)
1993
+
1994
+
1995
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 23:08:49 -0700
1996
+ Processing by Forem::TopicsController#new as HTML
1997
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (1.5ms)
1998
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (6.9ms)
1999
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (8.2ms)
2000
+ Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.0ms)
2001
+
2002
+
2003
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:49 -0700
2004
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2005
+
2006
+
2007
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:49 -0700
2008
+ Served asset /jquery.js - 304 Not Modified (0ms)
2009
+
2010
+
2011
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:49 -0700
2012
+ Served asset /application.js - 304 Not Modified (1ms)
2013
+
2014
+
2015
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:08:49 -0700
2016
+ Served asset /application.css - 304 Not Modified (0ms)
2017
+
2018
+
2019
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:08:53 -0700
2020
+ Processing by Forem::TopicsController#create as HTML
2021
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"adgdh", "posts_attributes"=>{"0"=>{"text"=>"dagdgh"}}}, "commit"=>"Create Topic"}
2022
+  (0.2ms) BEGIN
2023
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:08:53 UTC +00:00], ["subject", "adgdh"], ["updated_at", Tue, 01 May 2012 06:08:53 UTC +00:00], ["user_id", nil]]
2024
+  (0.7ms) COMMIT
2025
+  (0.1ms) BEGIN
2026
+ SQL (1.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:08:53 UTC +00:00], ["text", ["0", {"text"=>"dagdgh"}]], ["topic_id", 5], ["updated_at", Tue, 01 May 2012 06:08:53 UTC +00:00], ["user_id", nil]]
2027
+  (0.7ms) COMMIT
2028
+  (0.1ms) BEGIN
2029
+  (0.1ms) COMMIT
2030
+ Redirected to http://localhost:3000/forem/topics/5
2031
+ Completed 302 Found in 20ms (ActiveRecord: 3.5ms)
2032
+
2033
+
2034
+ Started GET "/forem/topics/5" for 127.0.0.1 at 2012-04-30 23:08:53 -0700
2035
+ Processing by Forem::TopicsController#show as HTML
2036
+ Parameters: {"id"=>"5"}
2037
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "5"]]
2038
+ Forem::Post Load (0.4ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 5 ORDER BY created_at ASC
2039
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.7ms)
2040
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (4.2ms)
2041
+ Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.7ms)
2042
+
2043
+
2044
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:08:54 -0700
2045
+ Served asset /application.css - 304 Not Modified (0ms)
2046
+
2047
+
2048
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:54 -0700
2049
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2050
+
2051
+
2052
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:54 -0700
2053
+ Served asset /application.js - 304 Not Modified (0ms)
2054
+
2055
+
2056
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:08:54 -0700
2057
+ Served asset /jquery.js - 304 Not Modified (0ms)
2058
+
2059
+
2060
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:09:20 -0700
2061
+ Processing by Forem::TopicsController#create as HTML
2062
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"adgdh", "posts_attributes"=>{"0"=>{"text"=>"dagdgh"}}}, "commit"=>"Create Topic"}
2063
+  (0.2ms) BEGIN
2064
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:09:20 UTC +00:00], ["subject", "adgdh"], ["updated_at", Tue, 01 May 2012 06:09:20 UTC +00:00], ["user_id", nil]]
2065
+  (0.5ms) COMMIT
2066
+  (0.2ms) BEGIN
2067
+ SQL (1.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:09:20 UTC +00:00], ["text", ["0", {"text"=>"dagdgh"}]], ["topic_id", 6], ["updated_at", Tue, 01 May 2012 06:09:20 UTC +00:00], ["user_id", nil]]
2068
+  (0.6ms) COMMIT
2069
+  (0.1ms) BEGIN
2070
+  (0.1ms) COMMIT
2071
+ Redirected to http://localhost:3000/forem/topics/6
2072
+ Completed 302 Found in 54ms (ActiveRecord: 8.2ms)
2073
+
2074
+
2075
+ Started GET "/forem/topics/6" for 127.0.0.1 at 2012-04-30 23:09:20 -0700
2076
+ Processing by Forem::TopicsController#show as HTML
2077
+ Parameters: {"id"=>"6"}
2078
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "6"]]
2079
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 6 ORDER BY created_at ASC
2080
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (3.0ms)
2081
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (7.8ms)
2082
+ Completed 200 OK in 24ms (Views: 20.0ms | ActiveRecord: 0.8ms)
2083
+
2084
+
2085
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:09:20 -0700
2086
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2087
+
2088
+
2089
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:09:20 -0700
2090
+ Served asset /jquery.js - 304 Not Modified (0ms)
2091
+
2092
+
2093
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:09:20 -0700
2094
+ Served asset /application.js - 304 Not Modified (0ms)
2095
+
2096
+
2097
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:09:20 -0700
2098
+ Served asset /application.css - 304 Not Modified (0ms)
2099
+
2100
+
2101
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:10:04 -0700
2102
+ Processing by Forem::TopicsController#create as HTML
2103
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"adgdh", "posts_attributes"=>{"0"=>{"text"=>"dagdgh"}}}, "commit"=>"Create Topic"}
2104
+  (0.2ms) BEGIN
2105
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:10:04 UTC +00:00], ["subject", "adgdh"], ["updated_at", Tue, 01 May 2012 06:10:04 UTC +00:00], ["user_id", nil]]
2106
+  (0.5ms) COMMIT
2107
+  (0.2ms) BEGIN
2108
+ SQL (1.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:10:04 UTC +00:00], ["text", ["0", {"text"=>"dagdgh"}]], ["topic_id", 7], ["updated_at", Tue, 01 May 2012 06:10:04 UTC +00:00], ["user_id", nil]]
2109
+  (0.6ms) COMMIT
2110
+  (0.1ms) BEGIN
2111
+  (0.1ms) COMMIT
2112
+ Redirected to http://localhost:3000/forem/topics/7
2113
+ Completed 302 Found in 54ms (ActiveRecord: 8.6ms)
2114
+
2115
+
2116
+ Started GET "/forem/topics/7" for 127.0.0.1 at 2012-04-30 23:10:04 -0700
2117
+ Processing by Forem::TopicsController#show as HTML
2118
+ Parameters: {"id"=>"7"}
2119
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "7"]]
2120
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 7 ORDER BY created_at ASC
2121
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (9.1ms)
2122
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (13.8ms)
2123
+ Completed 200 OK in 29ms (Views: 25.2ms | ActiveRecord: 0.8ms)
2124
+
2125
+
2126
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:10:04 -0700
2127
+ Served asset /jquery.js - 304 Not Modified (0ms)
2128
+
2129
+
2130
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:10:04 -0700
2131
+ Served asset /application.js - 304 Not Modified (0ms)
2132
+
2133
+
2134
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:10:04 -0700
2135
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2136
+
2137
+
2138
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:10:04 -0700
2139
+ Served asset /application.css - 304 Not Modified (0ms)
2140
+
2141
+
2142
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:10:45 -0700
2143
+ Processing by Forem::TopicsController#create as HTML
2144
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"adgdh", "posts_attributes"=>{"0"=>{"text"=>"dagdgh"}}}, "commit"=>"Create Topic"}
2145
+  (0.2ms) BEGIN
2146
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:10:45 UTC +00:00], ["subject", "adgdh"], ["updated_at", Tue, 01 May 2012 06:10:45 UTC +00:00], ["user_id", nil]]
2147
+  (0.6ms) COMMIT
2148
+  (0.1ms) BEGIN
2149
+ SQL (1.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:10:45 UTC +00:00], ["text", ["0", {"text"=>"dagdgh"}]], ["topic_id", 8], ["updated_at", Tue, 01 May 2012 06:10:45 UTC +00:00], ["user_id", nil]]
2150
+  (0.5ms) COMMIT
2151
+  (0.1ms) BEGIN
2152
+  (0.1ms) COMMIT
2153
+ Redirected to http://localhost:3000/forem/topics/8
2154
+ Completed 302 Found in 55ms (ActiveRecord: 8.4ms)
2155
+
2156
+
2157
+ Started GET "/forem/topics/8" for 127.0.0.1 at 2012-04-30 23:10:45 -0700
2158
+ Processing by Forem::TopicsController#show as HTML
2159
+ Parameters: {"id"=>"8"}
2160
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "8"]]
2161
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (1.2ms)
2162
+ Completed 200 OK in 15ms (Views: 11.9ms | ActiveRecord: 0.3ms)
2163
+
2164
+
2165
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:10:45 -0700
2166
+ Served asset /application.css - 304 Not Modified (0ms)
2167
+
2168
+
2169
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:10:45 -0700
2170
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2171
+
2172
+
2173
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:10:45 -0700
2174
+ Served asset /jquery.js - 304 Not Modified (0ms)
2175
+
2176
+
2177
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:10:45 -0700
2178
+ Served asset /application.js - 304 Not Modified (0ms)
2179
+
2180
+
2181
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:12:19 -0700
2182
+ Processing by Forem::TopicsController#create as HTML
2183
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"adgdh", "posts_attributes"=>{"0"=>{"text"=>"dagdgh"}}}, "commit"=>"Create Topic"}
2184
+  (0.2ms) BEGIN
2185
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:12:19 UTC +00:00], ["subject", "adgdh"], ["updated_at", Tue, 01 May 2012 06:12:19 UTC +00:00], ["user_id", nil]]
2186
+  (0.6ms) COMMIT
2187
+  (0.2ms) BEGIN
2188
+ SQL (1.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:12:19 UTC +00:00], ["text", ["0", {"text"=>"dagdgh"}]], ["topic_id", 9], ["updated_at", Tue, 01 May 2012 06:12:19 UTC +00:00], ["user_id", nil]]
2189
+  (0.5ms) COMMIT
2190
+  (0.1ms) BEGIN
2191
+  (0.1ms) COMMIT
2192
+ Redirected to http://localhost:3000/forem/topics/9
2193
+ Completed 302 Found in 116ms (ActiveRecord: 9.2ms)
2194
+
2195
+
2196
+ Started GET "/forem/topics/9" for 127.0.0.1 at 2012-04-30 23:12:19 -0700
2197
+ Processing by Forem::TopicsController#show as HTML
2198
+ Parameters: {"id"=>"9"}
2199
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "9"]]
2200
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (0.6ms)
2201
+ Completed 200 OK in 13ms (Views: 9.9ms | ActiveRecord: 0.3ms)
2202
+
2203
+
2204
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:12:19 -0700
2205
+ Served asset /application.css - 304 Not Modified (0ms)
2206
+
2207
+
2208
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:12:19 -0700
2209
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2210
+
2211
+
2212
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:12:19 -0700
2213
+ Served asset /application.js - 304 Not Modified (0ms)
2214
+
2215
+
2216
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:12:19 -0700
2217
+ Served asset /jquery.js - 304 Not Modified (0ms)
2218
+
2219
+
2220
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:12:45 -0700
2221
+ Processing by Forem::TopicsController#create as HTML
2222
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"adgdh", "posts_attributes"=>{"0"=>{"text"=>"dagdgh"}}}, "commit"=>"Create Topic"}
2223
+  (0.2ms) BEGIN
2224
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:12:45 UTC +00:00], ["subject", "adgdh"], ["updated_at", Tue, 01 May 2012 06:12:45 UTC +00:00], ["user_id", nil]]
2225
+  (0.5ms) COMMIT
2226
+  (0.1ms) BEGIN
2227
+ SQL (1.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:12:45 UTC +00:00], ["text", ["0", {"text"=>"dagdgh"}]], ["topic_id", 10], ["updated_at", Tue, 01 May 2012 06:12:45 UTC +00:00], ["user_id", nil]]
2228
+  (0.6ms) COMMIT
2229
+  (0.1ms) BEGIN
2230
+  (0.1ms) COMMIT
2231
+ Redirected to http://localhost:3000/forem/topics/10
2232
+ Completed 302 Found in 13ms (ActiveRecord: 3.4ms)
2233
+
2234
+
2235
+ Started GET "/forem/topics/10" for 127.0.0.1 at 2012-04-30 23:12:45 -0700
2236
+ Processing by Forem::TopicsController#show as HTML
2237
+ Parameters: {"id"=>"10"}
2238
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "10"]]
2239
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (0.8ms)
2240
+ Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.3ms)
2241
+
2242
+
2243
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:12:45 -0700
2244
+ Served asset /jquery.js - 304 Not Modified (0ms)
2245
+
2246
+
2247
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:12:45 -0700
2248
+ Served asset /application.js - 304 Not Modified (0ms)
2249
+
2250
+
2251
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:12:45 -0700
2252
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2253
+
2254
+
2255
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:12:45 -0700
2256
+ Served asset /application.css - 304 Not Modified (0ms)
2257
+
2258
+
2259
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:13:24 -0700
2260
+ Processing by Forem::TopicsController#create as HTML
2261
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"adgdh", "posts_attributes"=>{"0"=>{"text"=>"dagdgh"}}}, "commit"=>"Create Topic"}
2262
+  (0.2ms) BEGIN
2263
+ SQL (0.5ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:13:24 UTC +00:00], ["subject", "adgdh"], ["updated_at", Tue, 01 May 2012 06:13:24 UTC +00:00], ["user_id", nil]]
2264
+  (0.5ms) COMMIT
2265
+  (0.1ms) BEGIN
2266
+ SQL (1.0ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:13:24 UTC +00:00], ["text", ["0", {"text"=>"dagdgh"}]], ["topic_id", 11], ["updated_at", Tue, 01 May 2012 06:13:24 UTC +00:00], ["user_id", nil]]
2267
+  (0.6ms) COMMIT
2268
+  (0.1ms) BEGIN
2269
+  (0.1ms) COMMIT
2270
+ Redirected to http://localhost:3000/forem/topics/11
2271
+ Completed 302 Found in 12ms (ActiveRecord: 3.1ms)
2272
+
2273
+
2274
+ Started GET "/forem/topics/11" for 127.0.0.1 at 2012-04-30 23:13:24 -0700
2275
+ Processing by Forem::TopicsController#show as HTML
2276
+ Parameters: {"id"=>"11"}
2277
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "11"]]
2278
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 11 ORDER BY created_at ASC
2279
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (2.9ms)
2280
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (7.9ms)
2281
+ Completed 200 OK in 18ms (Views: 15.7ms | ActiveRecord: 0.8ms)
2282
+
2283
+
2284
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:13:24 -0700
2285
+ Served asset /application.css - 304 Not Modified (0ms)
2286
+
2287
+
2288
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:13:24 -0700
2289
+ Served asset /jquery.js - 304 Not Modified (0ms)
2290
+
2291
+
2292
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:13:24 -0700
2293
+ Served asset /application.js - 304 Not Modified (0ms)
2294
+
2295
+
2296
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:13:24 -0700
2297
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2298
+
2299
+
2300
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:14:19 -0700
2301
+ Processing by Forem::TopicsController#create as HTML
2302
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"adgdh", "posts_attributes"=>{"0"=>{"text"=>"dagdgh"}}}, "commit"=>"Create Topic"}
2303
+  (0.2ms) BEGIN
2304
+ SQL (0.5ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:14:19 UTC +00:00], ["subject", "adgdh"], ["updated_at", Tue, 01 May 2012 06:14:19 UTC +00:00], ["user_id", nil]]
2305
+  (0.5ms) COMMIT
2306
+  (0.1ms) BEGIN
2307
+ SQL (1.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:14:19 UTC +00:00], ["text", ["0", {"text"=>"dagdgh"}]], ["topic_id", 12], ["updated_at", Tue, 01 May 2012 06:14:19 UTC +00:00], ["user_id", nil]]
2308
+  (0.6ms) COMMIT
2309
+  (0.1ms) BEGIN
2310
+  (0.1ms) COMMIT
2311
+ Redirected to http://localhost:3000/forem/topics/12
2312
+ Completed 302 Found in 11ms (ActiveRecord: 3.1ms)
2313
+
2314
+
2315
+ Started GET "/forem/topics/12" for 127.0.0.1 at 2012-04-30 23:14:19 -0700
2316
+ Processing by Forem::TopicsController#show as HTML
2317
+ Parameters: {"id"=>"12"}
2318
+ Forem::Topic Load (0.8ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "12"]]
2319
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 12 ORDER BY created_at ASC
2320
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.7ms)
2321
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (5.6ms)
2322
+ Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 1.3ms)
2323
+
2324
+
2325
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:14:19 -0700
2326
+ Served asset /jquery.js - 304 Not Modified (0ms)
2327
+
2328
+
2329
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:14:19 -0700
2330
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2331
+
2332
+
2333
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:14:19 -0700
2334
+ Served asset /application.js - 304 Not Modified (0ms)
2335
+
2336
+
2337
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:14:19 -0700
2338
+ Served asset /application.css - 304 Not Modified (0ms)
2339
+
2340
+
2341
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:14:42 -0700
2342
+ Processing by Forem::TopicsController#create as HTML
2343
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"adgdh", "posts_attributes"=>{"0"=>{"text"=>"dagdgh"}}}, "commit"=>"Create Topic"}
2344
+  (0.1ms) BEGIN
2345
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:14:42 UTC +00:00], ["subject", "adgdh"], ["updated_at", Tue, 01 May 2012 06:14:42 UTC +00:00], ["user_id", nil]]
2346
+  (0.5ms) COMMIT
2347
+  (0.2ms) BEGIN
2348
+ SQL (1.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:14:42 UTC +00:00], ["text", ["0", {"text"=>"dagdgh"}]], ["topic_id", 13], ["updated_at", Tue, 01 May 2012 06:14:42 UTC +00:00], ["user_id", nil]]
2349
+  (0.6ms) COMMIT
2350
+  (0.1ms) BEGIN
2351
+  (0.1ms) COMMIT
2352
+ Redirected to http://localhost:3000/forem/topics/13
2353
+ Completed 302 Found in 14ms (ActiveRecord: 3.4ms)
2354
+
2355
+
2356
+ Started GET "/forem/topics/13" for 127.0.0.1 at 2012-04-30 23:14:42 -0700
2357
+ Processing by Forem::TopicsController#show as HTML
2358
+ Parameters: {"id"=>"13"}
2359
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "13"]]
2360
+ Forem::Post Load (0.4ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 13 ORDER BY created_at ASC
2361
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.9ms)
2362
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (5.9ms)
2363
+ Completed 200 OK in 16ms (Views: 13.2ms | ActiveRecord: 0.8ms)
2364
+
2365
+
2366
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:14:42 -0700
2367
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2368
+
2369
+
2370
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:14:42 -0700
2371
+ Served asset /application.js - 304 Not Modified (0ms)
2372
+
2373
+
2374
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:14:42 -0700
2375
+ Served asset /jquery.js - 304 Not Modified (0ms)
2376
+
2377
+
2378
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:14:42 -0700
2379
+ Served asset /application.css - 304 Not Modified (0ms)
2380
+
2381
+
2382
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 23:15:09 -0700
2383
+ Processing by Forem::TopicsController#new as HTML
2384
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (1.5ms)
2385
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (7.2ms)
2386
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (8.3ms)
2387
+ Completed 200 OK in 87ms (Views: 84.5ms | ActiveRecord: 0.0ms)
2388
+
2389
+
2390
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:15:10 -0700
2391
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2392
+
2393
+
2394
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:15:10 -0700
2395
+ Served asset /application.js - 304 Not Modified (0ms)
2396
+
2397
+
2398
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:15:10 -0700
2399
+ Served asset /jquery.js - 304 Not Modified (0ms)
2400
+
2401
+
2402
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:15:10 -0700
2403
+ Served asset /application.css - 304 Not Modified (0ms)
2404
+
2405
+
2406
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:15:24 -0700
2407
+ Processing by Forem::TopicsController#create as HTML
2408
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Subject", "posts_attributes"=>{"0"=>{"text"=>"TextStuff"}}}, "commit"=>"Create Topic"}
2409
+  (0.2ms) BEGIN
2410
+ SQL (0.9ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:15:24 UTC +00:00], ["subject", "Subject"], ["updated_at", Tue, 01 May 2012 06:15:24 UTC +00:00], ["user_id", nil]]
2411
+  (0.7ms) COMMIT
2412
+  (0.1ms) BEGIN
2413
+ SQL (1.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:15:24 UTC +00:00], ["text", ["0", {"text"=>"TextStuff"}]], ["topic_id", 14], ["updated_at", Tue, 01 May 2012 06:15:24 UTC +00:00], ["user_id", nil]]
2414
+  (0.6ms) COMMIT
2415
+  (0.1ms) BEGIN
2416
+  (0.1ms) COMMIT
2417
+ Redirected to http://localhost:3000/forem/topics/14
2418
+ Completed 302 Found in 13ms (ActiveRecord: 3.7ms)
2419
+
2420
+
2421
+ Started GET "/forem/topics/14" for 127.0.0.1 at 2012-04-30 23:15:24 -0700
2422
+ Processing by Forem::TopicsController#show as HTML
2423
+ Parameters: {"id"=>"14"}
2424
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "14"]]
2425
+ Forem::Post Load (0.6ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 14 ORDER BY created_at ASC
2426
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.7ms)
2427
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (5.3ms)
2428
+ Completed 200 OK in 15ms (Views: 12.4ms | ActiveRecord: 0.9ms)
2429
+
2430
+
2431
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:15:25 -0700
2432
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2433
+
2434
+
2435
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:15:25 -0700
2436
+ Served asset /jquery.js - 304 Not Modified (0ms)
2437
+
2438
+
2439
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:15:25 -0700
2440
+ Served asset /application.css - 304 Not Modified (0ms)
2441
+
2442
+
2443
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:15:25 -0700
2444
+ Served asset /application.js - 304 Not Modified (0ms)
2445
+
2446
+
2447
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:17:44 -0700
2448
+ Processing by Forem::TopicsController#create as HTML
2449
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Subject", "posts_attributes"=>{"0"=>{"text"=>"TextStuff"}}}, "commit"=>"Create Topic"}
2450
+  (0.1ms) BEGIN
2451
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:17:44 UTC +00:00], ["subject", "Subject"], ["updated_at", Tue, 01 May 2012 06:17:44 UTC +00:00], ["user_id", nil]]
2452
+  (1.9ms) COMMIT
2453
+  (0.2ms) BEGIN
2454
+ SQL (1.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:17:44 UTC +00:00], ["text", ["0", {"text"=>"TextStuff"}]], ["topic_id", 15], ["updated_at", Tue, 01 May 2012 06:17:44 UTC +00:00], ["user_id", nil]]
2455
+  (0.6ms) COMMIT
2456
+  (0.1ms) BEGIN
2457
+  (0.1ms) COMMIT
2458
+ Redirected to http://localhost:3000/forem/topics/15
2459
+ Completed 302 Found in 13ms (ActiveRecord: 4.6ms)
2460
+
2461
+
2462
+ Started GET "/forem/topics/15" for 127.0.0.1 at 2012-04-30 23:17:44 -0700
2463
+ Processing by Forem::TopicsController#show as HTML
2464
+ Parameters: {"id"=>"15"}
2465
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "15"]]
2466
+ Forem::Post Load (0.4ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 15 ORDER BY created_at ASC
2467
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (2.0ms)
2468
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (5.4ms)
2469
+ Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.8ms)
2470
+
2471
+
2472
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:17:44 -0700
2473
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2474
+
2475
+
2476
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:17:44 -0700
2477
+ Served asset /jquery.js - 304 Not Modified (0ms)
2478
+
2479
+
2480
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:17:44 -0700
2481
+ Served asset /application.css - 304 Not Modified (0ms)
2482
+
2483
+
2484
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:17:44 -0700
2485
+ Served asset /application.js - 304 Not Modified (0ms)
2486
+
2487
+
2488
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:18:53 -0700
2489
+ Processing by Forem::TopicsController#create as HTML
2490
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Subject", "posts_attributes"=>{"0"=>{"text"=>"TextStuff"}}}, "commit"=>"Create Topic"}
2491
+  (0.2ms) BEGIN
2492
+ SQL (0.5ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:18:53 UTC +00:00], ["subject", "Subject"], ["updated_at", Tue, 01 May 2012 06:18:53 UTC +00:00], ["user_id", nil]]
2493
+  (0.5ms) COMMIT
2494
+  (0.1ms) BEGIN
2495
+ SQL (1.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:18:53 UTC +00:00], ["text", ["0", {"text"=>"TextStuff"}]], ["topic_id", 16], ["updated_at", Tue, 01 May 2012 06:18:53 UTC +00:00], ["user_id", nil]]
2496
+  (0.5ms) COMMIT
2497
+  (0.1ms) BEGIN
2498
+  (0.1ms) COMMIT
2499
+ Redirected to http://localhost:3000/forem/topics/16
2500
+ Completed 302 Found in 12ms (ActiveRecord: 3.1ms)
2501
+
2502
+
2503
+ Started GET "/forem/topics/16" for 127.0.0.1 at 2012-04-30 23:18:53 -0700
2504
+ Processing by Forem::TopicsController#show as HTML
2505
+ Parameters: {"id"=>"16"}
2506
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "16"]]
2507
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 16 ORDER BY created_at ASC
2508
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (2.1ms)
2509
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (6.3ms)
2510
+ Completed 200 OK in 17ms (Views: 14.5ms | ActiveRecord: 0.8ms)
2511
+
2512
+
2513
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:18:53 -0700
2514
+ Served asset /jquery.js - 304 Not Modified (0ms)
2515
+
2516
+
2517
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:18:53 -0700
2518
+ Served asset /application.js - 304 Not Modified (0ms)
2519
+
2520
+
2521
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:18:53 -0700
2522
+ Served asset /application.css - 304 Not Modified (0ms)
2523
+
2524
+
2525
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:18:53 -0700
2526
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2527
+
2528
+
2529
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:19:45 -0700
2530
+ Processing by Forem::TopicsController#create as HTML
2531
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Raw", "posts_attributes"=>{"0"=>{"text"=>"Hopefully"}}}, "commit"=>"Create Topic"}
2532
+  (0.2ms) BEGIN
2533
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:19:45 UTC +00:00], ["subject", "Raw"], ["updated_at", Tue, 01 May 2012 06:19:45 UTC +00:00], ["user_id", nil]]
2534
+  (1.7ms) COMMIT
2535
+ Completed 500 Internal Server Error in 22ms
2536
+
2537
+ TypeError (can't convert Symbol into Integer):
2538
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:14:in `[]'
2539
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:14:in `block in create'
2540
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:13:in `each'
2541
+ /Users/neil/R3IA/forem/app/controllers/forem/topics_controller.rb:13:in `create'
2542
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2543
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
2544
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
2545
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2546
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__1449423058167117230__callbacks'
2547
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
2548
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2549
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
2550
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
2551
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
2552
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2553
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
2554
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2555
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
2556
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2557
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
2558
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2559
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
2560
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
2561
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
2562
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2563
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
2564
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
2565
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2566
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
2567
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2568
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
2569
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
2570
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
2571
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
2572
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
2573
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2574
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
2575
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
2576
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
2577
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2578
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2579
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
2580
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
2581
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2582
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
2583
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2584
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2585
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2586
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
2587
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
2588
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2589
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
2590
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
2591
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2592
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
2593
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2594
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2595
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2596
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2597
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2598
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
2599
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
2600
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2601
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2602
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2603
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2604
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2605
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
2606
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
2607
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
2608
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2609
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
2610
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2611
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2612
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2613
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2614
+
2615
+
2616
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (9.1ms)
2617
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.3ms)
2618
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.3ms)
2619
+
2620
+
2621
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:21:05 -0700
2622
+ Processing by Forem::TopicsController#create as HTML
2623
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Raw", "posts_attributes"=>{"0"=>{"text"=>"Hopefully"}}}, "commit"=>"Create Topic"}
2624
+  (0.2ms) BEGIN
2625
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:21:05 UTC +00:00], ["subject", "Raw"], ["updated_at", Tue, 01 May 2012 06:21:05 UTC +00:00], ["user_id", nil]]
2626
+  (0.5ms) COMMIT
2627
+  (0.2ms) BEGIN
2628
+ SQL (1.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:21:05 UTC +00:00], ["text", ["0", {"text"=>"Hopefully"}]], ["topic_id", 18], ["updated_at", Tue, 01 May 2012 06:21:05 UTC +00:00], ["user_id", nil]]
2629
+  (0.5ms) COMMIT
2630
+  (0.1ms) BEGIN
2631
+  (0.1ms) COMMIT
2632
+ Redirected to http://localhost:3000/forem/topics/18
2633
+ Completed 302 Found in 60ms (ActiveRecord: 8.4ms)
2634
+
2635
+
2636
+ Started GET "/forem/topics/18" for 127.0.0.1 at 2012-04-30 23:21:05 -0700
2637
+ Processing by Forem::TopicsController#show as HTML
2638
+ Parameters: {"id"=>"18"}
2639
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "18"]]
2640
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 18 ORDER BY created_at ASC
2641
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (3.8ms)
2642
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (8.8ms)
2643
+ Completed 200 OK in 21ms (Views: 17.7ms | ActiveRecord: 0.9ms)
2644
+
2645
+
2646
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:21:05 -0700
2647
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2648
+
2649
+
2650
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:21:05 -0700
2651
+ Served asset /application.js - 304 Not Modified (0ms)
2652
+
2653
+
2654
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:21:05 -0700
2655
+ Served asset /jquery.js - 304 Not Modified (0ms)
2656
+
2657
+
2658
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:21:05 -0700
2659
+ Served asset /application.css - 304 Not Modified (0ms)
2660
+
2661
+
2662
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:22:06 -0700
2663
+ Processing by Forem::TopicsController#create as HTML
2664
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Raw", "posts_attributes"=>{"0"=>{"text"=>"Hopefully"}}}, "commit"=>"Create Topic"}
2665
+  (0.2ms) BEGIN
2666
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:22:06 UTC +00:00], ["subject", "Raw"], ["updated_at", Tue, 01 May 2012 06:22:06 UTC +00:00], ["user_id", nil]]
2667
+  (0.8ms) COMMIT
2668
+  (0.2ms) BEGIN
2669
+ SQL (1.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:22:06 UTC +00:00], ["text", ["0", {"text"=>"Hopefully"}]], ["topic_id", 19], ["updated_at", Tue, 01 May 2012 06:22:06 UTC +00:00], ["user_id", nil]]
2670
+  (0.6ms) COMMIT
2671
+  (0.1ms) BEGIN
2672
+  (0.1ms) COMMIT
2673
+ Redirected to http://localhost:3000/forem/topics/19
2674
+ Completed 302 Found in 120ms (ActiveRecord: 10.0ms)
2675
+
2676
+
2677
+ Started GET "/forem/topics/19" for 127.0.0.1 at 2012-04-30 23:22:06 -0700
2678
+ Processing by Forem::TopicsController#show as HTML
2679
+ Parameters: {"id"=>"19"}
2680
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "19"]]
2681
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 19 ORDER BY created_at ASC
2682
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (3.1ms)
2683
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (7.7ms)
2684
+ Completed 200 OK in 20ms (Views: 17.1ms | ActiveRecord: 0.8ms)
2685
+
2686
+
2687
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:22:06 -0700
2688
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2689
+
2690
+
2691
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:22:06 -0700
2692
+ Served asset /application.js - 304 Not Modified (0ms)
2693
+
2694
+
2695
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:22:06 -0700
2696
+ Served asset /jquery.js - 304 Not Modified (0ms)
2697
+
2698
+
2699
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:22:06 -0700
2700
+ Served asset /application.css - 304 Not Modified (1ms)
2701
+
2702
+
2703
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:22:25 -0700
2704
+ Processing by Forem::TopicsController#create as HTML
2705
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Raw", "posts_attributes"=>{"0"=>{"text"=>"Hopefully"}}}, "commit"=>"Create Topic"}
2706
+  (0.3ms) BEGIN
2707
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:22:25 UTC +00:00], ["subject", "Raw"], ["updated_at", Tue, 01 May 2012 06:22:25 UTC +00:00], ["user_id", nil]]
2708
+  (0.5ms) COMMIT
2709
+  (0.2ms) BEGIN
2710
+ SQL (0.7ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:22:26 UTC +00:00], ["text", "Hopefully"], ["topic_id", 20], ["updated_at", Tue, 01 May 2012 06:22:26 UTC +00:00], ["user_id", nil]]
2711
+  (0.6ms) COMMIT
2712
+  (0.1ms) BEGIN
2713
+  (0.1ms) COMMIT
2714
+ Redirected to http://localhost:3000/forem/topics/20
2715
+ Completed 302 Found in 55ms (ActiveRecord: 8.1ms)
2716
+
2717
+
2718
+ Started GET "/forem/topics/20" for 127.0.0.1 at 2012-04-30 23:22:26 -0700
2719
+ Processing by Forem::TopicsController#show as HTML
2720
+ Parameters: {"id"=>"20"}
2721
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "20"]]
2722
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 20 ORDER BY created_at ASC
2723
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (3.3ms)
2724
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (8.2ms)
2725
+ Completed 200 OK in 21ms (Views: 17.0ms | ActiveRecord: 0.8ms)
2726
+
2727
+
2728
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:22:26 -0700
2729
+ Served asset /jquery.js - 304 Not Modified (0ms)
2730
+
2731
+
2732
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:22:26 -0700
2733
+ Served asset /application.css - 304 Not Modified (0ms)
2734
+
2735
+
2736
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:22:26 -0700
2737
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2738
+
2739
+
2740
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:22:26 -0700
2741
+ Served asset /application.js - 304 Not Modified (0ms)
2742
+
2743
+
2744
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:23:07 -0700
2745
+ Processing by Forem::TopicsController#create as HTML
2746
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Raw", "posts_attributes"=>{"0"=>{"text"=>"Hopefully"}}}, "commit"=>"Create Topic"}
2747
+  (0.2ms) BEGIN
2748
+ SQL (0.5ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:23:07 UTC +00:00], ["subject", "Raw"], ["updated_at", Tue, 01 May 2012 06:23:07 UTC +00:00], ["user_id", nil]]
2749
+  (0.5ms) COMMIT
2750
+  (0.1ms) BEGIN
2751
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:23:07 UTC +00:00], ["text", "Hopefully"], ["topic_id", 21], ["updated_at", Tue, 01 May 2012 06:23:07 UTC +00:00], ["user_id", nil]]
2752
+  (0.6ms) COMMIT
2753
+  (0.1ms) BEGIN
2754
+  (0.1ms) COMMIT
2755
+ Redirected to http://localhost:3000/forem/topics/21
2756
+ Completed 302 Found in 11ms (ActiveRecord: 2.6ms)
2757
+
2758
+
2759
+ Started GET "/forem/topics/21" for 127.0.0.1 at 2012-04-30 23:23:07 -0700
2760
+ Processing by Forem::TopicsController#show as HTML
2761
+ Parameters: {"id"=>"21"}
2762
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "21"]]
2763
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 21 ORDER BY created_at ASC
2764
+ ERROR: compiling ___sers_neil______forem_app_views_forem_posts__post_html_erb___2806316079464697564_2169498980 RAISED /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb:7: syntax error, unexpected '<', expecting ')'
2765
+ </p>
2766
+ ^
2767
+ /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb:7: unterminated regexp meets end of file
2768
+ Function body: def ___sers_neil______forem_app_views_forem_posts__post_html_erb___2806316079464697564_2169498980(local_assigns, output_buffer)
2769
+ _old_virtual_path, @virtual_path = @virtual_path, "forem/posts/_post";_old_output_buffer = @output_buffer;post = local_assigns[:post];post_counter = local_assigns[:post_counter];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= div_for(post) do @output_buffer.safe_concat('
2770
+ ');@output_buffer.safe_concat(' <small>Written at ');@output_buffer.append= ( post.created_at );@output_buffer.safe_concat('</small>
2771
+ <p>
2772
+ ');@output_buffer.append= ( "Post: [Text: #{post.text}, ");@output_buffer.safe_concat('
2773
+ ');@output_buffer.safe_concat(' ');@output_buffer.append= ( "post_id: #{post.topic_id}, ");@output_buffer.safe_concat('
2774
+ ');@output_buffer.safe_concat(' ');@output_buffer.append= ( "user_id: #{[post.user_id]}]"
2775
+ </p>
2776
+ <%= simple_format(post.text) );@output_buffer.safe_concat('
2777
+ '); end ;@output_buffer.to_s
2778
+ ensure
2779
+ @virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
2780
+ end
2781
+
2782
+ Backtrace: /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/template.rb:285:in `module_eval'
2783
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/template.rb:285:in `compile'
2784
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/template.rb:233:in `compile!'
2785
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/template.rb:142:in `block in render'
2786
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications.rb:125:in `instrument'
2787
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/template.rb:141:in `render'
2788
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/partial_renderer.rb:351:in `block in collection_with_template'
2789
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/partial_renderer.rb:348:in `each'
2790
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/partial_renderer.rb:348:in `collection_with_template'
2791
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/partial_renderer.rb:250:in `render_collection'
2792
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/partial_renderer.rb:234:in `block in render'
2793
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2794
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications.rb:123:in `block in instrument'
2795
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2796
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications.rb:123:in `instrument'
2797
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2798
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/partial_renderer.rb:233:in `render'
2799
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/renderer.rb:41:in `render_partial'
2800
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/renderer.rb:15:in `render'
2801
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/helpers/rendering_helper.rb:24:in `render'
2802
+ /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb:4:in `block in ___sers_neil______forem_app_views_forem_topics_show_html_erb__668998450875651642_2152476400'
2803
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
2804
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
2805
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/helpers/capture_helper.rb:40:in `capture'
2806
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/helpers/record_tag_helper.rb:102:in `content_tag_for_single_record'
2807
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/helpers/record_tag_helper.rb:89:in `content_tag_for'
2808
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/helpers/record_tag_helper.rb:34:in `div_for'
2809
+ /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb:1:in `___sers_neil______forem_app_views_forem_topics_show_html_erb__668998450875651642_2152476400'
2810
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/template.rb:143:in `block in render'
2811
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications.rb:125:in `instrument'
2812
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/template.rb:141:in `render'
2813
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2814
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2815
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications.rb:123:in `block in instrument'
2816
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2817
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications.rb:123:in `instrument'
2818
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2819
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2820
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2821
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2822
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/template_renderer.rb:18:in `render'
2823
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/renderer.rb:36:in `render_template'
2824
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_view/renderer/renderer.rb:17:in `render'
2825
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/abstract_controller/rendering.rb:110:in `_render_template'
2826
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/streaming.rb:225:in `_render_template'
2827
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/abstract_controller/rendering.rb:103:in `render_to_body'
2828
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2829
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2830
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/abstract_controller/rendering.rb:88:in `render'
2831
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/rendering.rb:16:in `render'
2832
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2833
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2834
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
2835
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/core_ext/benchmark.rb:5:in `ms'
2836
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2837
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2838
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activerecord-3.2.3/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2839
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/instrumentation.rb:39:in `render'
2840
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2841
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2842
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/abstract_controller/base.rb:167:in `process_action'
2843
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/rendering.rb:10:in `process_action'
2844
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2845
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__2251763566437454448__callbacks'
2846
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/callbacks.rb:405:in `__run_callback'
2847
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2848
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/callbacks.rb:81:in `run_callbacks'
2849
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/abstract_controller/callbacks.rb:17:in `process_action'
2850
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/rescue.rb:29:in `process_action'
2851
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2852
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications.rb:123:in `block in instrument'
2853
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2854
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/notifications.rb:123:in `instrument'
2855
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2856
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
2857
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activerecord-3.2.3/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2858
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/abstract_controller/base.rb:121:in `process'
2859
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/abstract_controller/rendering.rb:45:in `process'
2860
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal.rb:203:in `dispatch'
2861
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2862
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_controller/metal.rb:246:in `block in action'
2863
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/routing/route_set.rb:73:in `call'
2864
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2865
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/routing/route_set.rb:36:in `call'
2866
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/journey-1.0.3/lib/journey/router.rb:68:in `block in call'
2867
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/journey-1.0.3/lib/journey/router.rb:56:in `each'
2868
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/journey-1.0.3/lib/journey/router.rb:56:in `call'
2869
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/routing/route_set.rb:600:in `call'
2870
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/railties-3.2.3/lib/rails/engine.rb:479:in `call'
2871
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/railties-3.2.3/lib/rails/railtie/configurable.rb:30:in `method_missing'
2872
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/journey-1.0.3/lib/journey/router.rb:68:in `block in call'
2873
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/journey-1.0.3/lib/journey/router.rb:56:in `each'
2874
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/journey-1.0.3/lib/journey/router.rb:56:in `call'
2875
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/routing/route_set.rb:600:in `call'
2876
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2877
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
2878
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/rack-1.4.1/lib/rack/conditionalget.rb:25:in `call'
2879
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/head.rb:14:in `call'
2880
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2881
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/flash.rb:242:in `call'
2882
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
2883
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
2884
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/cookies.rb:338:in `call'
2885
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activerecord-3.2.3/lib/active_record/query_cache.rb:64:in `call'
2886
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activerecord-3.2.3/lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
2887
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2888
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
2889
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/callbacks.rb:405:in `__run_callback'
2890
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2891
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/callbacks.rb:81:in `run_callbacks'
2892
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2893
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/reloader.rb:65:in `call'
2894
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2895
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2896
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2897
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/railties-3.2.3/lib/rails/rack/logger.rb:26:in `call_app'
2898
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/railties-3.2.3/lib/rails/rack/logger.rb:16:in `call'
2899
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/request_id.rb:22:in `call'
2900
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/rack-1.4.1/lib/rack/methodoverride.rb:21:in `call'
2901
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
2902
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/activesupport-3.2.3/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2903
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
2904
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/static.rb:62:in `call'
2905
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/railties-3.2.3/lib/rails/engine.rb:479:in `call'
2906
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/railties-3.2.3/lib/rails/application.rb:220:in `call'
2907
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/rack-1.4.1/lib/rack/content_length.rb:14:in `call'
2908
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/railties-3.2.3/lib/rails/rack/log_tailer.rb:14:in `call'
2909
+ /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/rack-1.4.1/lib/rack/handler/webrick.rb:59:in `service'
2910
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2911
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2912
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2913
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (1.7ms)
2914
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (5.3ms)
2915
+ Completed 500 Internal Server Error in 11ms
2916
+
2917
+ ActionView::Template::Error (/Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb:7: syntax error, unexpected '<', expecting ')'
2918
+ </p>
2919
+ ^
2920
+ /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb:7: unterminated regexp meets end of file):
2921
+ 4: <%= "Post: [Text: #{post.text}, "%>
2922
+ 5: <%= "post_id: #{post.topic_id}, "%>
2923
+ 6: <%= "user_id: #{[post.user_id]}]"
2924
+ 7: </p>
2925
+ 8: <%= simple_format(post.text) %>
2926
+ 9: <% end %>
2927
+ actionpack (3.2.3) lib/action_view/template.rb:285:in `module_eval'
2928
+ actionpack (3.2.3) lib/action_view/template.rb:285:in `compile'
2929
+ actionpack (3.2.3) lib/action_view/template.rb:233:in `compile!'
2930
+ actionpack (3.2.3) lib/action_view/template.rb:142:in `block in render'
2931
+ activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument'
2932
+ actionpack (3.2.3) lib/action_view/template.rb:141:in `render'
2933
+ actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:351:in `block in collection_with_template'
2934
+ actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:348:in `each'
2935
+ actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:348:in `collection_with_template'
2936
+ actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:250:in `render_collection'
2937
+ actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:234:in `block in render'
2938
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2939
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
2940
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2941
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
2942
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2943
+ actionpack (3.2.3) lib/action_view/renderer/partial_renderer.rb:233:in `render'
2944
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:41:in `render_partial'
2945
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:15:in `render'
2946
+ actionpack (3.2.3) lib/action_view/helpers/rendering_helper.rb:24:in `render'
2947
+ /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb:4:in `block in ___sers_neil______forem_app_views_forem_topics_show_html_erb__668998450875651642_2152476400'
2948
+ actionpack (3.2.3) lib/action_view/helpers/capture_helper.rb:40:in `block in capture'
2949
+ actionpack (3.2.3) lib/action_view/helpers/capture_helper.rb:187:in `with_output_buffer'
2950
+ actionpack (3.2.3) lib/action_view/helpers/capture_helper.rb:40:in `capture'
2951
+ actionpack (3.2.3) lib/action_view/helpers/record_tag_helper.rb:102:in `content_tag_for_single_record'
2952
+ actionpack (3.2.3) lib/action_view/helpers/record_tag_helper.rb:89:in `content_tag_for'
2953
+ actionpack (3.2.3) lib/action_view/helpers/record_tag_helper.rb:34:in `div_for'
2954
+ /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb:1:in `___sers_neil______forem_app_views_forem_topics_show_html_erb__668998450875651642_2152476400'
2955
+ actionpack (3.2.3) lib/action_view/template.rb:143:in `block in render'
2956
+ activesupport (3.2.3) lib/active_support/notifications.rb:125:in `instrument'
2957
+ actionpack (3.2.3) lib/action_view/template.rb:141:in `render'
2958
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
2959
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2960
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
2961
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2962
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
2963
+ actionpack (3.2.3) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2964
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
2965
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
2966
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
2967
+ actionpack (3.2.3) lib/action_view/renderer/template_renderer.rb:18:in `render'
2968
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:36:in `render_template'
2969
+ actionpack (3.2.3) lib/action_view/renderer/renderer.rb:17:in `render'
2970
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:110:in `_render_template'
2971
+ actionpack (3.2.3) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2972
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2973
+ actionpack (3.2.3) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2974
+ actionpack (3.2.3) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2975
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:88:in `render'
2976
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
2977
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2978
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2979
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
2980
+ activesupport (3.2.3) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2981
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2982
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2983
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2984
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:39:in `render'
2985
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2986
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2987
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
2988
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
2989
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2990
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__4515316087714163467__process_action__2251763566437454448__callbacks'
2991
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
2992
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2993
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
2994
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
2995
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
2996
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2997
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
2998
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2999
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
3000
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3001
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
3002
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3003
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
3004
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
3005
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
3006
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3007
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
3008
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
3009
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3010
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
3011
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
3012
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
3013
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
3014
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
3015
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
3016
+ railties (3.2.3) lib/rails/railtie/configurable.rb:30:in `method_missing'
3017
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
3018
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
3019
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
3020
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
3021
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3022
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
3023
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
3024
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
3025
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3026
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
3027
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
3028
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
3029
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
3030
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
3031
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
3032
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3033
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__33680683776043358__call__2154326977566895874__callbacks'
3034
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
3035
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3036
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
3037
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3038
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3039
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3040
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3041
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3042
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
3043
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
3044
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3045
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
3046
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
3047
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3048
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
3049
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
3050
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
3051
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
3052
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
3053
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
3054
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
3055
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
3056
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
3057
+ /Users/neil/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
3058
+
3059
+
3060
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (13.6ms)
3061
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.7ms)
3062
+ Rendered /Users/neil/.rvm/gems/ruby-1.9.2-p290@rails311/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (28.8ms)
3063
+
3064
+
3065
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:23:19 -0700
3066
+ Processing by Forem::TopicsController#create as HTML
3067
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Raw", "posts_attributes"=>{"0"=>{"text"=>"Hopefully"}}}, "commit"=>"Create Topic"}
3068
+  (0.2ms) BEGIN
3069
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:23:19 UTC +00:00], ["subject", "Raw"], ["updated_at", Tue, 01 May 2012 06:23:19 UTC +00:00], ["user_id", nil]]
3070
+  (0.5ms) COMMIT
3071
+  (0.1ms) BEGIN
3072
+ SQL (0.6ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:23:19 UTC +00:00], ["text", "Hopefully"], ["topic_id", 22], ["updated_at", Tue, 01 May 2012 06:23:19 UTC +00:00], ["user_id", nil]]
3073
+  (0.6ms) COMMIT
3074
+  (0.1ms) BEGIN
3075
+  (0.1ms) COMMIT
3076
+ Redirected to http://localhost:3000/forem/topics/22
3077
+ Completed 302 Found in 12ms (ActiveRecord: 2.8ms)
3078
+
3079
+
3080
+ Started GET "/forem/topics/22" for 127.0.0.1 at 2012-04-30 23:23:19 -0700
3081
+ Processing by Forem::TopicsController#show as HTML
3082
+ Parameters: {"id"=>"22"}
3083
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "22"]]
3084
+ Forem::Post Load (0.4ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 22 ORDER BY created_at ASC
3085
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (2.0ms)
3086
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (5.9ms)
3087
+ Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.8ms)
3088
+
3089
+
3090
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:23:19 -0700
3091
+ Served asset /application.js - 304 Not Modified (0ms)
3092
+
3093
+
3094
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:23:19 -0700
3095
+ Served asset /jquery.js - 304 Not Modified (0ms)
3096
+
3097
+
3098
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:23:19 -0700
3099
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3100
+
3101
+
3102
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:23:19 -0700
3103
+ Served asset /application.css - 304 Not Modified (0ms)
3104
+
3105
+
3106
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:25:49 -0700
3107
+ Processing by Forem::TopicsController#create as HTML
3108
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Raw", "posts_attributes"=>{"0"=>{"text"=>"Hopefully"}}}, "commit"=>"Create Topic"}
3109
+  (0.2ms) BEGIN
3110
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:25:49 UTC +00:00], ["subject", "Raw"], ["updated_at", Tue, 01 May 2012 06:25:49 UTC +00:00], ["user_id", nil]]
3111
+  (0.6ms) COMMIT
3112
+  (0.1ms) BEGIN
3113
+ SQL (0.6ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:25:49 UTC +00:00], ["text", "Hopefully"], ["topic_id", 23], ["updated_at", Tue, 01 May 2012 06:25:49 UTC +00:00], ["user_id", nil]]
3114
+  (0.6ms) COMMIT
3115
+  (0.1ms) BEGIN
3116
+  (0.1ms) COMMIT
3117
+ Redirected to http://localhost:3000/forem/topics/23
3118
+ Completed 302 Found in 13ms (ActiveRecord: 2.9ms)
3119
+
3120
+
3121
+ Started GET "/forem/topics/23" for 127.0.0.1 at 2012-04-30 23:25:49 -0700
3122
+ Processing by Forem::TopicsController#show as HTML
3123
+ Parameters: {"id"=>"23"}
3124
+ Forem::Topic Load (0.5ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "23"]]
3125
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 23 ORDER BY created_at ASC
3126
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (1.1ms)
3127
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (5.3ms)
3128
+ Completed 200 OK in 20ms (Views: 17.2ms | ActiveRecord: 1.0ms)
3129
+
3130
+
3131
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:25:50 -0700
3132
+ Served asset /jquery.js - 304 Not Modified (0ms)
3133
+
3134
+
3135
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:25:50 -0700
3136
+ Served asset /application.js - 304 Not Modified (0ms)
3137
+
3138
+
3139
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:25:50 -0700
3140
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3141
+
3142
+
3143
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:25:50 -0700
3144
+ Served asset /application.css - 304 Not Modified (0ms)
3145
+
3146
+
3147
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:26:32 -0700
3148
+ Processing by Forem::TopicsController#create as HTML
3149
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"Raw", "posts_attributes"=>{"0"=>{"text"=>"Hopefully"}}}, "commit"=>"Create Topic"}
3150
+  (0.2ms) BEGIN
3151
+ SQL (2.0ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:26:32 UTC +00:00], ["subject", "Raw"], ["updated_at", Tue, 01 May 2012 06:26:32 UTC +00:00], ["user_id", nil]]
3152
+  (0.7ms) COMMIT
3153
+  (0.1ms) BEGIN
3154
+ SQL (0.7ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:26:32 UTC +00:00], ["text", "Hopefully"], ["topic_id", 24], ["updated_at", Tue, 01 May 2012 06:26:32 UTC +00:00], ["user_id", nil]]
3155
+  (0.6ms) COMMIT
3156
+  (0.1ms) BEGIN
3157
+  (0.1ms) COMMIT
3158
+ Redirected to http://localhost:3000/forem/topics/24
3159
+ Completed 302 Found in 18ms (ActiveRecord: 4.5ms)
3160
+
3161
+
3162
+ Started GET "/forem/topics/24" for 127.0.0.1 at 2012-04-30 23:26:32 -0700
3163
+ Processing by Forem::TopicsController#show as HTML
3164
+ Parameters: {"id"=>"24"}
3165
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "24"]]
3166
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 24 ORDER BY created_at ASC
3167
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.8ms)
3168
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (4.2ms)
3169
+ Completed 200 OK in 25ms (Views: 20.5ms | ActiveRecord: 0.8ms)
3170
+
3171
+
3172
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:26:32 -0700
3173
+ Served asset /jquery.js - 304 Not Modified (0ms)
3174
+
3175
+
3176
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:26:32 -0700
3177
+ Served asset /application.js - 304 Not Modified (0ms)
3178
+
3179
+
3180
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:26:32 -0700
3181
+ Served asset /application.css - 304 Not Modified (0ms)
3182
+
3183
+
3184
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:26:32 -0700
3185
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3186
+
3187
+
3188
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 23:28:52 -0700
3189
+ Processing by Forem::TopicsController#new as HTML
3190
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (1.3ms)
3191
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (7.4ms)
3192
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (8.8ms)
3193
+ Completed 200 OK in 20ms (Views: 17.5ms | ActiveRecord: 0.0ms)
3194
+
3195
+
3196
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:28:52 -0700
3197
+ Served asset /jquery.js - 304 Not Modified (0ms)
3198
+
3199
+
3200
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:28:52 -0700
3201
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3202
+
3203
+
3204
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:28:52 -0700
3205
+ Served asset /application.js - 304 Not Modified (0ms)
3206
+
3207
+
3208
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:28:52 -0700
3209
+ Served asset /application.css - 304 Not Modified (0ms)
3210
+
3211
+
3212
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:28:56 -0700
3213
+ Processing by Forem::TopicsController#create as HTML
3214
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"ddd", "posts_attributes"=>{"0"=>{"text"=>"ddddd"}}}, "commit"=>"Create Topic"}
3215
+  (0.2ms) BEGIN
3216
+ SQL (0.5ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:28:56 UTC +00:00], ["subject", "ddd"], ["updated_at", Tue, 01 May 2012 06:28:56 UTC +00:00], ["user_id", nil]]
3217
+  (0.5ms) COMMIT
3218
+  (0.1ms) BEGIN
3219
+ SQL (0.6ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:28:56 UTC +00:00], ["text", "ddddd"], ["topic_id", 25], ["updated_at", Tue, 01 May 2012 06:28:56 UTC +00:00], ["user_id", nil]]
3220
+  (0.8ms) COMMIT
3221
+  (0.1ms) BEGIN
3222
+  (0.1ms) COMMIT
3223
+ Redirected to http://localhost:3000/forem/topics/25
3224
+ Completed 302 Found in 11ms (ActiveRecord: 2.8ms)
3225
+
3226
+
3227
+ Started GET "/forem/topics/25" for 127.0.0.1 at 2012-04-30 23:28:56 -0700
3228
+ Processing by Forem::TopicsController#show as HTML
3229
+ Parameters: {"id"=>"25"}
3230
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "25"]]
3231
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 25 ORDER BY created_at ASC
3232
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.8ms)
3233
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (4.4ms)
3234
+ Completed 200 OK in 16ms (Views: 13.4ms | ActiveRecord: 0.9ms)
3235
+
3236
+
3237
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:28:56 -0700
3238
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3239
+
3240
+
3241
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:28:56 -0700
3242
+ Served asset /jquery.js - 304 Not Modified (0ms)
3243
+
3244
+
3245
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:28:56 -0700
3246
+ Served asset /application.css - 304 Not Modified (1ms)
3247
+
3248
+
3249
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:28:56 -0700
3250
+ Served asset /application.js - 304 Not Modified (0ms)
3251
+
3252
+
3253
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 23:29:47 -0700
3254
+ Processing by Forem::TopicsController#new as HTML
3255
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (1.2ms)
3256
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (6.2ms)
3257
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (8.2ms)
3258
+ Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms)
3259
+
3260
+
3261
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:29:47 -0700
3262
+ Served asset /application.css - 304 Not Modified (0ms)
3263
+
3264
+
3265
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:29:47 -0700
3266
+ Served asset /jquery.js - 304 Not Modified (0ms)
3267
+
3268
+
3269
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:29:47 -0700
3270
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3271
+
3272
+
3273
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:29:47 -0700
3274
+ Served asset /application.js - 304 Not Modified (0ms)
3275
+
3276
+
3277
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:29:53 -0700
3278
+ Processing by Forem::TopicsController#create as HTML
3279
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"ddd", "posts_attributes"=>{"0"=>{"text"=>"adfdg"}}}, "commit"=>"Create Topic"}
3280
+  (0.2ms) BEGIN
3281
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:29:54 UTC +00:00], ["subject", "ddd"], ["updated_at", Tue, 01 May 2012 06:29:54 UTC +00:00], ["user_id", nil]]
3282
+  (0.5ms) COMMIT
3283
+  (0.1ms) BEGIN
3284
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:29:54 UTC +00:00], ["text", "adfdg"], ["topic_id", 26], ["updated_at", Tue, 01 May 2012 06:29:54 UTC +00:00], ["user_id", nil]]
3285
+  (0.5ms) COMMIT
3286
+  (0.1ms) BEGIN
3287
+  (0.1ms) COMMIT
3288
+ Redirected to http://localhost:3000/forem/topics/26
3289
+ Completed 302 Found in 11ms (ActiveRecord: 2.6ms)
3290
+
3291
+
3292
+ Started GET "/forem/topics/26" for 127.0.0.1 at 2012-04-30 23:29:54 -0700
3293
+ Processing by Forem::TopicsController#show as HTML
3294
+ Parameters: {"id"=>"26"}
3295
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "26"]]
3296
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 26 ORDER BY created_at ASC
3297
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.8ms)
3298
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (4.8ms)
3299
+ Completed 200 OK in 95ms (Views: 92.9ms | ActiveRecord: 0.9ms)
3300
+
3301
+
3302
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:29:54 -0700
3303
+ Served asset /application.js - 304 Not Modified (3ms)
3304
+
3305
+
3306
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:29:54 -0700
3307
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3308
+
3309
+
3310
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:29:54 -0700
3311
+ Served asset /jquery.js - 304 Not Modified (0ms)
3312
+
3313
+
3314
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:29:54 -0700
3315
+ Served asset /application.css - 304 Not Modified (0ms)
3316
+
3317
+
3318
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 23:30:41 -0700
3319
+ Processing by Forem::TopicsController#new as HTML
3320
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (1.5ms)
3321
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (7.1ms)
3322
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (8.9ms)
3323
+ Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.0ms)
3324
+
3325
+
3326
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:30:42 -0700
3327
+ Served asset /jquery.js - 304 Not Modified (0ms)
3328
+
3329
+
3330
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:30:42 -0700
3331
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3332
+
3333
+
3334
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:30:42 -0700
3335
+ Served asset /application.css - 304 Not Modified (0ms)
3336
+
3337
+
3338
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:30:42 -0700
3339
+ Served asset /application.js - 304 Not Modified (0ms)
3340
+
3341
+
3342
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:30:49 -0700
3343
+ Processing by Forem::TopicsController#create as HTML
3344
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"fgg", "posts_attributes"=>{"0"=>{"text"=>"gsfghfsfadfsdf"}}}, "commit"=>"Create Topic"}
3345
+  (0.2ms) BEGIN
3346
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:30:49 UTC +00:00], ["subject", "fgg"], ["updated_at", Tue, 01 May 2012 06:30:49 UTC +00:00], ["user_id", nil]]
3347
+  (4.8ms) COMMIT
3348
+  (0.1ms) BEGIN
3349
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:30:49 UTC +00:00], ["text", "gsfghfsfadfsdf"], ["topic_id", 27], ["updated_at", Tue, 01 May 2012 06:30:49 UTC +00:00], ["user_id", nil]]
3350
+  (0.6ms) COMMIT
3351
+  (0.1ms) BEGIN
3352
+  (0.1ms) COMMIT
3353
+ Redirected to http://localhost:3000/forem/topics/27
3354
+ Completed 302 Found in 16ms (ActiveRecord: 7.0ms)
3355
+
3356
+
3357
+ Started GET "/forem/topics/27" for 127.0.0.1 at 2012-04-30 23:30:49 -0700
3358
+ Processing by Forem::TopicsController#show as HTML
3359
+ Parameters: {"id"=>"27"}
3360
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "27"]]
3361
+ Forem::Post Load (0.6ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 27 ORDER BY created_at ASC
3362
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.9ms)
3363
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (5.8ms)
3364
+ Completed 200 OK in 20ms (Views: 16.0ms | ActiveRecord: 1.0ms)
3365
+
3366
+
3367
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:30:49 -0700
3368
+ Served asset /jquery.js - 304 Not Modified (0ms)
3369
+
3370
+
3371
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:30:49 -0700
3372
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3373
+
3374
+
3375
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:30:49 -0700
3376
+ Served asset /application.css - 304 Not Modified (0ms)
3377
+
3378
+
3379
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:30:49 -0700
3380
+ Served asset /application.js - 304 Not Modified (0ms)
3381
+
3382
+
3383
+ Started GET "/forem/topics/27" for 127.0.0.1 at 2012-04-30 23:31:30 -0700
3384
+ Processing by Forem::TopicsController#show as HTML
3385
+ Parameters: {"id"=>"27"}
3386
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "27"]]
3387
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 27 ORDER BY created_at ASC
3388
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.7ms)
3389
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (4.2ms)
3390
+ Completed 200 OK in 14ms (Views: 11.4ms | ActiveRecord: 0.9ms)
3391
+
3392
+
3393
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:30 -0700
3394
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3395
+
3396
+
3397
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:30 -0700
3398
+ Served asset /jquery.js - 304 Not Modified (0ms)
3399
+
3400
+
3401
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:30 -0700
3402
+ Served asset /application.js - 304 Not Modified (0ms)
3403
+
3404
+
3405
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:31:30 -0700
3406
+ Served asset /application.css - 304 Not Modified (0ms)
3407
+
3408
+
3409
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 23:31:35 -0700
3410
+ Processing by Forem::TopicsController#new as HTML
3411
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (1.1ms)
3412
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (6.8ms)
3413
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (8.1ms)
3414
+ Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.0ms)
3415
+
3416
+
3417
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:31:35 -0700
3418
+ Served asset /application.css - 304 Not Modified (0ms)
3419
+
3420
+
3421
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:35 -0700
3422
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3423
+
3424
+
3425
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:35 -0700
3426
+ Served asset /jquery.js - 304 Not Modified (0ms)
3427
+
3428
+
3429
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:35 -0700
3430
+ Served asset /application.js - 304 Not Modified (0ms)
3431
+
3432
+
3433
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:31:39 -0700
3434
+ Processing by Forem::TopicsController#create as HTML
3435
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"dddd", "posts_attributes"=>{"0"=>{"text"=>"ddddd"}}}, "commit"=>"Create Topic"}
3436
+  (0.2ms) BEGIN
3437
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:31:39 UTC +00:00], ["subject", "dddd"], ["updated_at", Tue, 01 May 2012 06:31:39 UTC +00:00], ["user_id", nil]]
3438
+  (0.6ms) COMMIT
3439
+  (0.1ms) BEGIN
3440
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:31:39 UTC +00:00], ["text", "ddddd"], ["topic_id", 28], ["updated_at", Tue, 01 May 2012 06:31:39 UTC +00:00], ["user_id", nil]]
3441
+  (0.5ms) COMMIT
3442
+  (0.1ms) BEGIN
3443
+  (0.1ms) COMMIT
3444
+ Redirected to http://localhost:3000/forem/topics/28
3445
+ Completed 302 Found in 11ms (ActiveRecord: 2.8ms)
3446
+
3447
+
3448
+ Started GET "/forem/topics/28" for 127.0.0.1 at 2012-04-30 23:31:39 -0700
3449
+ Processing by Forem::TopicsController#show as HTML
3450
+ Parameters: {"id"=>"28"}
3451
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "28"]]
3452
+ Forem::Post Load (0.4ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 28 ORDER BY created_at ASC
3453
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.7ms)
3454
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (4.2ms)
3455
+ Completed 200 OK in 14ms (Views: 11.8ms | ActiveRecord: 0.8ms)
3456
+
3457
+
3458
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:39 -0700
3459
+ Served asset /jquery.js - 304 Not Modified (0ms)
3460
+
3461
+
3462
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:39 -0700
3463
+ Served asset /application.js - 304 Not Modified (0ms)
3464
+
3465
+
3466
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:39 -0700
3467
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3468
+
3469
+
3470
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:31:39 -0700
3471
+ Served asset /application.css - 304 Not Modified (0ms)
3472
+
3473
+
3474
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2012-04-30 23:31:53 -0700
3475
+ Processing by Forem::TopicsController#new as HTML
3476
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_form.html.erb (1.2ms)
3477
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/_form.html.erb (6.8ms)
3478
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/new.html.erb within layouts/application (8.0ms)
3479
+ Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.0ms)
3480
+
3481
+
3482
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:53 -0700
3483
+ Served asset /jquery.js - 304 Not Modified (0ms)
3484
+
3485
+
3486
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:53 -0700
3487
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3488
+
3489
+
3490
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:53 -0700
3491
+ Served asset /application.js - 304 Not Modified (0ms)
3492
+
3493
+
3494
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:31:53 -0700
3495
+ Served asset /application.css - 304 Not Modified (0ms)
3496
+
3497
+
3498
+ Started POST "/forem/topics" for 127.0.0.1 at 2012-04-30 23:31:56 -0700
3499
+ Processing by Forem::TopicsController#create as HTML
3500
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"r3QktVWRAquyN2KzIyZGGJDlNHbM91/pH8SKkBSqhZg=", "topic"=>{"subject"=>"afdags", "posts_attributes"=>{"0"=>{"text"=>"adgadsg"}}}, "commit"=>"Create Topic"}
3501
+  (0.2ms) BEGIN
3502
+ SQL (0.9ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES ($1, $2, $3, $4) RETURNING "id" [["created_at", Tue, 01 May 2012 06:31:56 UTC +00:00], ["subject", "afdags"], ["updated_at", Tue, 01 May 2012 06:31:56 UTC +00:00], ["user_id", nil]]
3503
+  (0.6ms) COMMIT
3504
+  (0.1ms) BEGIN
3505
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["created_at", Tue, 01 May 2012 06:31:56 UTC +00:00], ["text", "adgadsg"], ["topic_id", 29], ["updated_at", Tue, 01 May 2012 06:31:56 UTC +00:00], ["user_id", nil]]
3506
+  (0.5ms) COMMIT
3507
+  (0.1ms) BEGIN
3508
+  (0.1ms) COMMIT
3509
+ Redirected to http://localhost:3000/forem/topics/29
3510
+ Completed 302 Found in 12ms (ActiveRecord: 2.9ms)
3511
+
3512
+
3513
+ Started GET "/forem/topics/29" for 127.0.0.1 at 2012-04-30 23:31:56 -0700
3514
+ Processing by Forem::TopicsController#show as HTML
3515
+ Parameters: {"id"=>"29"}
3516
+ Forem::Topic Load (0.4ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "29"]]
3517
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 29 ORDER BY created_at ASC
3518
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (0.8ms)
3519
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (4.7ms)
3520
+ Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.9ms)
3521
+
3522
+
3523
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:57 -0700
3524
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3525
+
3526
+
3527
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:31:57 -0700
3528
+ Served asset /application.css - 304 Not Modified (0ms)
3529
+
3530
+
3531
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:57 -0700
3532
+ Served asset /jquery.js - 304 Not Modified (0ms)
3533
+
3534
+
3535
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:31:57 -0700
3536
+ Served asset /application.js - 304 Not Modified (6ms)
3537
+
3538
+
3539
+ Started GET "/forem/topics/29" for 127.0.0.1 at 2012-04-30 23:32:17 -0700
3540
+ Processing by Forem::TopicsController#show as HTML
3541
+ Parameters: {"id"=>"29"}
3542
+ Forem::Topic Load (0.9ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "29"]]
3543
+ Forem::Post Load (0.8ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 29 ORDER BY created_at ASC
3544
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (64.7ms)
3545
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (331.0ms)
3546
+ Completed 200 OK in 708ms (Views: 486.7ms | ActiveRecord: 31.7ms)
3547
+
3548
+
3549
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:32:19 -0700
3550
+ Served asset /jquery.js - 304 Not Modified (18ms)
3551
+
3552
+
3553
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:32:19 -0700
3554
+ Served asset /jquery_ujs.js - 304 Not Modified (4ms)
3555
+
3556
+
3557
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:32:19 -0700
3558
+ Served asset /application.js - 304 Not Modified (11ms)
3559
+
3560
+
3561
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:32:19 -0700
3562
+ Served asset /application.css - 304 Not Modified (4ms)
3563
+
3564
+
3565
+ Started GET "/forem/topics/29" for 127.0.0.1 at 2012-04-30 23:32:48 -0700
3566
+ Processing by Forem::TopicsController#show as HTML
3567
+ Parameters: {"id"=>"29"}
3568
+ Forem::Topic Load (0.5ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = $1 LIMIT 1 [["id", "29"]]
3569
+ Forem::Post Load (0.5ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 29 ORDER BY created_at ASC
3570
+ Rendered /Users/neil/R3IA/forem/app/views/forem/posts/_post.html.erb (1.1ms)
3571
+ Rendered /Users/neil/R3IA/forem/app/views/forem/topics/show.html.erb within layouts/application (5.1ms)
3572
+ Completed 200 OK in 17ms (Views: 13.8ms | ActiveRecord: 1.0ms)
3573
+
3574
+
3575
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-04-30 23:32:48 -0700
3576
+ Served asset /jquery.js - 304 Not Modified (0ms)
3577
+
3578
+
3579
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-04-30 23:32:48 -0700
3580
+ Served asset /application.css - 304 Not Modified (0ms)
3581
+
3582
+
3583
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-04-30 23:32:48 -0700
3584
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3585
+
3586
+
3587
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-04-30 23:32:48 -0700
3588
+ Served asset /application.js - 304 Not Modified (0ms)