ak2196-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 (109) hide show
  1. data/.gitignore +6 -0
  2. data/Gemfile +17 -0
  3. data/Gemfile.lock +135 -0
  4. data/MIT-LICENSE +20 -0
  5. data/README.rdoc +3 -0
  6. data/Rakefile +34 -0
  7. data/ak2196-forem.gemspec +27 -0
  8. data/app/assets/images/forem/.gitkeep +0 -0
  9. data/app/assets/javascripts/forem/application.js +9 -0
  10. data/app/assets/javascripts/forem/posts.js +2 -0
  11. data/app/assets/javascripts/forem/topics.js +2 -0
  12. data/app/assets/stylesheets/forem/application.css +7 -0
  13. data/app/assets/stylesheets/forem/posts.css +4 -0
  14. data/app/assets/stylesheets/forem/topics.css +4 -0
  15. data/app/controllers/forem/application_controller.rb +11 -0
  16. data/app/controllers/forem/posts_controller.rb +22 -0
  17. data/app/controllers/forem/topics_controller.rb +23 -0
  18. data/app/helpers/forem/application_helper.rb +4 -0
  19. data/app/helpers/forem/posts_helper.rb +4 -0
  20. data/app/helpers/forem/topics_helper.rb +4 -0
  21. data/app/models/forem/post.rb +6 -0
  22. data/app/models/forem/topic.rb +14 -0
  23. data/app/views/forem/posts/_form.html.erb +4 -0
  24. data/app/views/forem/posts/_post.html.erb +6 -0
  25. data/app/views/forem/posts/new.html.erb +5 -0
  26. data/app/views/forem/topics/_form.html.erb +11 -0
  27. data/app/views/forem/topics/index.html.erb +26 -0
  28. data/app/views/forem/topics/new.html.erb +2 -0
  29. data/app/views/forem/topics/show.html.erb +6 -0
  30. data/bin/autospec +16 -0
  31. data/bin/erubis +16 -0
  32. data/bin/htmldiff +16 -0
  33. data/bin/ldiff +16 -0
  34. data/bin/nokogiri +16 -0
  35. data/bin/rackup +16 -0
  36. data/bin/rails +16 -0
  37. data/bin/rake +16 -0
  38. data/bin/rake2thor +16 -0
  39. data/bin/rdoc +16 -0
  40. data/bin/ri +16 -0
  41. data/bin/rspec +16 -0
  42. data/bin/thor +16 -0
  43. data/bin/tilt +16 -0
  44. data/bin/tt +16 -0
  45. data/config/routes.rb +6 -0
  46. data/db/migrate/20111124070524_create_forem_topics.rb +10 -0
  47. data/db/migrate/20111124195355_create_forem_posts.rb +11 -0
  48. data/db/migrate/20111124230339_add_posts_count_to_forem_topics.rb +5 -0
  49. data/lib/forem/engine.rb +18 -0
  50. data/lib/forem/version.rb +3 -0
  51. data/lib/forem.rb +6 -0
  52. data/lib/tasks/forem_tasks.rake +4 -0
  53. data/script/rails +6 -0
  54. data/spec/configuration_spec.rb +12 -0
  55. data/spec/controllers/forem/posts_controller_spec.rb +5 -0
  56. data/spec/controllers/forem/topics_controller_spec.rb +5 -0
  57. data/spec/dummy/Rakefile +7 -0
  58. data/spec/dummy/app/assets/javascripts/application.js +9 -0
  59. data/spec/dummy/app/assets/stylesheets/application.css +7 -0
  60. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  61. data/spec/dummy/app/controllers/fake_controller.rb +5 -0
  62. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  63. data/spec/dummy/app/mailers/.gitkeep +0 -0
  64. data/spec/dummy/app/models/.gitkeep +0 -0
  65. data/spec/dummy/app/models/user.rb +5 -0
  66. data/spec/dummy/app/views/layouts/application.html.erb +18 -0
  67. data/spec/dummy/config/application.rb +45 -0
  68. data/spec/dummy/config/boot.rb +10 -0
  69. data/spec/dummy/config/database.yml +20 -0
  70. data/spec/dummy/config/environment.rb +5 -0
  71. data/spec/dummy/config/environments/development.rb +30 -0
  72. data/spec/dummy/config/environments/production.rb +60 -0
  73. data/spec/dummy/config/environments/test.rb +39 -0
  74. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  75. data/spec/dummy/config/initializers/forem.rb +1 -0
  76. data/spec/dummy/config/initializers/inflections.rb +10 -0
  77. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  78. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  79. data/spec/dummy/config/initializers/session_store.rb +8 -0
  80. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  81. data/spec/dummy/config/locales/en.yml +5 -0
  82. data/spec/dummy/config/routes.rb +5 -0
  83. data/spec/dummy/config.ru +4 -0
  84. data/spec/dummy/db/development.sqlite3 +0 -0
  85. data/spec/dummy/db/migrate/20111128220059_create_users.rb +9 -0
  86. data/spec/dummy/db/schema.rb +38 -0
  87. data/spec/dummy/db/test.sqlite3 +0 -0
  88. data/spec/dummy/lib/assets/.gitkeep +0 -0
  89. data/spec/dummy/log/.gitkeep +0 -0
  90. data/spec/dummy/log/development.log +42 -0
  91. data/spec/dummy/log/test.log +4321 -0
  92. data/spec/dummy/public/404.html +26 -0
  93. data/spec/dummy/public/422.html +26 -0
  94. data/spec/dummy/public/500.html +26 -0
  95. data/spec/dummy/public/favicon.ico +0 -0
  96. data/spec/dummy/script/rails +6 -0
  97. data/spec/dummy/test/fixtures/users.yml +7 -0
  98. data/spec/dummy/test/unit/user_test.rb +7 -0
  99. data/spec/helpers/forem/posts_helper_spec.rb +15 -0
  100. data/spec/helpers/forem/topics_helper_spec.rb +15 -0
  101. data/spec/integration/posts_spec.rb +60 -0
  102. data/spec/integration/topics_spec.rb +47 -0
  103. data/spec/models/forem/post_spec.rb +5 -0
  104. data/spec/models/forem/topic_spec.rb +5 -0
  105. data/spec/spec_helper.rb +14 -0
  106. data/spec/support/capybara.rb +8 -0
  107. data/spec/support/dummy_login.rb +19 -0
  108. data/spec/support/load_routes.rb +6 -0
  109. metadata +205 -0
@@ -0,0 +1,4321 @@
1
+
2
+
3
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 01:59:59 -0500
4
+
5
+
6
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 02:01:43 -0500
7
+
8
+
9
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 02:02:59 -0500
10
+
11
+
12
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 02:04:09 -0500
13
+ Processing by Forem::TopicsController#index as HTML
14
+ Completed 500 Internal Server Error in 5ms
15
+
16
+
17
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 02:33:49 -0500
18
+ Processing by Forem::TopicsController#index as HTML
19
+ Completed 500 Internal Server Error in 1ms
20
+
21
+
22
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 02:38:17 -0500
23
+ Processing by Forem::TopicsController#index as HTML
24
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
25
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (16.7ms)
26
+ Completed 200 OK in 180ms (Views: 178.4ms | ActiveRecord: 0.2ms)
27
+
28
+
29
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 02:38:18 -0500
30
+
31
+
32
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 15:58:57 -0500
33
+ Processing by Forem::TopicsController#index as HTML
34
+ Forem::Topic Load (12.6ms) SELECT "forem_topics".* FROM "forem_topics" 
35
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (21.5ms)
36
+ Completed 200 OK in 133ms (Views: 80.3ms | ActiveRecord: 12.6ms)
37
+
38
+
39
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 15:58:58 -0500
40
+ Processing by Forem::TopicsController#new as HTML
41
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
42
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.8ms)
43
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (16.9ms)
44
+ Completed 200 OK in 212ms (Views: 50.1ms | ActiveRecord: 0.5ms)
45
+
46
+
47
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 15:58:58 -0500
48
+ Processing by Forem::TopicsController#create as HTML
49
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
50
+  (0.1ms) SAVEPOINT active_record_1
51
+ SQL (106.2ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 20:58:58 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 20:58:58 UTC +00:00], ["user_id", nil]]
52
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 20:58:58 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 20:58:58 UTC +00:00], ["user_id", nil]]
53
+  (0.1ms) RELEASE SAVEPOINT active_record_1
54
+ Redirected to http://www.example.com/forem/topics/1
55
+ Completed 302 Found in 112ms
56
+
57
+
58
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 15:58:58 -0500
59
+ Processing by Forem::TopicsController#show as HTML
60
+ Parameters: {"id"=>"1"}
61
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
62
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
63
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (28.8ms)
64
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (31.3ms)
65
+ Completed 200 OK in 35ms (Views: 33.1ms | ActiveRecord: 0.3ms)
66
+
67
+
68
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:00:28 -0500
69
+ Processing by Forem::TopicsController#index as HTML
70
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
71
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (13.0ms)
72
+ Completed 200 OK in 97ms (Views: 56.6ms | ActiveRecord: 0.2ms)
73
+
74
+
75
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:00:28 -0500
76
+ Processing by Forem::TopicsController#new as HTML
77
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.6ms)
78
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.6ms)
79
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (15.5ms)
80
+ Completed 200 OK in 136ms (Views: 17.3ms | ActiveRecord: 0.5ms)
81
+
82
+
83
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:00:29 -0500
84
+ Processing by Forem::TopicsController#create as HTML
85
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
86
+  (0.1ms) SAVEPOINT active_record_1
87
+ SQL (17.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:00:29 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:00:29 UTC +00:00], ["user_id", nil]]
88
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:00:29 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:00:29 UTC +00:00], ["user_id", nil]]
89
+  (0.1ms) RELEASE SAVEPOINT active_record_1
90
+ Redirected to http://www.example.com/forem/topics/1
91
+ Completed 302 Found in 24ms
92
+
93
+
94
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:00:29 -0500
95
+ Processing by Forem::TopicsController#show as HTML
96
+ Parameters: {"id"=>"1"}
97
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
98
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
99
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.9ms)
100
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (27.5ms)
101
+ Completed 200 OK in 32ms (Views: 29.1ms | ActiveRecord: 0.4ms)
102
+
103
+
104
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:08:09 -0500
105
+ Processing by Forem::TopicsController#index as HTML
106
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
107
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (12.9ms)
108
+ Completed 200 OK in 93ms (Views: 55.4ms | ActiveRecord: 0.2ms)
109
+
110
+
111
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:08:09 -0500
112
+ Processing by Forem::TopicsController#new as HTML
113
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
114
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
115
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (14.5ms)
116
+ Completed 200 OK in 134ms (Views: 16.3ms | ActiveRecord: 0.6ms)
117
+
118
+
119
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:08:09 -0500
120
+ Processing by Forem::TopicsController#create as HTML
121
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
122
+  (0.1ms) SAVEPOINT active_record_1
123
+ SQL (14.8ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:08:09 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:08:09 UTC +00:00], ["user_id", nil]]
124
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:08:09 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:08:09 UTC +00:00], ["user_id", nil]]
125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
126
+ Redirected to http://www.example.com/forem/topics/1
127
+ Completed 302 Found in 20ms
128
+
129
+
130
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:08:09 -0500
131
+ Processing by Forem::TopicsController#show as HTML
132
+ Parameters: {"id"=>"1"}
133
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
134
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
135
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.8ms)
136
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (29.4ms)
137
+ Completed 200 OK in 33ms (Views: 30.9ms | ActiveRecord: 0.4ms)
138
+
139
+
140
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:15:19 -0500
141
+ Processing by Forem::TopicsController#index as HTML
142
+ Forem::Topic Load (36.9ms) SELECT "forem_topics".* FROM "forem_topics" 
143
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (12.4ms)
144
+ Completed 200 OK in 93ms (Views: 54.4ms | ActiveRecord: 36.9ms)
145
+
146
+
147
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:15:20 -0500
148
+ Processing by Forem::TopicsController#new as HTML
149
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
150
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.7ms)
151
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (13.9ms)
152
+ Completed 200 OK in 135ms (Views: 15.7ms | ActiveRecord: 0.5ms)
153
+
154
+
155
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:15:20 -0500
156
+ Processing by Forem::TopicsController#create as HTML
157
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
158
+  (0.1ms) SAVEPOINT active_record_1
159
+ SQL (71.7ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:15:20 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:15:20 UTC +00:00], ["user_id", nil]]
160
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:15:20 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:15:20 UTC +00:00], ["user_id", nil]]
161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
162
+ Redirected to http://www.example.com/forem/topics/1
163
+ Completed 302 Found in 77ms
164
+
165
+
166
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:15:20 -0500
167
+ Processing by Forem::TopicsController#show as HTML
168
+ Parameters: {"id"=>"1"}
169
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
170
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
171
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.4ms)
172
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (28.3ms)
173
+ Completed 200 OK in 33ms (Views: 30.0ms | ActiveRecord: 0.4ms)
174
+
175
+
176
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:15:55 -0500
177
+ Processing by Forem::TopicsController#index as HTML
178
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
179
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (15.4ms)
180
+ Completed 200 OK in 93ms (Views: 55.4ms | ActiveRecord: 0.2ms)
181
+
182
+
183
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:15:55 -0500
184
+ Processing by Forem::TopicsController#new as HTML
185
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
186
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.8ms)
187
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (14.5ms)
188
+ Completed 200 OK in 138ms (Views: 16.3ms | ActiveRecord: 0.6ms)
189
+
190
+
191
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:15:55 -0500
192
+ Processing by Forem::TopicsController#create as HTML
193
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
194
+  (0.1ms) SAVEPOINT active_record_1
195
+ SQL (14.5ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:15:55 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:15:55 UTC +00:00], ["user_id", nil]]
196
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:15:55 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:15:55 UTC +00:00], ["user_id", nil]]
197
+  (0.0ms) RELEASE SAVEPOINT active_record_1
198
+ Redirected to http://www.example.com/forem/topics/1
199
+ Completed 302 Found in 20ms
200
+
201
+
202
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:15:55 -0500
203
+ Processing by Forem::TopicsController#show as HTML
204
+ Parameters: {"id"=>"1"}
205
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
206
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
207
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.8ms)
208
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (29.3ms)
209
+ Completed 200 OK in 33ms (Views: 30.9ms | ActiveRecord: 0.4ms)
210
+
211
+
212
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:17:22 -0500
213
+ Processing by Forem::TopicsController#index as HTML
214
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
215
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (13.0ms)
216
+ Completed 200 OK in 91ms (Views: 53.7ms | ActiveRecord: 0.2ms)
217
+
218
+
219
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:17:23 -0500
220
+ Processing by Forem::TopicsController#new as HTML
221
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
222
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.1ms)
223
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (15.2ms)
224
+ Completed 200 OK in 135ms (Views: 17.0ms | ActiveRecord: 0.5ms)
225
+
226
+
227
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:17:23 -0500
228
+ Processing by Forem::TopicsController#create as HTML
229
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
230
+  (0.1ms) SAVEPOINT active_record_1
231
+ SQL (15.7ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:17:23 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:17:23 UTC +00:00], ["user_id", nil]]
232
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:17:23 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:17:23 UTC +00:00], ["user_id", nil]]
233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
234
+ Redirected to http://www.example.com/forem/topics/1
235
+ Completed 302 Found in 21ms
236
+
237
+
238
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:17:23 -0500
239
+ Processing by Forem::TopicsController#show as HTML
240
+ Parameters: {"id"=>"1"}
241
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
242
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
243
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.1ms)
244
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (26.6ms)
245
+ Completed 200 OK in 31ms (Views: 28.2ms | ActiveRecord: 0.4ms)
246
+
247
+
248
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:17:52 -0500
249
+ Processing by Forem::TopicsController#index as HTML
250
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
251
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (13.7ms)
252
+ Completed 200 OK in 96ms (Views: 58.8ms | ActiveRecord: 0.2ms)
253
+
254
+
255
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:17:52 -0500
256
+ Processing by Forem::TopicsController#new as HTML
257
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
258
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.8ms)
259
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (14.6ms)
260
+ Completed 200 OK in 135ms (Views: 16.6ms | ActiveRecord: 0.5ms)
261
+
262
+
263
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:17:52 -0500
264
+ Processing by Forem::TopicsController#create as HTML
265
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
266
+  (0.1ms) SAVEPOINT active_record_1
267
+ SQL (16.1ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:17:52 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:17:52 UTC +00:00], ["user_id", nil]]
268
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:17:52 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:17:52 UTC +00:00], ["user_id", nil]]
269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
270
+ Redirected to http://www.example.com/forem/topics/1
271
+ Completed 302 Found in 22ms
272
+
273
+
274
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:17:52 -0500
275
+ Processing by Forem::TopicsController#show as HTML
276
+ Parameters: {"id"=>"1"}
277
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
278
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
279
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.7ms)
280
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (27.2ms)
281
+ Completed 200 OK in 31ms (Views: 28.8ms | ActiveRecord: 0.4ms)
282
+
283
+
284
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:18:41 -0500
285
+ Processing by Forem::TopicsController#index as HTML
286
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
287
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (12.4ms)
288
+ Completed 200 OK in 89ms (Views: 52.4ms | ActiveRecord: 0.2ms)
289
+
290
+
291
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:18:41 -0500
292
+ Processing by Forem::TopicsController#new as HTML
293
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
294
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
295
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (14.4ms)
296
+ Completed 200 OK in 132ms (Views: 16.2ms | ActiveRecord: 0.5ms)
297
+
298
+
299
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:18:42 -0500
300
+ Processing by Forem::TopicsController#create as HTML
301
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
302
+  (0.1ms) SAVEPOINT active_record_1
303
+ SQL (14.3ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:18:42 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:18:42 UTC +00:00], ["user_id", nil]]
304
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:18:42 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:18:42 UTC +00:00], ["user_id", nil]]
305
+  (0.1ms) RELEASE SAVEPOINT active_record_1
306
+ Redirected to http://www.example.com/forem/topics/1
307
+ Completed 302 Found in 20ms
308
+
309
+
310
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:18:42 -0500
311
+ Processing by Forem::TopicsController#show as HTML
312
+ Parameters: {"id"=>"1"}
313
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
314
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
315
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.2ms)
316
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (28.6ms)
317
+ Completed 200 OK in 33ms (Views: 30.2ms | ActiveRecord: 0.3ms)
318
+
319
+
320
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:39:09 -0500
321
+ Processing by Forem::TopicsController#index as HTML
322
+ Forem::Topic Load (45.9ms) SELECT "forem_topics".* FROM "forem_topics" 
323
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (19.1ms)
324
+ Completed 200 OK in 110ms (Views: 62.8ms | ActiveRecord: 45.9ms)
325
+
326
+
327
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:39:10 -0500
328
+ Processing by Forem::TopicsController#new as HTML
329
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.6ms)
330
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (7.1ms)
331
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (19.4ms)
332
+ Completed 200 OK in 211ms (Views: 52.5ms | ActiveRecord: 0.6ms)
333
+
334
+
335
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:39:10 -0500
336
+ Processing by Forem::TopicsController#create as HTML
337
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
338
+  (0.1ms) SAVEPOINT active_record_1
339
+ SQL (25.8ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:39:10 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:39:10 UTC +00:00], ["user_id", nil]]
340
+ SQL (0.8ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:39:10 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:39:10 UTC +00:00], ["user_id", nil]]
341
+  (0.1ms) RELEASE SAVEPOINT active_record_1
342
+ Redirected to http://www.example.com/forem/topics/1
343
+ Completed 302 Found in 36ms
344
+
345
+
346
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:39:10 -0500
347
+ Processing by Forem::TopicsController#show as HTML
348
+ Parameters: {"id"=>"1"}
349
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
350
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
351
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (31.9ms)
352
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (35.0ms)
353
+ Completed 200 OK in 50ms (Views: 46.1ms | ActiveRecord: 0.5ms)
354
+
355
+
356
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:58:14 -0500
357
+ Processing by Forem::TopicsController#index as HTML
358
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
359
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.9ms)
360
+ Completed 200 OK in 105ms (Views: 64.4ms | ActiveRecord: 0.2ms)
361
+
362
+
363
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:58:14 -0500
364
+ Processing by Forem::TopicsController#new as HTML
365
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
366
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
367
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (24.9ms)
368
+ Completed 200 OK in 206ms (Views: 58.0ms | ActiveRecord: 0.5ms)
369
+
370
+
371
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:58:15 -0500
372
+ Processing by Forem::TopicsController#create as HTML
373
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
374
+  (0.1ms) SAVEPOINT active_record_1
375
+ SQL (19.5ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:58:15 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:58:15 UTC +00:00], ["user_id", nil]]
376
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:58:15 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:58:15 UTC +00:00], ["user_id", nil]]
377
+  (0.0ms) RELEASE SAVEPOINT active_record_1
378
+ Redirected to http://www.example.com/forem/topics/1
379
+ Completed 302 Found in 26ms
380
+
381
+
382
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:58:15 -0500
383
+ Processing by Forem::TopicsController#show as HTML
384
+ Parameters: {"id"=>"1"}
385
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
386
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
387
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.9ms)
388
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (29.5ms)
389
+ Completed 200 OK in 64ms (Views: 60.6ms | ActiveRecord: 0.5ms)
390
+
391
+
392
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:58:48 -0500
393
+ Processing by Forem::TopicsController#index as HTML
394
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" 
395
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/forem/application (14.4ms)
396
+ Completed 200 OK in 95ms (Views: 56.5ms | ActiveRecord: 0.3ms)
397
+
398
+
399
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:58:48 -0500
400
+ Processing by Forem::TopicsController#new as HTML
401
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
402
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.5ms)
403
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/forem/application (14.6ms)
404
+ Completed 200 OK in 131ms (Views: 16.3ms | ActiveRecord: 0.6ms)
405
+
406
+
407
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:58:48 -0500
408
+ Processing by Forem::TopicsController#create as HTML
409
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
410
+  (0.1ms) SAVEPOINT active_record_1
411
+ SQL (14.7ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:58:48 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:58:48 UTC +00:00], ["user_id", nil]]
412
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:58:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:58:49 UTC +00:00], ["user_id", nil]]
413
+  (0.1ms) RELEASE SAVEPOINT active_record_1
414
+ Redirected to http://www.example.com/forem/topics/1
415
+ Completed 302 Found in 21ms
416
+
417
+
418
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:58:49 -0500
419
+ Processing by Forem::TopicsController#show as HTML
420
+ Parameters: {"id"=>"1"}
421
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
422
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
423
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.1ms)
424
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/forem/application (27.6ms)
425
+ Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.4ms)
426
+
427
+
428
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 16:59:19 -0500
429
+ Processing by Forem::TopicsController#index as HTML
430
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
431
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.3ms)
432
+ Completed 200 OK in 65ms (Views: 63.6ms | ActiveRecord: 0.2ms)
433
+
434
+
435
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 16:59:19 -0500
436
+ Processing by Forem::TopicsController#new as HTML
437
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
438
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (6.1ms)
439
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (17.5ms)
440
+ Completed 200 OK in 145ms (Views: 19.6ms | ActiveRecord: 0.5ms)
441
+
442
+
443
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 16:59:19 -0500
444
+ Processing by Forem::TopicsController#create as HTML
445
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
446
+  (0.3ms) SAVEPOINT active_record_1
447
+ SQL (18.2ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:59:19 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 21:59:19 UTC +00:00], ["user_id", nil]]
448
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 21:59:19 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 21:59:19 UTC +00:00], ["user_id", nil]]
449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
450
+ Redirected to http://www.example.com/forem/topics/1
451
+ Completed 302 Found in 26ms
452
+
453
+
454
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 16:59:19 -0500
455
+ Processing by Forem::TopicsController#show as HTML
456
+ Parameters: {"id"=>"1"}
457
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
458
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
459
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (33.1ms)
460
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (37.1ms)
461
+ Completed 200 OK in 42ms (Views: 39.5ms | ActiveRecord: 0.5ms)
462
+
463
+
464
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 17:01:03 -0500
465
+ Processing by Forem::TopicsController#index as HTML
466
+ Forem::Topic Load (44.3ms) SELECT "forem_topics".* FROM "forem_topics" 
467
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (15.8ms)
468
+ Completed 200 OK in 111ms (Views: 64.8ms | ActiveRecord: 44.3ms)
469
+
470
+
471
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 17:01:04 -0500
472
+ Processing by Forem::TopicsController#new as HTML
473
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.3ms)
474
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.6ms)
475
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (16.8ms)
476
+ Completed 200 OK in 141ms (Views: 18.8ms | ActiveRecord: 0.6ms)
477
+
478
+
479
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 17:01:04 -0500
480
+ Processing by Forem::TopicsController#create as HTML
481
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
482
+  (0.1ms) SAVEPOINT active_record_1
483
+ SQL (15.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:01:04 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 22:01:04 UTC +00:00], ["user_id", nil]]
484
+ SQL (0.6ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:01:04 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 22:01:04 UTC +00:00], ["user_id", nil]]
485
+  (0.1ms) RELEASE SAVEPOINT active_record_1
486
+ Redirected to http://www.example.com/forem/topics/1
487
+ Completed 302 Found in 23ms
488
+
489
+
490
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 17:01:04 -0500
491
+ Processing by Forem::TopicsController#show as HTML
492
+ Parameters: {"id"=>"1"}
493
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
494
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
495
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (27.2ms)
496
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (29.8ms)
497
+ Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.4ms)
498
+
499
+
500
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 17:06:41 -0500
501
+ Processing by Forem::TopicsController#index as HTML
502
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
503
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.3ms)
504
+ Completed 200 OK in 93ms (Views: 55.8ms | ActiveRecord: 0.2ms)
505
+
506
+
507
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 17:06:41 -0500
508
+ Processing by Forem::TopicsController#new as HTML
509
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
510
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
511
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (16.7ms)
512
+ Completed 200 OK in 135ms (Views: 18.5ms | ActiveRecord: 0.5ms)
513
+
514
+
515
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 17:06:41 -0500
516
+ Processing by Forem::TopicsController#create as HTML
517
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
518
+  (0.1ms) SAVEPOINT active_record_1
519
+ SQL (16.6ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:06:41 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 22:06:41 UTC +00:00], ["user_id", nil]]
520
+ SQL (0.6ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:06:41 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 22:06:41 UTC +00:00], ["user_id", nil]]
521
+  (0.1ms) RELEASE SAVEPOINT active_record_1
522
+ Redirected to http://www.example.com/forem/topics/1
523
+ Completed 302 Found in 24ms
524
+
525
+
526
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 17:06:41 -0500
527
+ Processing by Forem::TopicsController#show as HTML
528
+ Parameters: {"id"=>"1"}
529
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
530
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
531
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (93.7ms)
532
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (96.1ms)
533
+ Completed 500 Internal Server Error in 100ms
534
+
535
+
536
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 17:08:30 -0500
537
+ Processing by Forem::TopicsController#index as HTML
538
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
539
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.3ms)
540
+ Completed 200 OK in 91ms (Views: 53.8ms | ActiveRecord: 0.2ms)
541
+
542
+
543
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 17:08:30 -0500
544
+ Processing by Forem::TopicsController#new as HTML
545
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
546
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
547
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (17.4ms)
548
+ Completed 200 OK in 139ms (Views: 19.3ms | ActiveRecord: 0.5ms)
549
+
550
+
551
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 17:08:30 -0500
552
+ Processing by Forem::TopicsController#create as HTML
553
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
554
+  (0.1ms) SAVEPOINT active_record_1
555
+ SQL (14.9ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:08:30 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 22:08:30 UTC +00:00], ["user_id", nil]]
556
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:08:30 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 22:08:30 UTC +00:00], ["user_id", nil]]
557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
558
+ Redirected to http://www.example.com/forem/topics/1
559
+ Completed 302 Found in 21ms
560
+
561
+
562
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 17:08:30 -0500
563
+ Processing by Forem::TopicsController#show as HTML
564
+ Parameters: {"id"=>"1"}
565
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
566
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
567
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.6ms)
568
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (27.1ms)
569
+ Completed 200 OK in 32ms (Views: 29.1ms | ActiveRecord: 0.4ms)
570
+
571
+
572
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 17:11:55 -0500
573
+ Processing by Forem::TopicsController#index as HTML
574
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
575
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.6ms)
576
+ Completed 200 OK in 92ms (Views: 54.2ms | ActiveRecord: 0.2ms)
577
+
578
+
579
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 17:11:56 -0500
580
+ Processing by Forem::TopicsController#new as HTML
581
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
582
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.5ms)
583
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (15.0ms)
584
+ Completed 200 OK in 134ms (Views: 17.1ms | ActiveRecord: 0.5ms)
585
+
586
+
587
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 17:11:56 -0500
588
+ Processing by Forem::TopicsController#create as HTML
589
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
590
+  (0.1ms) SAVEPOINT active_record_1
591
+ SQL (14.5ms) INSERT INTO "forem_topics" ("created_at", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:11:56 UTC +00:00], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 22:11:56 UTC +00:00], ["user_id", nil]]
592
+ SQL (0.7ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 22:11:56 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 22:11:56 UTC +00:00], ["user_id", nil]]
593
+  (0.1ms) RELEASE SAVEPOINT active_record_1
594
+ Redirected to http://www.example.com/forem/topics/1
595
+ Completed 302 Found in 22ms
596
+
597
+
598
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 17:11:56 -0500
599
+ Processing by Forem::TopicsController#show as HTML
600
+ Parameters: {"id"=>"1"}
601
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
602
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
603
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.8ms)
604
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (27.6ms)
605
+ Completed 200 OK in 32ms (Views: 29.4ms | ActiveRecord: 0.4ms)
606
+
607
+
608
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-24 18:53:53 -0500
609
+ Processing by Forem::TopicsController#index as HTML
610
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
611
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.1ms)
612
+ Completed 200 OK in 126ms (Views: 124.6ms | ActiveRecord: 0.2ms)
613
+
614
+
615
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-24 18:53:54 -0500
616
+ Processing by Forem::TopicsController#new as HTML
617
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.5ms)
618
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (14.9ms)
619
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (31.8ms)
620
+ Completed 200 OK in 181ms (Views: 60.7ms | ActiveRecord: 0.6ms)
621
+
622
+
623
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-24 18:53:54 -0500
624
+ Processing by Forem::TopicsController#create as HTML
625
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
626
+  (0.1ms) SAVEPOINT active_record_1
627
+ SQL (71.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 23:53:54 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Thu, 24 Nov 2011 23:53:54 UTC +00:00], ["user_id", nil]]
628
+ SQL (0.7ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Thu, 24 Nov 2011 23:53:54 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Thu, 24 Nov 2011 23:53:54 UTC +00:00], ["user_id", nil]]
629
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
630
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
631
+  (0.1ms) RELEASE SAVEPOINT active_record_1
632
+ Redirected to http://www.example.com/forem/topics/1
633
+ Completed 302 Found in 124ms
634
+
635
+
636
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-24 18:53:54 -0500
637
+ Processing by Forem::TopicsController#show as HTML
638
+ Parameters: {"id"=>"1"}
639
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
640
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
641
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (59.8ms)
642
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (72.9ms)
643
+ Completed 200 OK in 109ms (Views: 107.0ms | ActiveRecord: 0.5ms)
644
+
645
+
646
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-26 01:42:56 -0500
647
+ Processing by Forem::TopicsController#index as HTML
648
+ Forem::Topic Load (12.9ms) SELECT "forem_topics".* FROM "forem_topics" 
649
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (15.3ms)
650
+ Completed 200 OK in 121ms (Views: 106.7ms | ActiveRecord: 12.9ms)
651
+
652
+
653
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-26 01:42:57 -0500
654
+ Processing by Forem::TopicsController#new as HTML
655
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.5ms)
656
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (14.9ms)
657
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (40.2ms)
658
+ Completed 200 OK in 255ms (Views: 69.1ms | ActiveRecord: 0.6ms)
659
+
660
+
661
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-26 01:42:57 -0500
662
+ Processing by Forem::TopicsController#create as HTML
663
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
664
+  (29.0ms) SAVEPOINT active_record_1
665
+ SQL (117.3ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 26 Nov 2011 06:42:57 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Sat, 26 Nov 2011 06:42:57 UTC +00:00], ["user_id", nil]]
666
+ SQL (1.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 26 Nov 2011 06:42:57 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Sat, 26 Nov 2011 06:42:57 UTC +00:00], ["user_id", nil]]
667
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
668
+ SQL (0.2ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
669
+  (0.1ms) RELEASE SAVEPOINT active_record_1
670
+ Redirected to http://www.example.com/forem/topics/1
671
+ Completed 302 Found in 201ms
672
+
673
+
674
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-26 01:42:57 -0500
675
+ Processing by Forem::TopicsController#show as HTML
676
+ Parameters: {"id"=>"1"}
677
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
678
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
679
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (59.1ms)
680
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (72.1ms)
681
+ Completed 200 OK in 105ms (Views: 103.3ms | ActiveRecord: 0.4ms)
682
+
683
+
684
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-27 02:10:46 -0500
685
+ Processing by Forem::TopicsController#index as HTML
686
+ Forem::Topic Load (7.8ms) SELECT "forem_topics".* FROM "forem_topics" 
687
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (40.0ms)
688
+ Completed 200 OK in 131ms (Views: 121.8ms | ActiveRecord: 7.8ms)
689
+
690
+
691
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-27 02:10:47 -0500
692
+ Processing by Forem::TopicsController#new as HTML
693
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.3ms)
694
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (14.8ms)
695
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (31.6ms)
696
+ Completed 200 OK in 197ms (Views: 59.7ms | ActiveRecord: 0.5ms)
697
+
698
+
699
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-27 02:10:47 -0500
700
+ Processing by Forem::TopicsController#create as HTML
701
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
702
+  (0.1ms) SAVEPOINT active_record_1
703
+ SQL (100.9ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:10:47 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Sun, 27 Nov 2011 07:10:47 UTC +00:00], ["user_id", nil]]
704
+ SQL (1.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:10:47 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Sun, 27 Nov 2011 07:10:47 UTC +00:00], ["user_id", nil]]
705
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
706
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
708
+ Redirected to http://www.example.com/forem/topics/1
709
+ Completed 302 Found in 153ms
710
+
711
+
712
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-27 02:10:47 -0500
713
+ Processing by Forem::TopicsController#show as HTML
714
+ Parameters: {"id"=>"1"}
715
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
716
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
717
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (57.8ms)
718
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (70.6ms)
719
+ Completed 200 OK in 107ms (Views: 105.2ms | ActiveRecord: 0.5ms)
720
+
721
+
722
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-27 02:19:38 -0500
723
+ Processing by Forem::TopicsController#index as HTML
724
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
725
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.6ms)
726
+ Completed 200 OK in 55ms (Views: 53.4ms | ActiveRecord: 0.2ms)
727
+
728
+
729
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-27 02:19:38 -0500
730
+ Processing by Forem::TopicsController#new as HTML
731
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
732
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
733
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (14.2ms)
734
+ Completed 200 OK in 133ms (Views: 16.5ms | ActiveRecord: 0.5ms)
735
+
736
+
737
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-27 02:19:38 -0500
738
+ Processing by Forem::TopicsController#create as HTML
739
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
740
+  (0.1ms) SAVEPOINT active_record_1
741
+ SQL (15.6ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:19:38 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Sun, 27 Nov 2011 07:19:38 UTC +00:00], ["user_id", nil]]
742
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:19:38 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Sun, 27 Nov 2011 07:19:38 UTC +00:00], ["user_id", nil]]
743
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
744
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
746
+ Redirected to http://www.example.com/forem/topics/1
747
+ Completed 302 Found in 50ms
748
+
749
+
750
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-27 02:19:38 -0500
751
+ Processing by Forem::TopicsController#show as HTML
752
+ Parameters: {"id"=>"1"}
753
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
754
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
755
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (24.4ms)
756
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (26.5ms)
757
+ Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.3ms)
758
+
759
+
760
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-27 02:36:32 -0500
761
+ Processing by Forem::TopicsController#index as HTML
762
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
763
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.8ms)
764
+ Completed 200 OK in 115ms (Views: 113.7ms | ActiveRecord: 0.2ms)
765
+
766
+
767
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-27 02:36:33 -0500
768
+ Processing by Forem::TopicsController#new as HTML
769
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.3ms)
770
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (36.3ms)
771
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (46.2ms)
772
+ Completed 200 OK in 181ms (Views: 48.1ms | ActiveRecord: 0.5ms)
773
+
774
+
775
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-27 02:36:33 -0500
776
+ Processing by Forem::TopicsController#create as HTML
777
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
778
+  (0.1ms) SAVEPOINT active_record_1
779
+ SQL (27.3ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:36:33 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Sun, 27 Nov 2011 07:36:33 UTC +00:00], ["user_id", nil]]
780
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:36:33 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Sun, 27 Nov 2011 07:36:33 UTC +00:00], ["user_id", nil]]
781
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
782
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784
+ Redirected to http://www.example.com/forem/topics/1
785
+ Completed 302 Found in 70ms
786
+
787
+
788
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-27 02:36:33 -0500
789
+ Processing by Forem::TopicsController#show as HTML
790
+ Parameters: {"id"=>"1"}
791
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
792
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
793
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.1ms)
794
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (59.2ms)
795
+ Completed 200 OK in 63ms (Views: 61.0ms | ActiveRecord: 0.4ms)
796
+
797
+
798
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-27 02:36:49 -0500
799
+ Processing by Forem::TopicsController#index as HTML
800
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
801
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (15.6ms)
802
+ Completed 200 OK in 64ms (Views: 63.0ms | ActiveRecord: 0.2ms)
803
+
804
+
805
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-27 02:36:49 -0500
806
+ Processing by Forem::TopicsController#new as HTML
807
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
808
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.4ms)
809
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (18.0ms)
810
+ Completed 200 OK in 153ms (Views: 20.0ms | ActiveRecord: 0.6ms)
811
+
812
+
813
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-27 02:36:49 -0500
814
+ Processing by Forem::TopicsController#create as HTML
815
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
816
+  (0.1ms) SAVEPOINT active_record_1
817
+ SQL (17.9ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:36:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Sun, 27 Nov 2011 07:36:49 UTC +00:00], ["user_id", nil]]
818
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 27 Nov 2011 07:36:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Sun, 27 Nov 2011 07:36:49 UTC +00:00], ["user_id", nil]]
819
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
820
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
822
+ Redirected to http://www.example.com/forem/topics/1
823
+ Completed 302 Found in 59ms
824
+
825
+
826
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-27 02:36:49 -0500
827
+ Processing by Forem::TopicsController#show as HTML
828
+ Parameters: {"id"=>"1"}
829
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
830
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
831
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (29.1ms)
832
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (31.5ms)
833
+ Completed 200 OK in 35ms (Views: 33.6ms | ActiveRecord: 0.4ms)
834
+  (0.1ms) SAVEPOINT active_record_1
835
+ SQL (114.3ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 07:50:59 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 07:50:59 UTC +00:00], ["user_id", nil]]
836
+ SQL (0.9ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 07:50:59 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 07:50:59 UTC +00:00], ["user_id", nil]]
837
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
838
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
840
+
841
+
842
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 02:51:00 -0500
843
+ Processing by Forem::TopicsController#index as HTML
844
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
845
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (16.1ms)
846
+ Completed 200 OK in 102ms (Views: 101.2ms | ActiveRecord: 0.1ms)
847
+
848
+
849
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 02:51:00 -0500
850
+ Processing by Forem::TopicsController#show as HTML
851
+ Parameters: {"id"=>"1"}
852
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
853
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
854
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (28.3ms)
855
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (47.9ms)
856
+ Completed 200 OK in 78ms (Views: 76.1ms | ActiveRecord: 0.4ms)
857
+  (0.1ms) SAVEPOINT active_record_1
858
+ SQL (15.9ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 07:52:35 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 07:52:35 UTC +00:00], ["user_id", nil]]
859
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 07:52:35 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 07:52:35 UTC +00:00], ["user_id", nil]]
860
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
861
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
863
+
864
+
865
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 02:52:36 -0500
866
+ Processing by Forem::TopicsController#index as HTML
867
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
868
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.1ms)
869
+ Completed 200 OK in 58ms (Views: 56.3ms | ActiveRecord: 0.2ms)
870
+
871
+
872
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 02:52:36 -0500
873
+ Processing by Forem::TopicsController#show as HTML
874
+ Parameters: {"id"=>"1"}
875
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
876
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
877
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (147.5ms)
878
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (158.9ms)
879
+ Completed 500 Internal Server Error in 162ms
880
+  (0.1ms) SAVEPOINT active_record_1
881
+ SQL (16.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 07:53:52 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 07:53:52 UTC +00:00], ["user_id", nil]]
882
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 07:53:52 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 07:53:52 UTC +00:00], ["user_id", nil]]
883
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
884
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
886
+
887
+
888
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 02:53:52 -0500
889
+ Processing by Forem::TopicsController#index as HTML
890
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
891
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (55.6ms)
892
+ Completed 200 OK in 102ms (Views: 100.8ms | ActiveRecord: 0.2ms)
893
+
894
+
895
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 02:53:52 -0500
896
+ Processing by Forem::TopicsController#show as HTML
897
+ Parameters: {"id"=>"1"}
898
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
899
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
900
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (28.1ms)
901
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (42.1ms)
902
+ Completed 200 OK in 45ms (Views: 43.7ms | ActiveRecord: 0.4ms)
903
+
904
+
905
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-28 02:53:52 -0500
906
+  (0.1ms) SAVEPOINT active_record_1
907
+ SQL (105.9ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:33:43 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:33:43 UTC +00:00], ["user_id", nil]]
908
+ SQL (0.9ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:33:43 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:33:43 UTC +00:00], ["user_id", nil]]
909
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
910
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
912
+
913
+
914
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:33:44 -0500
915
+ Processing by Forem::TopicsController#index as HTML
916
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
917
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.9ms)
918
+ Completed 200 OK in 100ms (Views: 99.1ms | ActiveRecord: 0.1ms)
919
+
920
+
921
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:33:44 -0500
922
+ Processing by Forem::TopicsController#show as HTML
923
+ Parameters: {"id"=>"1"}
924
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
925
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
926
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (27.0ms)
927
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (52.2ms)
928
+ Completed 200 OK in 94ms (Views: 92.2ms | ActiveRecord: 0.5ms)
929
+
930
+
931
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-28 03:33:44 -0500
932
+ Processing by Forem::PostsController#new as HTML
933
+ Parameters: {"topic_id"=>"1"}
934
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
935
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
936
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (28.4ms)
937
+ Completed 200 OK in 35ms (Views: 33.2ms | ActiveRecord: 0.1ms)
938
+
939
+
940
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-28 03:33:45 -0500
941
+  (0.1ms) SAVEPOINT active_record_1
942
+ SQL (16.9ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["user_id", nil]]
943
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["user_id", nil]]
944
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
945
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
946
+  (0.0ms) RELEASE SAVEPOINT active_record_1
947
+
948
+
949
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:37:05 -0500
950
+ Processing by Forem::TopicsController#index as HTML
951
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
952
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.9ms)
953
+ Completed 200 OK in 56ms (Views: 55.1ms | ActiveRecord: 0.1ms)
954
+
955
+
956
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:37:05 -0500
957
+ Processing by Forem::TopicsController#show as HTML
958
+ Parameters: {"id"=>"1"}
959
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
960
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
961
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.3ms)
962
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (37.5ms)
963
+ Completed 200 OK in 40ms (Views: 39.0ms | ActiveRecord: 0.4ms)
964
+
965
+
966
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-28 03:37:05 -0500
967
+ Processing by Forem::PostsController#new as HTML
968
+ Parameters: {"topic_id"=>"1"}
969
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
970
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
971
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.1ms)
972
+ Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.1ms)
973
+
974
+
975
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-28 03:37:05 -0500
976
+ Processing by Forem::PostsController#create as HTML
977
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
978
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
979
+  (0.1ms) SAVEPOINT active_record_1
980
+ SQL (0.8ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:37:05 UTC +00:00], ["user_id", nil]]
981
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
982
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
984
+ Redirected to http://www.example.com/forem/topics/1
985
+ Completed 302 Found in 6ms
986
+
987
+
988
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:37:05 -0500
989
+ Processing by Forem::TopicsController#show as HTML
990
+ Parameters: {"id"=>"1"}
991
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
992
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
993
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.4ms)
994
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.6ms)
995
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
996
+  (0.1ms) SAVEPOINT active_record_1
997
+ SQL (14.1ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:28 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:45:28 UTC +00:00], ["user_id", nil]]
998
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:28 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:28 UTC +00:00], ["user_id", nil]]
999
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1000
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1002
+
1003
+
1004
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:28 -0500
1005
+ Processing by Forem::TopicsController#index as HTML
1006
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
1007
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.1ms)
1008
+ Completed 200 OK in 59ms (Views: 58.3ms | ActiveRecord: 0.2ms)
1009
+
1010
+
1011
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
1012
+ Processing by Forem::TopicsController#show as HTML
1013
+ Parameters: {"id"=>"1"}
1014
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1015
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1016
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.6ms)
1017
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (36.7ms)
1018
+ Completed 200 OK in 40ms (Views: 38.3ms | ActiveRecord: 0.4ms)
1019
+
1020
+
1021
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
1022
+ Processing by Forem::PostsController#new as HTML
1023
+ Parameters: {"topic_id"=>"1"}
1024
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1025
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
1026
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (10.9ms)
1027
+ Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.1ms)
1028
+
1029
+
1030
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
1031
+ Processing by Forem::PostsController#create as HTML
1032
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
1033
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1034
+  (0.1ms) SAVEPOINT active_record_1
1035
+ SQL (0.8ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["user_id", nil]]
1036
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1037
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1039
+ Redirected to http://www.example.com/forem/topics/1
1040
+ Completed 302 Found in 5ms
1041
+
1042
+
1043
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
1044
+ Processing by Forem::TopicsController#show as HTML
1045
+ Parameters: {"id"=>"1"}
1046
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1047
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1048
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.4ms)
1049
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.5ms)
1050
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.3ms)
1051
+
1052
+
1053
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
1054
+ Processing by Forem::TopicsController#index as HTML
1055
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
1056
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.2ms)
1057
+
1058
+
1059
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
1060
+ Processing by Forem::TopicsController#new as HTML
1061
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
1062
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.2ms)
1063
+ Completed 200 OK in 30ms (Views: 28.8ms | ActiveRecord: 0.0ms)
1064
+
1065
+
1066
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
1067
+ Processing by Forem::TopicsController#create as HTML
1068
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
1069
+  (0.1ms) SAVEPOINT active_record_1
1070
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["user_id", nil]]
1071
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:29 UTC +00:00], ["user_id", nil]]
1072
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1073
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1075
+ Redirected to http://www.example.com/forem/topics/1
1076
+ Completed 302 Found in 6ms
1077
+
1078
+
1079
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:29 -0500
1080
+ Processing by Forem::TopicsController#show as HTML
1081
+ Parameters: {"id"=>"1"}
1082
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1083
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1084
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
1085
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.2ms)
1086
+  (0.1ms) SAVEPOINT active_record_1
1087
+ SQL (14.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:55 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:45:55 UTC +00:00], ["user_id", nil]]
1088
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:55 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:55 UTC +00:00], ["user_id", nil]]
1089
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1090
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1092
+
1093
+
1094
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:55 -0500
1095
+ Processing by Forem::TopicsController#index as HTML
1096
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
1097
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.8ms)
1098
+ Completed 200 OK in 56ms (Views: 54.9ms | ActiveRecord: 0.1ms)
1099
+
1100
+
1101
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:55 -0500
1102
+ Processing by Forem::TopicsController#show as HTML
1103
+ Parameters: {"id"=>"1"}
1104
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1105
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1106
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.9ms)
1107
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (37.8ms)
1108
+ Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.4ms)
1109
+
1110
+
1111
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-28 03:45:55 -0500
1112
+ Processing by Forem::PostsController#new as HTML
1113
+ Parameters: {"topic_id"=>"1"}
1114
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1115
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
1116
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.1ms)
1117
+ Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.1ms)
1118
+
1119
+
1120
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
1121
+ Processing by Forem::PostsController#create as HTML
1122
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
1123
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1124
+  (0.1ms) SAVEPOINT active_record_1
1125
+ SQL (0.8ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["user_id", nil]]
1126
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1127
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1128
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1129
+ Redirected to http://www.example.com/forem/topics/1
1130
+ Completed 302 Found in 6ms
1131
+
1132
+
1133
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
1134
+ Processing by Forem::TopicsController#show as HTML
1135
+ Parameters: {"id"=>"1"}
1136
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1137
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1138
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.6ms)
1139
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.9ms)
1140
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
1141
+
1142
+
1143
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
1144
+ Processing by Forem::TopicsController#index as HTML
1145
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" 
1146
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.3ms)
1147
+
1148
+
1149
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
1150
+ Processing by Forem::TopicsController#new as HTML
1151
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
1152
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.1ms)
1153
+ Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
1154
+
1155
+
1156
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
1157
+ Processing by Forem::TopicsController#create as HTML
1158
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
1159
+  (0.1ms) SAVEPOINT active_record_1
1160
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["user_id", nil]]
1161
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Mon, 28 Nov 2011 08:45:56 UTC +00:00], ["user_id", nil]]
1162
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1163
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1164
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1165
+ Redirected to http://www.example.com/forem/topics/1
1166
+ Completed 302 Found in 7ms
1167
+
1168
+
1169
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-28 03:45:56 -0500
1170
+ Processing by Forem::TopicsController#show as HTML
1171
+ Parameters: {"id"=>"1"}
1172
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1173
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1174
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.2ms)
1175
+ Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.3ms)
1176
+  (0.1ms) SAVEPOINT active_record_1
1177
+ SQL (105.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 05:49:24 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 05:49:24 UTC +00:00], ["user_id", nil]]
1178
+ SQL (0.9ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 05:49:24 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 05:49:24 UTC +00:00], ["user_id", nil]]
1179
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1180
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1182
+
1183
+
1184
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 00:49:25 -0500
1185
+ Processing by Forem::TopicsController#index as HTML
1186
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
1187
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (15.2ms)
1188
+ Completed 200 OK in 101ms (Views: 99.7ms | ActiveRecord: 0.1ms)
1189
+
1190
+
1191
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
1192
+ Processing by Forem::TopicsController#show as HTML
1193
+ Parameters: {"id"=>"1"}
1194
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1195
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1196
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (68.3ms)
1197
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (90.6ms)
1198
+ Completed 200 OK in 121ms (Views: 119.9ms | ActiveRecord: 0.4ms)
1199
+
1200
+
1201
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
1202
+ Processing by Forem::PostsController#new as HTML
1203
+ Parameters: {"topic_id"=>"1"}
1204
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1205
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
1206
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (21.3ms)
1207
+ Completed 200 OK in 36ms (Views: 33.5ms | ActiveRecord: 0.1ms)
1208
+
1209
+
1210
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
1211
+ Processing by Forem::PostsController#create as HTML
1212
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
1213
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1214
+  (0.1ms) SAVEPOINT active_record_1
1215
+ SQL (0.8ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["user_id", nil]]
1216
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1217
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1219
+ Redirected to http://www.example.com/forem/topics/1
1220
+ Completed 302 Found in 5ms
1221
+
1222
+
1223
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
1224
+ Processing by Forem::TopicsController#show as HTML
1225
+ Parameters: {"id"=>"1"}
1226
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1227
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1228
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.6ms)
1229
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.8ms)
1230
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.3ms)
1231
+
1232
+
1233
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
1234
+ Processing by Forem::TopicsController#index as HTML
1235
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
1236
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms)
1237
+
1238
+
1239
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
1240
+ Processing by Forem::TopicsController#new as HTML
1241
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
1242
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.3ms)
1243
+ Completed 200 OK in 47ms (Views: 45.5ms | ActiveRecord: 0.0ms)
1244
+
1245
+
1246
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
1247
+ Processing by Forem::TopicsController#create as HTML
1248
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
1249
+  (0.1ms) SAVEPOINT active_record_1
1250
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["user_id", nil]]
1251
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 05:49:26 UTC +00:00], ["user_id", nil]]
1252
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1253
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1255
+ Redirected to http://www.example.com/forem/topics/1
1256
+ Completed 302 Found in 8ms
1257
+
1258
+
1259
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
1260
+ Processing by Forem::TopicsController#show as HTML
1261
+ Parameters: {"id"=>"1"}
1262
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1263
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1264
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.1ms)
1265
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.3ms)
1266
+
1267
+
1268
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
1269
+ Processing by Forem::TopicsController#index as HTML
1270
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
1271
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1272
+
1273
+
1274
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 00:49:26 -0500
1275
+ Processing by Forem::TopicsController#new as HTML
1276
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.7ms)
1277
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.9ms)
1278
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1279
+
1280
+
1281
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
1282
+ Processing by Forem::TopicsController#index as HTML
1283
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
1284
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (12.6ms)
1285
+ Completed 200 OK in 53ms (Views: 52.0ms | ActiveRecord: 0.2ms)
1286
+
1287
+
1288
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
1289
+ Processing by Forem::TopicsController#new as HTML
1290
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
1291
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.6ms)
1292
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (13.9ms)
1293
+ Completed 200 OK in 127ms (Views: 15.9ms | ActiveRecord: 0.4ms)
1294
+
1295
+
1296
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
1297
+ Processing by Forem::TopicsController#create as HTML
1298
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
1299
+  (0.1ms) SAVEPOINT active_record_1
1300
+ SQL (14.5ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 06:00:55 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 06:00:55 UTC +00:00], ["user_id", nil]]
1301
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 06:00:55 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 06:00:55 UTC +00:00], ["user_id", nil]]
1302
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1303
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1305
+ Redirected to http://www.example.com/forem/topics/1
1306
+ Completed 302 Found in 48ms
1307
+
1308
+
1309
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
1310
+ Processing by Forem::TopicsController#show as HTML
1311
+ Parameters: {"id"=>"1"}
1312
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1313
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1314
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.6ms)
1315
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (27.7ms)
1316
+ Completed 200 OK in 30ms (Views: 29.3ms | ActiveRecord: 0.3ms)
1317
+
1318
+
1319
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
1320
+ Processing by Forem::TopicsController#index as HTML
1321
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
1322
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms)
1323
+
1324
+
1325
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 01:00:55 -0500
1326
+ Processing by Forem::TopicsController#new as HTML
1327
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
1328
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.6ms)
1329
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
1330
+  (0.1ms) SAVEPOINT active_record_1
1331
+ SQL (19.9ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 06:27:27 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 06:27:27 UTC +00:00], ["user_id", nil]]
1332
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 06:27:27 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 06:27:27 UTC +00:00], ["user_id", nil]]
1333
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1334
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1335
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1336
+
1337
+
1338
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1339
+ Processing by Forem::TopicsController#index as HTML
1340
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
1341
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.6ms)
1342
+ Completed 200 OK in 89ms (Views: 88.3ms | ActiveRecord: 0.1ms)
1343
+
1344
+
1345
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1346
+ Processing by Forem::TopicsController#show as HTML
1347
+ Parameters: {"id"=>"1"}
1348
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1349
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1350
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (67.2ms)
1351
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (81.4ms)
1352
+ Completed 200 OK in 85ms (Views: 83.1ms | ActiveRecord: 0.5ms)
1353
+
1354
+
1355
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1356
+ Processing by Forem::PostsController#new as HTML
1357
+ Parameters: {"topic_id"=>"1"}
1358
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1359
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
1360
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.1ms)
1361
+ Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.1ms)
1362
+
1363
+
1364
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1365
+ Processing by Forem::PostsController#create as HTML
1366
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
1367
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1368
+  (0.1ms) SAVEPOINT active_record_1
1369
+ SQL (0.8ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["user_id", nil]]
1370
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1371
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1372
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1373
+ Redirected to http://www.example.com/forem/topics/1
1374
+ Completed 302 Found in 5ms
1375
+
1376
+
1377
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1378
+ Processing by Forem::TopicsController#show as HTML
1379
+ Parameters: {"id"=>"1"}
1380
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1381
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1382
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.4ms)
1383
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.6ms)
1384
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.3ms)
1385
+
1386
+
1387
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1388
+ Processing by Forem::TopicsController#index as HTML
1389
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
1390
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1391
+
1392
+
1393
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1394
+ Processing by Forem::TopicsController#new as HTML
1395
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
1396
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.2ms)
1397
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1398
+
1399
+
1400
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1401
+ Processing by Forem::TopicsController#create as HTML
1402
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
1403
+  (0.1ms) SAVEPOINT active_record_1
1404
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["user_id", nil]]
1405
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 06:27:28 UTC +00:00], ["user_id", nil]]
1406
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1407
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1409
+ Redirected to http://www.example.com/forem/topics/1
1410
+ Completed 302 Found in 8ms
1411
+
1412
+
1413
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1414
+ Processing by Forem::TopicsController#show as HTML
1415
+ Parameters: {"id"=>"1"}
1416
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1417
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1418
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
1419
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.3ms)
1420
+
1421
+
1422
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1423
+ Processing by Forem::TopicsController#index as HTML
1424
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
1425
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1426
+
1427
+
1428
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 01:27:28 -0500
1429
+ Processing by Forem::TopicsController#new as HTML
1430
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.6ms)
1431
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.8ms)
1432
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
1433
+  (0.1ms) SAVEPOINT active_record_1
1434
+ SQL (97.3ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:52:47 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:52:47 UTC +00:00], ["user_id", nil]]
1435
+ SQL (1.0ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:52:47 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:52:47 UTC +00:00], ["user_id", nil]]
1436
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1437
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1438
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1439
+
1440
+
1441
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1442
+ Processing by Forem::TopicsController#index as HTML
1443
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
1444
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.5ms)
1445
+ Completed 200 OK in 100ms (Views: 99.0ms | ActiveRecord: 0.1ms)
1446
+
1447
+
1448
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1449
+ Processing by Forem::TopicsController#show as HTML
1450
+ Parameters: {"id"=>"1"}
1451
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1452
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1453
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (65.9ms)
1454
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (88.5ms)
1455
+ Completed 200 OK in 119ms (Views: 117.6ms | ActiveRecord: 0.4ms)
1456
+
1457
+
1458
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1459
+ Processing by Forem::PostsController#new as HTML
1460
+ Parameters: {"topic_id"=>"1"}
1461
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1462
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
1463
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (21.1ms)
1464
+ Completed 200 OK in 35ms (Views: 33.5ms | ActiveRecord: 0.1ms)
1465
+
1466
+
1467
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1468
+ Processing by Forem::PostsController#create as HTML
1469
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
1470
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1471
+  (0.1ms) SAVEPOINT active_record_1
1472
+ SQL (0.7ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["user_id", nil]]
1473
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1474
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1476
+ Redirected to http://www.example.com/forem/topics/1
1477
+ Completed 302 Found in 5ms
1478
+
1479
+
1480
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1481
+ Processing by Forem::TopicsController#show as HTML
1482
+ Parameters: {"id"=>"1"}
1483
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1484
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1485
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.7ms)
1486
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (3.3ms)
1487
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.3ms)
1488
+
1489
+
1490
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1491
+ Processing by Forem::TopicsController#index as HTML
1492
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
1493
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms)
1494
+
1495
+
1496
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1497
+ Processing by Forem::TopicsController#new as HTML
1498
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
1499
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.2ms)
1500
+ Completed 200 OK in 45ms (Views: 43.7ms | ActiveRecord: 0.0ms)
1501
+
1502
+
1503
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1504
+ Processing by Forem::TopicsController#create as HTML
1505
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
1506
+  (0.1ms) SAVEPOINT active_record_1
1507
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["user_id", nil]]
1508
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:52:48 UTC +00:00], ["user_id", nil]]
1509
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1510
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1512
+ Redirected to http://www.example.com/forem/topics/1
1513
+ Completed 302 Found in 6ms
1514
+
1515
+
1516
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1517
+ Processing by Forem::TopicsController#show as HTML
1518
+ Parameters: {"id"=>"1"}
1519
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1520
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1521
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
1522
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
1523
+
1524
+
1525
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1526
+ Processing by Forem::TopicsController#index as HTML
1527
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
1528
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1529
+
1530
+
1531
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:52:48 -0500
1532
+ Processing by Forem::TopicsController#new as HTML
1533
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
1534
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.9ms)
1535
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
1536
+  (0.1ms) SAVEPOINT active_record_1
1537
+ SQL (14.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:53:24 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:53:24 UTC +00:00], ["user_id", nil]]
1538
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:53:24 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:53:24 UTC +00:00], ["user_id", nil]]
1539
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1540
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1541
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1542
+
1543
+
1544
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1545
+ Processing by Forem::TopicsController#index as HTML
1546
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
1547
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.4ms)
1548
+ Completed 200 OK in 56ms (Views: 55.1ms | ActiveRecord: 0.1ms)
1549
+
1550
+
1551
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1552
+ Processing by Forem::TopicsController#show as HTML
1553
+ Parameters: {"id"=>"1"}
1554
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1555
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1556
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (63.7ms)
1557
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (75.0ms)
1558
+ Completed 200 OK in 78ms (Views: 76.4ms | ActiveRecord: 0.5ms)
1559
+
1560
+
1561
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1562
+ Processing by Forem::PostsController#new as HTML
1563
+ Parameters: {"topic_id"=>"1"}
1564
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1565
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
1566
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (13.8ms)
1567
+ Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.1ms)
1568
+
1569
+
1570
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1571
+ Processing by Forem::PostsController#create as HTML
1572
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
1573
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1574
+  (0.1ms) SAVEPOINT active_record_1
1575
+ SQL (0.8ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["user_id", nil]]
1576
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1577
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1578
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1579
+ Redirected to http://www.example.com/forem/topics/1
1580
+ Completed 302 Found in 5ms
1581
+
1582
+
1583
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1584
+ Processing by Forem::TopicsController#show as HTML
1585
+ Parameters: {"id"=>"1"}
1586
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1587
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1588
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.5ms)
1589
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.7ms)
1590
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.3ms)
1591
+
1592
+
1593
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1594
+ Processing by Forem::TopicsController#index as HTML
1595
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
1596
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1597
+
1598
+
1599
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1600
+ Processing by Forem::TopicsController#new as HTML
1601
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
1602
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.6ms)
1603
+ Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1604
+
1605
+
1606
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1607
+ Processing by Forem::TopicsController#create as HTML
1608
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
1609
+  (0.1ms) SAVEPOINT active_record_1
1610
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["user_id", nil]]
1611
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:53:25 UTC +00:00], ["user_id", nil]]
1612
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1613
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1615
+ Redirected to http://www.example.com/forem/topics/1
1616
+ Completed 302 Found in 7ms
1617
+
1618
+
1619
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1620
+ Processing by Forem::TopicsController#show as HTML
1621
+ Parameters: {"id"=>"1"}
1622
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1623
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1624
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.7ms)
1625
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms)
1626
+
1627
+
1628
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1629
+ Processing by Forem::TopicsController#index as HTML
1630
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
1631
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.2ms)
1632
+
1633
+
1634
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:53:25 -0500
1635
+ Processing by Forem::TopicsController#new as HTML
1636
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.6ms)
1637
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.5ms)
1638
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms)
1639
+  (0.1ms) SAVEPOINT active_record_1
1640
+ SQL (14.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:54:58 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:54:58 UTC +00:00], ["user_id", nil]]
1641
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:54:58 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:54:58 UTC +00:00], ["user_id", nil]]
1642
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1643
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1644
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1645
+
1646
+
1647
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1648
+ Processing by Forem::TopicsController#index as HTML
1649
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
1650
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.2ms)
1651
+ Completed 200 OK in 58ms (Views: 57.4ms | ActiveRecord: 0.1ms)
1652
+
1653
+
1654
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1655
+ Processing by Forem::TopicsController#show as HTML
1656
+ Parameters: {"id"=>"1"}
1657
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1658
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1659
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (77.2ms)
1660
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (94.4ms)
1661
+ Completed 200 OK in 99ms (Views: 97.3ms | ActiveRecord: 0.5ms)
1662
+
1663
+
1664
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1665
+ Processing by Forem::PostsController#new as HTML
1666
+ Parameters: {"topic_id"=>"1"}
1667
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1668
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
1669
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (14.6ms)
1670
+ Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 0.1ms)
1671
+
1672
+
1673
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1674
+ Processing by Forem::PostsController#create as HTML
1675
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
1676
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1677
+  (0.1ms) SAVEPOINT active_record_1
1678
+ SQL (0.9ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["user_id", nil]]
1679
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1680
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1682
+ Redirected to http://www.example.com/forem/topics/1
1683
+ Completed 302 Found in 7ms
1684
+
1685
+
1686
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1687
+ Processing by Forem::TopicsController#show as HTML
1688
+ Parameters: {"id"=>"1"}
1689
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1690
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1691
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.4ms)
1692
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (4.6ms)
1693
+ Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms)
1694
+
1695
+
1696
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1697
+ Processing by Forem::TopicsController#index as HTML
1698
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
1699
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.2ms)
1700
+
1701
+
1702
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1703
+ Processing by Forem::TopicsController#new as HTML
1704
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
1705
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.4ms)
1706
+ Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.0ms)
1707
+
1708
+
1709
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1710
+ Processing by Forem::TopicsController#create as HTML
1711
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
1712
+  (0.1ms) SAVEPOINT active_record_1
1713
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["user_id", nil]]
1714
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:54:59 UTC +00:00], ["user_id", nil]]
1715
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1716
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1718
+ Redirected to http://www.example.com/forem/topics/1
1719
+ Completed 302 Found in 8ms
1720
+
1721
+
1722
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1723
+ Processing by Forem::TopicsController#show as HTML
1724
+ Parameters: {"id"=>"1"}
1725
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1726
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1727
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.0ms)
1728
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.3ms)
1729
+
1730
+
1731
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1732
+ Processing by Forem::TopicsController#index as HTML
1733
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
1734
+ Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.2ms)
1735
+
1736
+
1737
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:54:59 -0500
1738
+ Processing by Forem::TopicsController#new as HTML
1739
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
1740
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.3ms)
1741
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.0ms)
1742
+  (0.1ms) SAVEPOINT active_record_1
1743
+ SQL (15.1ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:55:57 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:55:57 UTC +00:00], ["user_id", nil]]
1744
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:55:57 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:55:57 UTC +00:00], ["user_id", nil]]
1745
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1746
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1747
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1748
+
1749
+
1750
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1751
+ Processing by Forem::TopicsController#index as HTML
1752
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
1753
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.8ms)
1754
+ Completed 200 OK in 54ms (Views: 53.3ms | ActiveRecord: 0.1ms)
1755
+
1756
+
1757
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1758
+ Processing by Forem::TopicsController#show as HTML
1759
+ Parameters: {"id"=>"1"}
1760
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1761
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1762
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (65.6ms)
1763
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (76.4ms)
1764
+ Completed 200 OK in 80ms (Views: 78.4ms | ActiveRecord: 0.4ms)
1765
+
1766
+
1767
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1768
+ Processing by Forem::PostsController#new as HTML
1769
+ Parameters: {"topic_id"=>"1"}
1770
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1771
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
1772
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.0ms)
1773
+ Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.1ms)
1774
+
1775
+
1776
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1777
+ Processing by Forem::PostsController#create as HTML
1778
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
1779
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1780
+  (0.1ms) SAVEPOINT active_record_1
1781
+ SQL (0.8ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["user_id", nil]]
1782
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1783
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1785
+ Redirected to http://www.example.com/forem/topics/1
1786
+ Completed 302 Found in 6ms
1787
+
1788
+
1789
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1790
+ Processing by Forem::TopicsController#show as HTML
1791
+ Parameters: {"id"=>"1"}
1792
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1793
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1794
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.4ms)
1795
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.6ms)
1796
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.3ms)
1797
+
1798
+
1799
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1800
+ Processing by Forem::TopicsController#index as HTML
1801
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
1802
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.2ms)
1803
+
1804
+
1805
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1806
+ Processing by Forem::TopicsController#new as HTML
1807
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
1808
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.6ms)
1809
+ Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.0ms)
1810
+
1811
+
1812
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1813
+ Processing by Forem::TopicsController#create as HTML
1814
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
1815
+  (0.1ms) SAVEPOINT active_record_1
1816
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["user_id", nil]]
1817
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:55:58 UTC +00:00], ["user_id", nil]]
1818
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1819
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1820
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1821
+ Redirected to http://www.example.com/forem/topics/1
1822
+ Completed 302 Found in 7ms
1823
+
1824
+
1825
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1826
+ Processing by Forem::TopicsController#show as HTML
1827
+ Parameters: {"id"=>"1"}
1828
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1829
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1830
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
1831
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.3ms)
1832
+
1833
+
1834
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1835
+ Processing by Forem::TopicsController#index as HTML
1836
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
1837
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1838
+
1839
+
1840
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:55:58 -0500
1841
+ Processing by Forem::TopicsController#new as HTML
1842
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.6ms)
1843
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.2ms)
1844
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1845
+  (0.1ms) SAVEPOINT active_record_1
1846
+ SQL (14.1ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:57:30 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:57:30 UTC +00:00], ["user_id", nil]]
1847
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:57:30 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:57:30 UTC +00:00], ["user_id", nil]]
1848
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1849
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1851
+
1852
+
1853
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1854
+ Processing by Forem::TopicsController#index as HTML
1855
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
1856
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.3ms)
1857
+ Completed 200 OK in 53ms (Views: 52.4ms | ActiveRecord: 0.1ms)
1858
+
1859
+
1860
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1861
+ Processing by Forem::TopicsController#show as HTML
1862
+ Parameters: {"id"=>"1"}
1863
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1864
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1865
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (63.8ms)
1866
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (75.2ms)
1867
+ Completed 200 OK in 78ms (Views: 76.9ms | ActiveRecord: 0.4ms)
1868
+
1869
+
1870
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1871
+ Processing by Forem::PostsController#new as HTML
1872
+ Parameters: {"topic_id"=>"1"}
1873
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1874
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.6ms)
1875
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (14.2ms)
1876
+ Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.1ms)
1877
+
1878
+
1879
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1880
+ Processing by Forem::PostsController#create as HTML
1881
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
1882
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1883
+  (0.1ms) SAVEPOINT active_record_1
1884
+ SQL (1.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["user_id", nil]]
1885
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1886
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1888
+ Redirected to http://www.example.com/forem/topics/1
1889
+ Completed 302 Found in 7ms
1890
+
1891
+
1892
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1893
+ Processing by Forem::TopicsController#show as HTML
1894
+ Parameters: {"id"=>"1"}
1895
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1896
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1897
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.9ms)
1898
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (3.7ms)
1899
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.3ms)
1900
+
1901
+
1902
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1903
+ Processing by Forem::TopicsController#index as HTML
1904
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
1905
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.2ms)
1906
+
1907
+
1908
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1909
+ Processing by Forem::TopicsController#new as HTML
1910
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
1911
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.3ms)
1912
+ Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
1913
+
1914
+
1915
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1916
+ Processing by Forem::TopicsController#create as HTML
1917
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
1918
+  (0.1ms) SAVEPOINT active_record_1
1919
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["user_id", nil]]
1920
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 13:57:31 UTC +00:00], ["user_id", nil]]
1921
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1922
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1924
+ Redirected to http://www.example.com/forem/topics/1
1925
+ Completed 302 Found in 7ms
1926
+
1927
+
1928
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1929
+ Processing by Forem::TopicsController#show as HTML
1930
+ Parameters: {"id"=>"1"}
1931
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1932
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1933
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
1934
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
1935
+
1936
+
1937
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1938
+ Processing by Forem::TopicsController#index as HTML
1939
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
1940
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.2ms)
1941
+
1942
+
1943
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 08:57:31 -0500
1944
+ Processing by Forem::TopicsController#new as HTML
1945
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
1946
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.0ms)
1947
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1948
+  (0.1ms) SAVEPOINT active_record_1
1949
+ SQL (15.2ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:02 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:07:02 UTC +00:00], ["user_id", nil]]
1950
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:02 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:02 UTC +00:00], ["user_id", nil]]
1951
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1952
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1954
+
1955
+
1956
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
1957
+ Processing by Forem::TopicsController#index as HTML
1958
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
1959
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (14.1ms)
1960
+ Completed 200 OK in 56ms (Views: 55.0ms | ActiveRecord: 0.1ms)
1961
+
1962
+
1963
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
1964
+ Processing by Forem::TopicsController#show as HTML
1965
+ Parameters: {"id"=>"1"}
1966
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1967
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
1968
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (66.0ms)
1969
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (80.1ms)
1970
+ Completed 200 OK in 84ms (Views: 82.1ms | ActiveRecord: 0.4ms)
1971
+
1972
+
1973
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
1974
+ Processing by Forem::PostsController#new as HTML
1975
+ Parameters: {"topic_id"=>"1"}
1976
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1977
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
1978
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.1ms)
1979
+ Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.1ms)
1980
+
1981
+
1982
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
1983
+ Processing by Forem::PostsController#create as HTML
1984
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
1985
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1986
+  (0.1ms) SAVEPOINT active_record_1
1987
+ SQL (0.7ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["user_id", nil]]
1988
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
1989
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
1990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1991
+ Redirected to http://www.example.com/forem/topics/1
1992
+ Completed 302 Found in 5ms
1993
+
1994
+
1995
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
1996
+ Processing by Forem::TopicsController#show as HTML
1997
+ Parameters: {"id"=>"1"}
1998
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
1999
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2000
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.5ms)
2001
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.6ms)
2002
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2003
+
2004
+
2005
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
2006
+ Processing by Forem::TopicsController#index as HTML
2007
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2008
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.2ms)
2009
+
2010
+
2011
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
2012
+ Processing by Forem::TopicsController#new as HTML
2013
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
2014
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.2ms)
2015
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
2016
+
2017
+
2018
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
2019
+ Processing by Forem::TopicsController#create as HTML
2020
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
2021
+  (0.1ms) SAVEPOINT active_record_1
2022
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["user_id", nil]]
2023
+ SQL (0.9ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:03 UTC +00:00], ["user_id", nil]]
2024
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2025
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2027
+ Redirected to http://www.example.com/forem/topics/1
2028
+ Completed 302 Found in 8ms
2029
+
2030
+
2031
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
2032
+ Processing by Forem::TopicsController#show as HTML
2033
+ Parameters: {"id"=>"1"}
2034
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2035
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2036
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.0ms)
2037
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
2038
+
2039
+
2040
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
2041
+ Processing by Forem::TopicsController#index as HTML
2042
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2043
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms)
2044
+
2045
+
2046
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:07:03 -0500
2047
+ Processing by Forem::TopicsController#new as HTML
2048
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
2049
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.9ms)
2050
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
2051
+  (0.1ms) SAVEPOINT active_record_1
2052
+ SQL (15.3ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:13 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:07:13 UTC +00:00], ["user_id", nil]]
2053
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:13 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:13 UTC +00:00], ["user_id", nil]]
2054
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2055
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2057
+
2058
+
2059
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:13 -0500
2060
+ Processing by Forem::TopicsController#index as HTML
2061
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
2062
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.8ms)
2063
+ Completed 200 OK in 55ms (Views: 54.3ms | ActiveRecord: 0.1ms)
2064
+
2065
+
2066
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:13 -0500
2067
+ Processing by Forem::TopicsController#show as HTML
2068
+ Parameters: {"id"=>"1"}
2069
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2070
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2071
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (69.0ms)
2072
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (80.2ms)
2073
+ Completed 200 OK in 83ms (Views: 81.7ms | ActiveRecord: 0.4ms)
2074
+
2075
+
2076
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
2077
+ Processing by Forem::PostsController#new as HTML
2078
+ Parameters: {"topic_id"=>"1"}
2079
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2080
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
2081
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.0ms)
2082
+ Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.1ms)
2083
+
2084
+
2085
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
2086
+ Processing by Forem::PostsController#create as HTML
2087
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
2088
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2089
+  (0.1ms) SAVEPOINT active_record_1
2090
+ SQL (0.8ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["user_id", nil]]
2091
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2092
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2094
+ Redirected to http://www.example.com/forem/topics/1
2095
+ Completed 302 Found in 6ms
2096
+
2097
+
2098
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
2099
+ Processing by Forem::TopicsController#show as HTML
2100
+ Parameters: {"id"=>"1"}
2101
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2102
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2103
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.7ms)
2104
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.9ms)
2105
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2106
+
2107
+
2108
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
2109
+ Processing by Forem::TopicsController#index as HTML
2110
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2111
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
2112
+
2113
+
2114
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
2115
+ Processing by Forem::TopicsController#new as HTML
2116
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
2117
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.4ms)
2118
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
2119
+
2120
+
2121
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
2122
+ Processing by Forem::TopicsController#create as HTML
2123
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
2124
+  (0.1ms) SAVEPOINT active_record_1
2125
+ SQL (0.9ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["user_id", nil]]
2126
+ SQL (0.6ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:07:14 UTC +00:00], ["user_id", nil]]
2127
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2128
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2129
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2130
+ Redirected to http://www.example.com/forem/topics/1
2131
+ Completed 302 Found in 9ms
2132
+
2133
+
2134
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
2135
+ Processing by Forem::TopicsController#show as HTML
2136
+ Parameters: {"id"=>"1"}
2137
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2138
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2139
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (0.9ms)
2140
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.3ms)
2141
+
2142
+
2143
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
2144
+ Processing by Forem::TopicsController#index as HTML
2145
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2146
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.2ms)
2147
+
2148
+
2149
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:07:14 -0500
2150
+ Processing by Forem::TopicsController#new as HTML
2151
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
2152
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.0ms)
2153
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
2154
+  (0.1ms) SAVEPOINT active_record_1
2155
+ SQL (25.1ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:36:22 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:36:22 UTC +00:00], ["user_id", nil]]
2156
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:36:22 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:36:22 UTC +00:00], ["user_id", nil]]
2157
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2158
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2159
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2160
+
2161
+
2162
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2163
+ Processing by Forem::TopicsController#index as HTML
2164
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
2165
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (13.8ms)
2166
+ Completed 200 OK in 56ms (Views: 54.6ms | ActiveRecord: 0.1ms)
2167
+
2168
+
2169
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2170
+ Processing by Forem::TopicsController#show as HTML
2171
+ Parameters: {"id"=>"1"}
2172
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2173
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2174
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (66.6ms)
2175
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (78.8ms)
2176
+ Completed 200 OK in 82ms (Views: 80.3ms | ActiveRecord: 0.4ms)
2177
+
2178
+
2179
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2180
+ Processing by Forem::PostsController#new as HTML
2181
+ Parameters: {"topic_id"=>"1"}
2182
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2183
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
2184
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (11.6ms)
2185
+ Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.1ms)
2186
+
2187
+
2188
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2189
+ Processing by Forem::PostsController#create as HTML
2190
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
2191
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2192
+  (0.1ms) SAVEPOINT active_record_1
2193
+ SQL (0.8ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["user_id", nil]]
2194
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2195
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2197
+ Redirected to http://www.example.com/forem/topics/1
2198
+ Completed 302 Found in 7ms
2199
+
2200
+
2201
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2202
+ Processing by Forem::TopicsController#show as HTML
2203
+ Parameters: {"id"=>"1"}
2204
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2205
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2206
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.9ms)
2207
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (3.3ms)
2208
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.3ms)
2209
+
2210
+
2211
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2212
+ Processing by Forem::TopicsController#index as HTML
2213
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2214
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.2ms)
2215
+
2216
+
2217
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2218
+ Processing by Forem::TopicsController#new as HTML
2219
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
2220
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.6ms)
2221
+ Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.0ms)
2222
+
2223
+
2224
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2225
+ Processing by Forem::TopicsController#create as HTML
2226
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
2227
+  (0.1ms) SAVEPOINT active_record_1
2228
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["user_id", nil]]
2229
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Tue, 29 Nov 2011 14:36:23 UTC +00:00], ["user_id", nil]]
2230
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2231
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2232
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2233
+ Redirected to http://www.example.com/forem/topics/1
2234
+ Completed 302 Found in 7ms
2235
+
2236
+
2237
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2238
+ Processing by Forem::TopicsController#show as HTML
2239
+ Parameters: {"id"=>"1"}
2240
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2241
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2242
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.2ms)
2243
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.3ms)
2244
+
2245
+
2246
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2247
+ Processing by Forem::TopicsController#index as HTML
2248
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2249
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms)
2250
+
2251
+
2252
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 09:36:23 -0500
2253
+ Processing by Forem::TopicsController#new as HTML
2254
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
2255
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.8ms)
2256
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
2257
+
2258
+
2259
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:23:55 -0500
2260
+ Processing by Forem::TopicsController#index as HTML
2261
+ Forem::Topic Load (12.6ms) SELECT "forem_topics".* FROM "forem_topics" 
2262
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (41.3ms)
2263
+ Completed 200 OK in 136ms (Views: 122.1ms | ActiveRecord: 12.6ms)
2264
+
2265
+
2266
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:23:56 -0500
2267
+ Processing by Forem::TopicsController#new as HTML
2268
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
2269
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (14.9ms)
2270
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (38.3ms)
2271
+ Completed 200 OK in 207ms (Views: 69.5ms | ActiveRecord: 0.4ms)
2272
+
2273
+
2274
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 20:23:56 -0500
2275
+ Processing by Forem::TopicsController#create as HTML
2276
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
2277
+  (0.1ms) SAVEPOINT active_record_1
2278
+ SQL (114.9ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 01:23:56 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 01:23:56 UTC +00:00], ["user_id", nil]]
2279
+ SQL (0.6ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 01:23:56 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 01:23:56 UTC +00:00], ["user_id", nil]]
2280
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2281
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2283
+ Redirected to http://www.example.com/forem/topics/1
2284
+ Completed 302 Found in 167ms
2285
+
2286
+
2287
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 20:23:56 -0500
2288
+ Processing by Forem::TopicsController#show as HTML
2289
+ Parameters: {"id"=>"1"}
2290
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2291
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2292
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (55.3ms)
2293
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (68.7ms)
2294
+ Completed 200 OK in 99ms (Views: 97.4ms | ActiveRecord: 0.4ms)
2295
+
2296
+
2297
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:23:56 -0500
2298
+ Processing by Forem::TopicsController#index as HTML
2299
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2300
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.2ms)
2301
+
2302
+
2303
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:23:56 -0500
2304
+ Processing by Forem::TopicsController#new as HTML
2305
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
2306
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.9ms)
2307
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
2308
+
2309
+
2310
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:25:21 -0500
2311
+ Processing by Forem::TopicsController#index as HTML
2312
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2313
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (63.9ms)
2314
+ Completed 500 Internal Server Error in 103ms
2315
+
2316
+
2317
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:25:21 -0500
2318
+ Processing by Forem::TopicsController#index as HTML
2319
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2320
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
2321
+
2322
+
2323
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:25:21 -0500
2324
+ Processing by Forem::TopicsController#new as HTML
2325
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
2326
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.1ms)
2327
+ Completed 200 OK in 89ms (Views: 14.8ms | ActiveRecord: 0.5ms)
2328
+
2329
+
2330
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:26:46 -0500
2331
+ Processing by Forem::TopicsController#index as HTML
2332
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2333
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (50.8ms)
2334
+ Completed 500 Internal Server Error in 89ms
2335
+
2336
+
2337
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:26:46 -0500
2338
+ Processing by Forem::TopicsController#index as HTML
2339
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2340
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.2ms)
2341
+
2342
+
2343
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:26:46 -0500
2344
+ Processing by Forem::TopicsController#new as HTML
2345
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
2346
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.5ms)
2347
+ Completed 200 OK in 91ms (Views: 15.5ms | ActiveRecord: 0.4ms)
2348
+  (0.1ms) SAVEPOINT active_record_1
2349
+ SQL (15.6ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 01:32:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 01:32:49 UTC +00:00], ["user_id", nil]]
2350
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 01:32:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 01:32:49 UTC +00:00], ["user_id", nil]]
2351
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2352
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2354
+
2355
+
2356
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:32:49 -0500
2357
+ Processing by Forem::TopicsController#index as HTML
2358
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
2359
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (58.9ms)
2360
+ Completed 500 Internal Server Error in 99ms
2361
+
2362
+
2363
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:32:50 -0500
2364
+ Processing by Forem::TopicsController#index as HTML
2365
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2366
+ Completed 500 Internal Server Error in 65ms
2367
+
2368
+
2369
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:32:50 -0500
2370
+ Processing by Forem::TopicsController#index as HTML
2371
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
2372
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
2373
+
2374
+
2375
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:32:50 -0500
2376
+ Processing by Forem::TopicsController#new as HTML
2377
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.6ms)
2378
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (6.0ms)
2379
+ Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.0ms)
2380
+
2381
+
2382
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:37:07 -0500
2383
+ Processing by Forem::TopicsController#index as HTML
2384
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2385
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (52.7ms)
2386
+ Completed 500 Internal Server Error in 92ms
2387
+
2388
+
2389
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:37:07 -0500
2390
+ Processing by Forem::TopicsController#index as HTML
2391
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2392
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.2ms)
2393
+
2394
+
2395
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:37:08 -0500
2396
+ Processing by Forem::TopicsController#new as HTML
2397
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
2398
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.4ms)
2399
+ Completed 200 OK in 93ms (Views: 15.5ms | ActiveRecord: 0.5ms)
2400
+
2401
+
2402
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:39:34 -0500
2403
+ Processing by Forem::TopicsController#index as HTML
2404
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2405
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (52.8ms)
2406
+ Completed 500 Internal Server Error in 93ms
2407
+
2408
+
2409
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:39:34 -0500
2410
+ Processing by Forem::TopicsController#index as HTML
2411
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2412
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
2413
+
2414
+
2415
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:39:34 -0500
2416
+ Processing by Forem::TopicsController#new as HTML
2417
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
2418
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.4ms)
2419
+ Completed 200 OK in 95ms (Views: 15.6ms | ActiveRecord: 0.5ms)
2420
+
2421
+
2422
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:40:14 -0500
2423
+ Processing by Forem::TopicsController#index as HTML
2424
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2425
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (51.6ms)
2426
+ Completed 500 Internal Server Error in 91ms
2427
+
2428
+
2429
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:40:14 -0500
2430
+ Processing by Forem::TopicsController#index as HTML
2431
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2432
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2433
+
2434
+
2435
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:40:14 -0500
2436
+ Processing by Forem::TopicsController#new as HTML
2437
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
2438
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.7ms)
2439
+ Completed 200 OK in 89ms (Views: 15.9ms | ActiveRecord: 0.4ms)
2440
+
2441
+
2442
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:46:50 -0500
2443
+ Processing by Forem::TopicsController#index as HTML
2444
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2445
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (52.1ms)
2446
+ Completed 500 Internal Server Error in 90ms
2447
+
2448
+
2449
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:46:51 -0500
2450
+ Processing by Forem::TopicsController#index as HTML
2451
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2452
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.1ms)
2453
+
2454
+
2455
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:46:51 -0500
2456
+ Processing by Forem::TopicsController#new as HTML
2457
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
2458
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.5ms)
2459
+ Completed 200 OK in 123ms (Views: 15.7ms | ActiveRecord: 0.4ms)
2460
+
2461
+
2462
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:47:34 -0500
2463
+ Processing by Forem::TopicsController#index as HTML
2464
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2465
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (52.4ms)
2466
+ Completed 500 Internal Server Error in 92ms
2467
+
2468
+
2469
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 20:47:34 -0500
2470
+ Processing by Forem::TopicsController#index as HTML
2471
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2472
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
2473
+
2474
+
2475
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 20:47:35 -0500
2476
+ Processing by Forem::TopicsController#new as HTML
2477
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
2478
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.3ms)
2479
+ Completed 200 OK in 91ms (Views: 15.6ms | ActiveRecord: 0.5ms)
2480
+
2481
+
2482
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:08:13 -0500
2483
+ Processing by Forem::TopicsController#index as HTML
2484
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2485
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (51.0ms)
2486
+ Completed 500 Internal Server Error in 91ms
2487
+
2488
+
2489
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:08:14 -0500
2490
+ Processing by Forem::TopicsController#index as HTML
2491
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2492
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
2493
+
2494
+
2495
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:08:14 -0500
2496
+ Processing by Forem::TopicsController#new as HTML
2497
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
2498
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.8ms)
2499
+ Completed 200 OK in 88ms (Views: 15.6ms | ActiveRecord: 0.4ms)
2500
+
2501
+
2502
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:15:59 -0500
2503
+ Processing by Forem::TopicsController#index as HTML
2504
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2505
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (51.9ms)
2506
+ Completed 500 Internal Server Error in 91ms
2507
+
2508
+
2509
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:15:59 -0500
2510
+ Processing by Forem::TopicsController#index as HTML
2511
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2512
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
2513
+
2514
+
2515
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:15:59 -0500
2516
+ Processing by Forem::TopicsController#new as HTML
2517
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
2518
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.7ms)
2519
+ Completed 200 OK in 95ms (Views: 19.1ms | ActiveRecord: 0.5ms)
2520
+
2521
+
2522
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:17:09 -0500
2523
+ Processing by Forem::TopicsController#index as HTML
2524
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2525
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (54.3ms)
2526
+ Completed 500 Internal Server Error in 93ms
2527
+
2528
+
2529
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:17:09 -0500
2530
+ Processing by Forem::TopicsController#index as HTML
2531
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2532
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2533
+
2534
+
2535
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:17:09 -0500
2536
+ Processing by Forem::TopicsController#new as HTML
2537
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
2538
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.1ms)
2539
+ Completed 200 OK in 98ms (Views: 16.7ms | ActiveRecord: 0.5ms)
2540
+
2541
+
2542
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:17:51 -0500
2543
+ Processing by Forem::TopicsController#index as HTML
2544
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2545
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (53.5ms)
2546
+ Completed 500 Internal Server Error in 97ms
2547
+
2548
+
2549
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:17:51 -0500
2550
+ Processing by Forem::TopicsController#index as HTML
2551
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2552
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2553
+
2554
+
2555
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:17:51 -0500
2556
+ Processing by Forem::TopicsController#new as HTML
2557
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
2558
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.1ms)
2559
+ Completed 200 OK in 90ms (Views: 16.5ms | ActiveRecord: 0.4ms)
2560
+
2561
+
2562
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:18:51 -0500
2563
+ Processing by Forem::TopicsController#index as HTML
2564
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2565
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (52.0ms)
2566
+ Completed 500 Internal Server Error in 92ms
2567
+
2568
+
2569
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:18:51 -0500
2570
+ Processing by Forem::TopicsController#index as HTML
2571
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2572
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2573
+
2574
+
2575
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:18:51 -0500
2576
+ Processing by Forem::TopicsController#new as HTML
2577
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
2578
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.2ms)
2579
+ Completed 200 OK in 91ms (Views: 15.6ms | ActiveRecord: 0.5ms)
2580
+
2581
+
2582
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:19:16 -0500
2583
+ Processing by Forem::TopicsController#index as HTML
2584
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" 
2585
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (51.0ms)
2586
+ Completed 500 Internal Server Error in 91ms
2587
+
2588
+
2589
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:19:17 -0500
2590
+ Processing by Forem::TopicsController#index as HTML
2591
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
2592
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2593
+
2594
+
2595
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:19:17 -0500
2596
+ Processing by Forem::TopicsController#new as HTML
2597
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
2598
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.0ms)
2599
+ Completed 200 OK in 94ms (Views: 15.1ms | ActiveRecord: 0.7ms)
2600
+
2601
+
2602
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:20:12 -0500
2603
+ Processing by Forem::TopicsController#index as HTML
2604
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2605
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (62.1ms)
2606
+ Completed 500 Internal Server Error in 110ms
2607
+
2608
+
2609
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:20:12 -0500
2610
+ Processing by Forem::TopicsController#index as HTML
2611
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2612
+ Completed 200 OK in 4ms (Views: 2.5ms | ActiveRecord: 0.2ms)
2613
+
2614
+
2615
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:20:12 -0500
2616
+ Processing by Forem::TopicsController#new as HTML
2617
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.8ms)
2618
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (7.7ms)
2619
+ Completed 200 OK in 110ms (Views: 21.0ms | ActiveRecord: 0.5ms)
2620
+
2621
+
2622
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
2623
+ Processing by Forem::TopicsController#index as HTML
2624
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2625
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2626
+  (0.1ms) SAVEPOINT active_record_1
2627
+ SQL (15.6ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00]]
2628
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2629
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (91.8ms)
2630
+ Completed 200 OK in 132ms (Views: 115.1ms | ActiveRecord: 16.4ms)
2631
+
2632
+
2633
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
2634
+ Processing by Forem::TopicsController#new as HTML
2635
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
2636
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.3ms)
2637
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (14.2ms)
2638
+ Completed 200 OK in 79ms (Views: 15.9ms | ActiveRecord: 0.4ms)
2639
+
2640
+
2641
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
2642
+ Processing by Forem::TopicsController#create as HTML
2643
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
2644
+  (0.1ms) SAVEPOINT active_record_1
2645
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00], ["user_id", nil]]
2646
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:24:23 UTC +00:00], ["user_id", nil]]
2647
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2648
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2649
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2650
+ Redirected to http://www.example.com/forem/topics/1
2651
+ Completed 302 Found in 26ms
2652
+
2653
+
2654
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
2655
+ Processing by Forem::TopicsController#show as HTML
2656
+ Parameters: {"id"=>"1"}
2657
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2658
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2659
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.3ms)
2660
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (27.9ms)
2661
+ Completed 200 OK in 31ms (Views: 29.5ms | ActiveRecord: 0.4ms)
2662
+
2663
+
2664
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
2665
+ Processing by Forem::TopicsController#index as HTML
2666
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2667
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
2668
+
2669
+
2670
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:24:23 -0500
2671
+ Processing by Forem::TopicsController#new as HTML
2672
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
2673
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.9ms)
2674
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
2675
+
2676
+
2677
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:44:05 -0500
2678
+ Processing by Forem::TopicsController#index as HTML
2679
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2680
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2681
+  (0.1ms) SAVEPOINT active_record_1
2682
+ SQL (14.9ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:44:05 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:44:05 UTC +00:00]]
2683
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2684
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (58.3ms)
2685
+ Completed 200 OK in 108ms (Views: 91.0ms | ActiveRecord: 15.6ms)
2686
+
2687
+
2688
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:44:05 -0500
2689
+ Processing by Forem::TopicsController#new as HTML
2690
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
2691
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (4.3ms)
2692
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (13.9ms)
2693
+ Completed 200 OK in 113ms (Views: 15.7ms | ActiveRecord: 0.4ms)
2694
+
2695
+
2696
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:44:06 -0500
2697
+ Processing by Forem::TopicsController#create as HTML
2698
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
2699
+  (0.1ms) SAVEPOINT active_record_1
2700
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:44:06 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:44:06 UTC +00:00], ["user_id", nil]]
2701
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:44:06 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:44:06 UTC +00:00], ["user_id", nil]]
2702
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2703
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2705
+ Redirected to http://www.example.com/forem/topics/1
2706
+ Completed 302 Found in 26ms
2707
+
2708
+
2709
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:44:06 -0500
2710
+ Processing by Forem::TopicsController#show as HTML
2711
+ Parameters: {"id"=>"1"}
2712
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2713
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2714
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.0ms)
2715
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (28.0ms)
2716
+ Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.3ms)
2717
+
2718
+
2719
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:44:06 -0500
2720
+ Processing by Forem::TopicsController#index as HTML
2721
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2722
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
2723
+
2724
+
2725
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:44:06 -0500
2726
+ Processing by Forem::TopicsController#new as HTML
2727
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
2728
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (2.8ms)
2729
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
2730
+
2731
+
2732
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:46:02 -0500
2733
+ Processing by Forem::TopicsController#index as HTML
2734
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2735
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2736
+  (0.1ms) SAVEPOINT active_record_1
2737
+ SQL (16.9ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:46:02 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:46:02 UTC +00:00]]
2738
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2739
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (65.1ms)
2740
+ Completed 200 OK in 113ms (Views: 94.1ms | ActiveRecord: 17.7ms)
2741
+
2742
+
2743
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:46:02 -0500
2744
+ Processing by Forem::TopicsController#new as HTML
2745
+ Completed 500 Internal Server Error in 55ms
2746
+
2747
+
2748
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:46:02 -0500
2749
+ Processing by Forem::TopicsController#index as HTML
2750
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2751
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
2752
+
2753
+
2754
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:46:02 -0500
2755
+ Processing by Forem::TopicsController#new as HTML
2756
+ Completed 500 Internal Server Error in 18ms
2757
+
2758
+
2759
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
2760
+ Processing by Forem::TopicsController#index as HTML
2761
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2762
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2763
+  (0.1ms) SAVEPOINT active_record_1
2764
+ SQL (17.2ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00]]
2765
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2766
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (67.8ms)
2767
+ Completed 200 OK in 117ms (Views: 98.2ms | ActiveRecord: 18.0ms)
2768
+
2769
+
2770
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
2771
+ Processing by Forem::TopicsController#new as HTML
2772
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2773
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.4ms)
2774
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (7.4ms)
2775
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (24.2ms)
2776
+ Completed 200 OK in 144ms (Views: 26.8ms | ActiveRecord: 0.6ms)
2777
+
2778
+
2779
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
2780
+ Processing by Forem::TopicsController#create as HTML
2781
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
2782
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2783
+  (0.0ms) SAVEPOINT active_record_1
2784
+ SQL (0.9ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00], ["user_id", nil]]
2785
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:47:52 UTC +00:00], ["user_id", nil]]
2786
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2787
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2789
+ Redirected to http://www.example.com/forem/topics/1
2790
+ Completed 302 Found in 32ms
2791
+
2792
+
2793
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
2794
+ Processing by Forem::TopicsController#show as HTML
2795
+ Parameters: {"id"=>"1"}
2796
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2797
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2798
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (30.5ms)
2799
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (32.8ms)
2800
+ Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 0.4ms)
2801
+
2802
+
2803
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
2804
+ Processing by Forem::TopicsController#index as HTML
2805
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2806
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms)
2807
+
2808
+
2809
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
2810
+ Processing by Forem::TopicsController#new as HTML
2811
+ Redirected to http://www.example.com/sign_in
2812
+ Completed 302 Found in 36ms
2813
+
2814
+
2815
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 21:47:52 -0500
2816
+
2817
+
2818
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
2819
+ Processing by Forem::TopicsController#index as HTML
2820
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2821
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2822
+  (0.1ms) SAVEPOINT active_record_1
2823
+ SQL (17.8ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00]]
2824
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2825
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (104.5ms)
2826
+ Completed 200 OK in 155ms (Views: 135.2ms | ActiveRecord: 18.6ms)
2827
+
2828
+
2829
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
2830
+ Processing by Forem::TopicsController#new as HTML
2831
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2832
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.3ms)
2833
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (43.7ms)
2834
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (54.7ms)
2835
+ Completed 200 OK in 132ms (Views: 56.7ms | ActiveRecord: 0.6ms)
2836
+
2837
+
2838
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
2839
+ Processing by Forem::TopicsController#create as HTML
2840
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
2841
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2842
+  (0.0ms) SAVEPOINT active_record_1
2843
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00], ["user_id", nil]]
2844
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:51:01 UTC +00:00], ["user_id", nil]]
2845
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2846
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2848
+ Redirected to http://www.example.com/forem/topics/1
2849
+ Completed 302 Found in 32ms
2850
+
2851
+
2852
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
2853
+ Processing by Forem::TopicsController#show as HTML
2854
+ Parameters: {"id"=>"1"}
2855
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2856
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2857
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (31.1ms)
2858
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (34.2ms)
2859
+ Completed 200 OK in 38ms (Views: 36.4ms | ActiveRecord: 0.4ms)
2860
+
2861
+
2862
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
2863
+ Processing by Forem::TopicsController#index as HTML
2864
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2865
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
2866
+
2867
+
2868
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
2869
+ Processing by Forem::TopicsController#new as HTML
2870
+ Redirected to http://www.example.com/sign_in
2871
+ Completed 302 Found in 10ms
2872
+
2873
+
2874
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 21:51:01 -0500
2875
+ Processing by FakeController#sign_in as HTML
2876
+ Completed 200 OK in 48ms (Views: 47.9ms | ActiveRecord: 0.0ms)
2877
+  (0.1ms) SAVEPOINT active_record_1
2878
+ SQL (16.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:56 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:51:56 UTC +00:00], ["user_id", nil]]
2879
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:56 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:51:56 UTC +00:00], ["user_id", nil]]
2880
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2881
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2883
+
2884
+
2885
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
2886
+ Processing by Forem::TopicsController#index as HTML
2887
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
2888
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (106.4ms)
2889
+ Completed 500 Internal Server Error in 152ms
2890
+
2891
+
2892
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
2893
+ Processing by Forem::TopicsController#index as HTML
2894
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
2895
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2896
+  (0.1ms) SAVEPOINT active_record_1
2897
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00]]
2898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2899
+ Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 1.2ms)
2900
+
2901
+
2902
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
2903
+ Processing by Forem::TopicsController#new as HTML
2904
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2905
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.2ms)
2906
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (5.0ms)
2907
+ Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.1ms)
2908
+
2909
+
2910
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
2911
+ Processing by Forem::TopicsController#create as HTML
2912
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
2913
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2914
+  (0.0ms) SAVEPOINT active_record_1
2915
+ SQL (0.9ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00], ["user_id", nil]]
2916
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:51:57 UTC +00:00], ["user_id", nil]]
2917
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2918
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2919
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2920
+ Redirected to http://www.example.com/forem/topics/1
2921
+ Completed 302 Found in 8ms
2922
+
2923
+
2924
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
2925
+ Processing by Forem::TopicsController#show as HTML
2926
+ Parameters: {"id"=>"1"}
2927
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2928
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2929
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (29.8ms)
2930
+ Completed 200 OK in 35ms (Views: 33.9ms | ActiveRecord: 0.3ms)
2931
+
2932
+
2933
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
2934
+ Processing by Forem::TopicsController#index as HTML
2935
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2936
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms)
2937
+
2938
+
2939
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
2940
+ Processing by Forem::TopicsController#new as HTML
2941
+ Redirected to http://www.example.com/sign_in
2942
+ Completed 302 Found in 9ms
2943
+
2944
+
2945
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 21:51:57 -0500
2946
+ Processing by FakeController#sign_in as HTML
2947
+ Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
2948
+  (0.1ms) SAVEPOINT active_record_1
2949
+ SQL (17.5ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:47 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:52:47 UTC +00:00], ["user_id", nil]]
2950
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:47 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:52:47 UTC +00:00], ["user_id", nil]]
2951
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2952
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2954
+
2955
+
2956
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
2957
+ Processing by Forem::TopicsController#index as HTML
2958
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
2959
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
2960
+  (0.1ms) SAVEPOINT active_record_1
2961
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00]]
2962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2963
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (27.2ms)
2964
+ Completed 200 OK in 78ms (Views: 75.8ms | ActiveRecord: 1.3ms)
2965
+
2966
+
2967
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
2968
+ Processing by Forem::TopicsController#show as HTML
2969
+ Parameters: {"id"=>"1"}
2970
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2971
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
2972
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (73.8ms)
2973
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (87.1ms)
2974
+ Completed 200 OK in 90ms (Views: 88.8ms | ActiveRecord: 0.4ms)
2975
+
2976
+
2977
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
2978
+ Processing by Forem::PostsController#new as HTML
2979
+ Parameters: {"topic_id"=>"1"}
2980
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2981
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.1ms)
2982
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (15.6ms)
2983
+ Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.1ms)
2984
+
2985
+
2986
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
2987
+ Processing by Forem::PostsController#create as HTML
2988
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
2989
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
2990
+  (0.1ms) SAVEPOINT active_record_1
2991
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["user_id", nil]]
2992
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
2993
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
2994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2995
+ Redirected to http://www.example.com/forem/topics/1
2996
+ Completed 302 Found in 6ms
2997
+
2998
+
2999
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
3000
+ Processing by Forem::TopicsController#show as HTML
3001
+ Parameters: {"id"=>"1"}
3002
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3003
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3004
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.7ms)
3005
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (3.0ms)
3006
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms)
3007
+
3008
+
3009
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
3010
+ Processing by Forem::TopicsController#index as HTML
3011
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
3012
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3013
+  (0.0ms) SAVEPOINT active_record_1
3014
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00]]
3015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3016
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.8ms)
3017
+
3018
+
3019
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
3020
+ Processing by Forem::TopicsController#new as HTML
3021
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3022
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.5ms)
3023
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.5ms)
3024
+ Completed 200 OK in 9ms (Views: 6.6ms | ActiveRecord: 0.1ms)
3025
+
3026
+
3027
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
3028
+ Processing by Forem::TopicsController#create as HTML
3029
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
3030
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3031
+  (0.0ms) SAVEPOINT active_record_1
3032
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["user_id", nil]]
3033
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 02:52:48 UTC +00:00], ["user_id", nil]]
3034
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3035
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3036
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3037
+ Redirected to http://www.example.com/forem/topics/1
3038
+ Completed 302 Found in 8ms
3039
+
3040
+
3041
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
3042
+ Processing by Forem::TopicsController#show as HTML
3043
+ Parameters: {"id"=>"1"}
3044
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3045
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3046
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.2ms)
3047
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.3ms)
3048
+
3049
+
3050
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
3051
+ Processing by Forem::TopicsController#index as HTML
3052
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
3053
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.2ms)
3054
+
3055
+
3056
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
3057
+ Processing by Forem::TopicsController#new as HTML
3058
+ Redirected to http://www.example.com/sign_in
3059
+ Completed 302 Found in 1ms
3060
+
3061
+
3062
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 21:52:48 -0500
3063
+ Processing by FakeController#sign_in as HTML
3064
+ Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms)
3065
+
3066
+
3067
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
3068
+ Processing by Forem::TopicsController#index as HTML
3069
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" 
3070
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3071
+  (0.1ms) SAVEPOINT active_record_1
3072
+ SQL (14.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00]]
3073
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3074
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (89.9ms)
3075
+ Completed 200 OK in 132ms (Views: 115.3ms | ActiveRecord: 15.2ms)
3076
+
3077
+
3078
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
3079
+ Processing by Forem::TopicsController#new as HTML
3080
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3081
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
3082
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (41.3ms)
3083
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/new.html.erb within layouts/application (50.8ms)
3084
+ Completed 200 OK in 116ms (Views: 52.6ms | ActiveRecord: 0.6ms)
3085
+
3086
+
3087
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
3088
+ Processing by Forem::TopicsController#create as HTML
3089
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
3090
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3091
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3092
+  (0.1ms) SAVEPOINT active_record_1
3093
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00], ["user_id", 1]]
3094
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:20:42 UTC +00:00], ["user_id", 1]]
3095
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3096
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3098
+ Redirected to http://www.example.com/forem/topics/1
3099
+ Completed 302 Found in 39ms
3100
+
3101
+
3102
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
3103
+ Processing by Forem::TopicsController#show as HTML
3104
+ Parameters: {"id"=>"1"}
3105
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3106
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3107
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3108
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.9ms)
3109
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (29.0ms)
3110
+ Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.4ms)
3111
+
3112
+
3113
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
3114
+ Processing by Forem::TopicsController#index as HTML
3115
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
3116
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms)
3117
+
3118
+
3119
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
3120
+ Processing by Forem::TopicsController#new as HTML
3121
+ Redirected to http://www.example.com/sign_in
3122
+ Completed 302 Found in 9ms
3123
+
3124
+
3125
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:20:42 -0500
3126
+ Processing by FakeController#sign_in as HTML
3127
+ Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
3128
+  (0.1ms) SAVEPOINT active_record_1
3129
+ SQL (15.2ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:36:29 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:36:29 UTC +00:00], ["user_id", nil]]
3130
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:36:29 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:36:29 UTC +00:00], ["user_id", nil]]
3131
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3132
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3134
+
3135
+
3136
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:36:29 -0500
3137
+ Processing by Forem::TopicsController#index as HTML
3138
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
3139
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3140
+  (0.1ms) SAVEPOINT active_record_1
3141
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:36:30 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:36:30 UTC +00:00]]
3142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3143
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/index.html.erb within layouts/application (23.5ms)
3144
+ Completed 200 OK in 63ms (Views: 60.9ms | ActiveRecord: 1.3ms)
3145
+
3146
+
3147
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:36:30 -0500
3148
+ Processing by Forem::TopicsController#show as HTML
3149
+ Parameters: {"id"=>"1"}
3150
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3151
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3152
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (27.1ms)
3153
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (76.6ms)
3154
+ Completed 200 OK in 79ms (Views: 78.0ms | ActiveRecord: 0.4ms)
3155
+
3156
+
3157
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:36:30 -0500
3158
+ Processing by Forem::PostsController#new as HTML
3159
+ Parameters: {"topic_id"=>"1"}
3160
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3161
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
3162
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (10.6ms)
3163
+ Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.1ms)
3164
+
3165
+
3166
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:36:30 -0500
3167
+ Processing by Forem::PostsController#create as HTML
3168
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
3169
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3170
+  (0.1ms) SAVEPOINT active_record_1
3171
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:36:30 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:36:30 UTC +00:00], ["user_id", nil]]
3172
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3173
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3175
+ Redirected to http://www.example.com/forem/topics/1
3176
+ Completed 302 Found in 5ms
3177
+
3178
+
3179
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:36:30 -0500
3180
+ Processing by Forem::TopicsController#show as HTML
3181
+ Parameters: {"id"=>"1"}
3182
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3183
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3184
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.5ms)
3185
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/show.html.erb within layouts/application (2.6ms)
3186
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
3187
+  (0.1ms) SAVEPOINT active_record_1
3188
+ SQL (14.2ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:38:07 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:38:07 UTC +00:00], ["user_id", nil]]
3189
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:38:07 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:38:07 UTC +00:00], ["user_id", nil]]
3190
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3191
+ SQL (0.2ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3193
+
3194
+
3195
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
3196
+ Processing by Forem::PostsController#new as HTML
3197
+ Parameters: {"topic_id"=>"1"}
3198
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3199
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
3200
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/new.html.erb within layouts/application (30.6ms)
3201
+ Completed 200 OK in 73ms (Views: 71.4ms | ActiveRecord: 0.2ms)
3202
+  (0.0ms) SAVEPOINT active_record_1
3203
+ SQL (0.5ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["user_id", nil]]
3204
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["user_id", nil]]
3205
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3206
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3208
+
3209
+
3210
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
3211
+ Processing by Forem::TopicsController#index as HTML
3212
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics"
3213
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3214
+  (0.0ms) SAVEPOINT active_record_1
3215
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00]]
3216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3217
+ Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 1.2ms)
3218
+
3219
+
3220
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
3221
+ Processing by Forem::TopicsController#show as HTML
3222
+ Parameters: {"id"=>"1"}
3223
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3224
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3225
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.0ms)
3226
+ Completed 200 OK in 31ms (Views: 29.7ms | ActiveRecord: 0.3ms)
3227
+
3228
+
3229
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
3230
+ Processing by Forem::PostsController#new as HTML
3231
+ Parameters: {"topic_id"=>"1"}
3232
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3233
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.6ms)
3234
+ Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.1ms)
3235
+
3236
+
3237
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
3238
+ Processing by Forem::PostsController#create as HTML
3239
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
3240
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3241
+  (0.1ms) SAVEPOINT active_record_1
3242
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:38:08 UTC +00:00], ["user_id", nil]]
3243
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3244
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3246
+ Redirected to http://www.example.com/forem/topics/1
3247
+ Completed 302 Found in 5ms
3248
+
3249
+
3250
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:38:08 -0500
3251
+ Processing by Forem::TopicsController#show as HTML
3252
+ Parameters: {"id"=>"1"}
3253
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3254
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3255
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.6ms)
3256
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
3257
+  (0.1ms) SAVEPOINT active_record_1
3258
+ SQL (14.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:05 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:39:05 UTC +00:00], ["user_id", nil]]
3259
+ SQL (0.6ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:05 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:39:05 UTC +00:00], ["user_id", nil]]
3260
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3261
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3263
+
3264
+
3265
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:39:06 -0500
3266
+ Processing by Forem::PostsController#new as HTML
3267
+ Parameters: {"topic_id"=>"1"}
3268
+ Completed 500 Internal Server Error in 15ms
3269
+  (0.0ms) SAVEPOINT active_record_1
3270
+ SQL (0.5ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00], ["user_id", nil]]
3271
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00], ["user_id", nil]]
3272
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3273
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3275
+
3276
+
3277
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:39:06 -0500
3278
+ Processing by Forem::TopicsController#index as HTML
3279
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
3280
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3281
+  (0.0ms) SAVEPOINT active_record_1
3282
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:39:06 UTC +00:00]]
3283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3284
+ Completed 200 OK in 63ms (Views: 61.0ms | ActiveRecord: 1.1ms)
3285
+
3286
+
3287
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:39:06 -0500
3288
+ Processing by Forem::TopicsController#show as HTML
3289
+ Parameters: {"id"=>"1"}
3290
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3291
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3292
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.9ms)
3293
+ Completed 200 OK in 41ms (Views: 39.6ms | ActiveRecord: 0.4ms)
3294
+
3295
+
3296
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:39:06 -0500
3297
+ Processing by Forem::PostsController#new as HTML
3298
+ Parameters: {"topic_id"=>"1"}
3299
+ Completed 500 Internal Server Error in 23ms
3300
+  (0.1ms) SAVEPOINT active_record_1
3301
+ SQL (14.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:15 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:39:15 UTC +00:00], ["user_id", nil]]
3302
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:15 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:39:15 UTC +00:00], ["user_id", nil]]
3303
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3304
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3306
+
3307
+
3308
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:39:15 -0500
3309
+ Processing by Forem::PostsController#new as HTML
3310
+ Parameters: {"topic_id"=>"1"}
3311
+ Completed 500 Internal Server Error in 16ms
3312
+  (0.0ms) SAVEPOINT active_record_1
3313
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00], ["user_id", nil]]
3314
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00], ["user_id", nil]]
3315
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3316
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3318
+
3319
+
3320
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:39:16 -0500
3321
+ Processing by Forem::TopicsController#index as HTML
3322
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
3323
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3324
+  (0.0ms) SAVEPOINT active_record_1
3325
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:39:16 UTC +00:00]]
3326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3327
+ Completed 200 OK in 64ms (Views: 61.4ms | ActiveRecord: 1.1ms)
3328
+
3329
+
3330
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:39:16 -0500
3331
+ Processing by Forem::TopicsController#show as HTML
3332
+ Parameters: {"id"=>"1"}
3333
+ Forem::Topic Load (0.3ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3334
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3335
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (25.9ms)
3336
+ Completed 200 OK in 41ms (Views: 39.1ms | ActiveRecord: 0.5ms)
3337
+
3338
+
3339
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:39:16 -0500
3340
+ Processing by Forem::PostsController#new as HTML
3341
+ Parameters: {"topic_id"=>"1"}
3342
+ Completed 500 Internal Server Error in 23ms
3343
+  (0.1ms) SAVEPOINT active_record_1
3344
+ SQL (13.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["user_id", nil]]
3345
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["user_id", nil]]
3346
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3347
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3349
+
3350
+
3351
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:40:21 -0500
3352
+ Processing by Forem::PostsController#new as HTML
3353
+ Parameters: {"topic_id"=>"1"}
3354
+ Redirected to http://www.example.com/sign_in
3355
+ Completed 302 Found in 9ms
3356
+
3357
+
3358
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:40:21 -0500
3359
+ Processing by FakeController#sign_in as HTML
3360
+ Rendered text template (0.0ms)
3361
+ Completed 200 OK in 48ms (Views: 47.1ms | ActiveRecord: 0.0ms)
3362
+  (0.0ms) SAVEPOINT active_record_1
3363
+ SQL (0.5ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["user_id", nil]]
3364
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["user_id", nil]]
3365
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3366
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3368
+
3369
+
3370
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:40:21 -0500
3371
+ Processing by Forem::TopicsController#index as HTML
3372
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
3373
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3374
+  (0.1ms) SAVEPOINT active_record_1
3375
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:40:21 UTC +00:00]]
3376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3377
+ Completed 200 OK in 31ms (Views: 29.3ms | ActiveRecord: 1.2ms)
3378
+
3379
+
3380
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:40:22 -0500
3381
+ Processing by Forem::TopicsController#show as HTML
3382
+ Parameters: {"id"=>"1"}
3383
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3384
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3385
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (64.9ms)
3386
+ Completed 200 OK in 78ms (Views: 76.7ms | ActiveRecord: 0.4ms)
3387
+
3388
+
3389
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:40:22 -0500
3390
+ Processing by Forem::PostsController#new as HTML
3391
+ Parameters: {"topic_id"=>"1"}
3392
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3393
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3394
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
3395
+ Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.2ms)
3396
+
3397
+
3398
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:40:22 -0500
3399
+ Processing by Forem::PostsController#create as HTML
3400
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
3401
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3402
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3403
+  (0.0ms) SAVEPOINT active_record_1
3404
+ SQL (0.5ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:40:22 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:40:22 UTC +00:00], ["user_id", nil]]
3405
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3406
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3408
+ Redirected to http://www.example.com/forem/topics/1
3409
+ Completed 302 Found in 6ms
3410
+
3411
+
3412
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:40:22 -0500
3413
+ Processing by Forem::TopicsController#show as HTML
3414
+ Parameters: {"id"=>"1"}
3415
+ Forem::Topic Load (0.0ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3416
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3417
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.6ms)
3418
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.2ms)
3419
+  (0.1ms) SAVEPOINT active_record_1
3420
+ SQL (14.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:41:38 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:41:38 UTC +00:00], ["user_id", nil]]
3421
+ SQL (0.6ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:41:38 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:41:38 UTC +00:00], ["user_id", nil]]
3422
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3423
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3425
+
3426
+
3427
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
3428
+ Processing by Forem::PostsController#new as HTML
3429
+ Parameters: {"topic_id"=>"1"}
3430
+ Redirected to http://www.example.com/sign_in
3431
+ Completed 302 Found in 8ms
3432
+
3433
+
3434
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
3435
+ Processing by FakeController#sign_in as HTML
3436
+ Rendered text template (0.0ms)
3437
+ Completed 200 OK in 58ms (Views: 58.0ms | ActiveRecord: 0.0ms)
3438
+  (0.0ms) SAVEPOINT active_record_1
3439
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["user_id", nil]]
3440
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["user_id", nil]]
3441
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3442
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3444
+
3445
+
3446
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
3447
+ Processing by Forem::TopicsController#index as HTML
3448
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
3449
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3450
+  (0.0ms) SAVEPOINT active_record_1
3451
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00]]
3452
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3453
+ Completed 200 OK in 34ms (Views: 31.8ms | ActiveRecord: 1.2ms)
3454
+
3455
+
3456
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
3457
+ Processing by Forem::TopicsController#show as HTML
3458
+ Parameters: {"id"=>"1"}
3459
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3460
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3461
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (27.1ms)
3462
+ Completed 200 OK in 42ms (Views: 40.2ms | ActiveRecord: 0.5ms)
3463
+
3464
+
3465
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
3466
+ Processing by Forem::PostsController#new as HTML
3467
+ Parameters: {"topic_id"=>"1"}
3468
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3469
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3470
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
3471
+ Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.2ms)
3472
+
3473
+
3474
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
3475
+ Processing by Forem::PostsController#create as HTML
3476
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
3477
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3478
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3479
+  (0.0ms) SAVEPOINT active_record_1
3480
+ SQL (0.9ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:41:39 UTC +00:00], ["user_id", nil]]
3481
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3482
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3483
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3484
+ Redirected to http://www.example.com/forem/topics/1
3485
+ Completed 302 Found in 6ms
3486
+
3487
+
3488
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:41:39 -0500
3489
+ Processing by Forem::TopicsController#show as HTML
3490
+ Parameters: {"id"=>"1"}
3491
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3492
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3493
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.5ms)
3494
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.3ms)
3495
+  (0.1ms) SAVEPOINT active_record_1
3496
+ SQL (18.1ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00]]
3497
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3498
+  (0.1ms) SAVEPOINT active_record_1
3499
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00], ["user_id", 1]]
3500
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:43:46 UTC +00:00], ["user_id", 1]]
3501
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3502
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3504
+
3505
+
3506
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
3507
+ Processing by Forem::PostsController#new as HTML
3508
+ Parameters: {"topic_id"=>"1"}
3509
+ Redirected to http://www.example.com/sign_in
3510
+ Completed 302 Found in 8ms
3511
+
3512
+
3513
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
3514
+ Processing by FakeController#sign_in as HTML
3515
+ Rendered text template (0.0ms)
3516
+ Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.0ms)
3517
+  (0.0ms) SAVEPOINT active_record_1
3518
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00]]
3519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3520
+  (0.1ms) SAVEPOINT active_record_1
3521
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["user_id", 1]]
3522
+ SQL (0.3ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["user_id", 1]]
3523
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3524
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3525
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3526
+
3527
+
3528
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
3529
+ Processing by Forem::TopicsController#index as HTML
3530
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
3531
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3532
+  (0.1ms) SAVEPOINT active_record_1
3533
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00]]
3534
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3535
+ Completed 200 OK in 29ms (Views: 27.3ms | ActiveRecord: 0.9ms)
3536
+
3537
+
3538
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
3539
+ Processing by Forem::TopicsController#show as HTML
3540
+ Parameters: {"id"=>"1"}
3541
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3542
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3543
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3544
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.3ms)
3545
+ Completed 200 OK in 41ms (Views: 39.6ms | ActiveRecord: 0.6ms)
3546
+
3547
+
3548
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
3549
+ Processing by Forem::PostsController#new as HTML
3550
+ Parameters: {"topic_id"=>"1"}
3551
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3552
+ Forem::Topic Load (0.0ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3553
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
3554
+ Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 0.2ms)
3555
+
3556
+
3557
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
3558
+ Processing by Forem::PostsController#create as HTML
3559
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
3560
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3561
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3562
+  (0.0ms) SAVEPOINT active_record_1
3563
+ SQL (0.4ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:43:47 UTC +00:00], ["user_id", nil]]
3564
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3565
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3567
+ Redirected to http://www.example.com/forem/topics/1
3568
+ Completed 302 Found in 5ms
3569
+
3570
+
3571
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:43:47 -0500
3572
+ Processing by Forem::TopicsController#show as HTML
3573
+ Parameters: {"id"=>"1"}
3574
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3575
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3576
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3577
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.5ms)
3578
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.3ms)
3579
+  (0.1ms) SAVEPOINT active_record_1
3580
+ SQL (15.9ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00]]
3581
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3582
+  (0.1ms) SAVEPOINT active_record_1
3583
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00], ["user_id", 1]]
3584
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:49:09 UTC +00:00], ["user_id", 1]]
3585
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3586
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3588
+
3589
+
3590
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
3591
+ Processing by Forem::PostsController#new as HTML
3592
+ Parameters: {"topic_id"=>"1"}
3593
+ Redirected to http://www.example.com/sign_in
3594
+ Completed 302 Found in 9ms
3595
+
3596
+
3597
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
3598
+ Processing by FakeController#sign_in as HTML
3599
+ Rendered text template (0.0ms)
3600
+ Completed 200 OK in 54ms (Views: 53.1ms | ActiveRecord: 0.0ms)
3601
+  (0.0ms) SAVEPOINT active_record_1
3602
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00]]
3603
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3604
+  (0.0ms) SAVEPOINT active_record_1
3605
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["user_id", 1]]
3606
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["user_id", 1]]
3607
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3608
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3610
+
3611
+
3612
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
3613
+ Processing by Forem::TopicsController#index as HTML
3614
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
3615
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3616
+  (0.0ms) SAVEPOINT active_record_1
3617
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00]]
3618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3619
+ Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.7ms)
3620
+
3621
+
3622
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
3623
+ Processing by Forem::TopicsController#show as HTML
3624
+ Parameters: {"id"=>"1"}
3625
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3626
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3627
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3628
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (33.5ms)
3629
+ Completed 200 OK in 50ms (Views: 48.3ms | ActiveRecord: 0.6ms)
3630
+
3631
+
3632
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
3633
+ Processing by Forem::PostsController#new as HTML
3634
+ Parameters: {"topic_id"=>"1"}
3635
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3636
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3637
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.7ms)
3638
+ Completed 200 OK in 14ms (Views: 11.5ms | ActiveRecord: 0.2ms)
3639
+
3640
+
3641
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
3642
+ Processing by Forem::PostsController#create as HTML
3643
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
3644
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3645
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3646
+  (0.0ms) SAVEPOINT active_record_1
3647
+ SQL (0.6ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:49:10 UTC +00:00], ["user_id", nil]]
3648
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3649
+ SQL (0.3ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3650
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3651
+ Redirected to http://www.example.com/forem/topics/1
3652
+ Completed 302 Found in 8ms
3653
+
3654
+
3655
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:49:10 -0500
3656
+ Processing by Forem::TopicsController#show as HTML
3657
+ Parameters: {"id"=>"1"}
3658
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3659
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3660
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3661
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.0ms)
3662
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.3ms)
3663
+  (0.1ms) SAVEPOINT active_record_1
3664
+ SQL (14.0ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00]]
3665
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3666
+  (0.1ms) SAVEPOINT active_record_1
3667
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00], ["user_id", 1]]
3668
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:50:23 UTC +00:00], ["user_id", 1]]
3669
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3670
+ SQL (0.2ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3671
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3672
+
3673
+
3674
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
3675
+ Processing by Forem::PostsController#new as HTML
3676
+ Parameters: {"topic_id"=>"1"}
3677
+ Redirected to http://www.example.com/sign_in
3678
+ Completed 302 Found in 8ms
3679
+
3680
+
3681
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
3682
+ Processing by FakeController#sign_in as HTML
3683
+ Rendered text template (0.0ms)
3684
+ Completed 200 OK in 45ms (Views: 44.5ms | ActiveRecord: 0.0ms)
3685
+  (0.0ms) SAVEPOINT active_record_1
3686
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00]]
3687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3688
+  (0.0ms) SAVEPOINT active_record_1
3689
+ SQL (0.3ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["user_id", 1]]
3690
+ SQL (0.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["user_id", 1]]
3691
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3692
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3694
+
3695
+
3696
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
3697
+ Processing by Forem::TopicsController#index as HTML
3698
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
3699
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3700
+  (0.0ms) SAVEPOINT active_record_1
3701
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00]]
3702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3703
+ Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.6ms)
3704
+
3705
+
3706
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
3707
+ Processing by Forem::TopicsController#show as HTML
3708
+ Parameters: {"id"=>"1"}
3709
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3710
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3711
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3712
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.5ms)
3713
+ Completed 200 OK in 41ms (Views: 39.1ms | ActiveRecord: 0.5ms)
3714
+
3715
+
3716
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
3717
+ Processing by Forem::PostsController#new as HTML
3718
+ Parameters: {"topic_id"=>"1"}
3719
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3720
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3721
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
3722
+ Completed 200 OK in 10ms (Views: 7.9ms | ActiveRecord: 0.2ms)
3723
+
3724
+
3725
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
3726
+ Processing by Forem::PostsController#create as HTML
3727
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
3728
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3729
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3730
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3731
+  (0.0ms) SAVEPOINT active_record_1
3732
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:50:24 UTC +00:00], ["user_id", 2]]
3733
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3734
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3736
+ Redirected to http://www.example.com/forem/topics/1
3737
+ Completed 302 Found in 5ms
3738
+
3739
+
3740
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:50:24 -0500
3741
+ Processing by Forem::TopicsController#show as HTML
3742
+ Parameters: {"id"=>"1"}
3743
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3744
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3745
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3746
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
3747
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.3ms)
3748
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms)
3749
+  (0.0ms) SAVEPOINT active_record_1
3750
+ SQL (14.6ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00]]
3751
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3752
+  (0.1ms) SAVEPOINT active_record_1
3753
+ SQL (0.7ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00], ["user_id", 1]]
3754
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:54:02 UTC +00:00], ["user_id", 1]]
3755
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3756
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3757
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3758
+
3759
+
3760
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:54:03 -0500
3761
+ Processing by Forem::PostsController#new as HTML
3762
+ Parameters: {"topic_id"=>"1"}
3763
+ Redirected to http://www.example.com/sign_in
3764
+ Completed 302 Found in 47ms
3765
+
3766
+
3767
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:54:03 -0500
3768
+ Processing by FakeController#sign_in as HTML
3769
+ Rendered text template (0.0ms)
3770
+ Completed 200 OK in 43ms (Views: 43.1ms | ActiveRecord: 0.0ms)
3771
+  (0.0ms) SAVEPOINT active_record_1
3772
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00]]
3773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3774
+  (0.0ms) SAVEPOINT active_record_1
3775
+ SQL (0.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["user_id", 1]]
3776
+ SQL (0.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["user_id", 1]]
3777
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3778
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3779
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3780
+
3781
+
3782
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3783
+ Processing by Forem::TopicsController#index as HTML
3784
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
3785
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3786
+  (0.1ms) SAVEPOINT active_record_1
3787
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00]]
3788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3789
+ Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.7ms)
3790
+
3791
+
3792
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3793
+ Processing by Forem::TopicsController#show as HTML
3794
+ Parameters: {"id"=>"1"}
3795
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3796
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3797
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3798
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.7ms)
3799
+ Completed 200 OK in 40ms (Views: 38.5ms | ActiveRecord: 0.5ms)
3800
+
3801
+
3802
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3803
+ Processing by Forem::PostsController#new as HTML
3804
+ Parameters: {"topic_id"=>"1"}
3805
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3806
+ Forem::Topic Load (0.0ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3807
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
3808
+ Completed 200 OK in 10ms (Views: 7.7ms | ActiveRecord: 0.2ms)
3809
+
3810
+
3811
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3812
+ Processing by Forem::PostsController#create as HTML
3813
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
3814
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3815
+ Forem::Topic Load (0.0ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3816
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3817
+  (0.0ms) SAVEPOINT active_record_1
3818
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["user_id", 2]]
3819
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3820
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3822
+ Redirected to http://www.example.com/forem/topics/1
3823
+ Completed 302 Found in 5ms
3824
+
3825
+
3826
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3827
+ Processing by Forem::TopicsController#show as HTML
3828
+ Parameters: {"id"=>"1"}
3829
+ Forem::Topic Load (0.0ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3830
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3831
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3832
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
3833
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.2ms)
3834
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.3ms)
3835
+
3836
+
3837
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3838
+ Processing by Forem::TopicsController#index as HTML
3839
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" 
3840
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3841
+  (0.0ms) SAVEPOINT active_record_1
3842
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00]]
3843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3844
+ Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.8ms)
3845
+
3846
+
3847
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3848
+ Processing by Forem::TopicsController#new as HTML
3849
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3850
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
3851
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.0ms)
3852
+ Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.1ms)
3853
+
3854
+
3855
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3856
+ Processing by Forem::TopicsController#create as HTML
3857
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
3858
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3859
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3860
+  (0.0ms) SAVEPOINT active_record_1
3861
+ SQL (0.5ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["user_id", 1]]
3862
+ SQL (0.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 03:54:04 UTC +00:00], ["user_id", 1]]
3863
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3864
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3866
+ Redirected to http://www.example.com/forem/topics/1
3867
+ Completed 302 Found in 7ms
3868
+
3869
+
3870
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3871
+ Processing by Forem::TopicsController#show as HTML
3872
+ Parameters: {"id"=>"1"}
3873
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3874
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3875
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3876
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.5ms)
3877
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.3ms)
3878
+
3879
+
3880
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3881
+ Processing by Forem::TopicsController#index as HTML
3882
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
3883
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms)
3884
+
3885
+
3886
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3887
+ Processing by Forem::TopicsController#new as HTML
3888
+ Redirected to http://www.example.com/sign_in
3889
+ Completed 302 Found in 0ms
3890
+
3891
+
3892
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 22:54:04 -0500
3893
+ Processing by FakeController#sign_in as HTML
3894
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3895
+  (0.1ms) SAVEPOINT active_record_1
3896
+ SQL (14.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00]]
3897
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3898
+  (0.1ms) SAVEPOINT active_record_1
3899
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00], ["user_id", 1]]
3900
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:13:49 UTC +00:00], ["user_id", 1]]
3901
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3902
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3904
+
3905
+
3906
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
3907
+ Processing by Forem::PostsController#new as HTML
3908
+ Parameters: {"topic_id"=>"1"}
3909
+ Redirected to http://www.example.com/sign_in
3910
+ Completed 302 Found in 9ms
3911
+
3912
+
3913
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
3914
+ Processing by FakeController#sign_in as HTML
3915
+ Rendered text template (0.0ms)
3916
+ Completed 200 OK in 45ms (Views: 44.7ms | ActiveRecord: 0.0ms)
3917
+  (0.0ms) SAVEPOINT active_record_1
3918
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00]]
3919
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3920
+  (0.0ms) SAVEPOINT active_record_1
3921
+ SQL (0.5ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["user_id", 1]]
3922
+ SQL (0.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["user_id", 1]]
3923
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3924
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3926
+
3927
+
3928
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
3929
+ Processing by Forem::TopicsController#index as HTML
3930
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
3931
+ Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.1ms)
3932
+  (0.0ms) SAVEPOINT active_record_1
3933
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00]]
3934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3935
+  (0.0ms) SAVEPOINT active_record_1
3936
+ SQL (0.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["user_id", 1]]
3937
+ SQL (0.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["user_id", 1]]
3938
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3939
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3941
+
3942
+
3943
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
3944
+ Processing by Forem::TopicsController#index as HTML
3945
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
3946
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3947
+  (0.1ms) SAVEPOINT active_record_1
3948
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00]]
3949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3950
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.6ms)
3951
+
3952
+
3953
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
3954
+ Processing by Forem::TopicsController#show as HTML
3955
+ Parameters: {"id"=>"1"}
3956
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3957
+ Forem::Post Load (0.4ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3958
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3959
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (29.0ms)
3960
+ Completed 200 OK in 45ms (Views: 43.7ms | ActiveRecord: 0.7ms)
3961
+
3962
+
3963
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
3964
+ Processing by Forem::PostsController#new as HTML
3965
+ Parameters: {"topic_id"=>"1"}
3966
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3967
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3968
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (1.0ms)
3969
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
3970
+
3971
+
3972
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
3973
+ Processing by Forem::PostsController#create as HTML
3974
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
3975
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3976
+ Forem::Topic Load (0.0ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3977
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
3978
+  (0.1ms) SAVEPOINT active_record_1
3979
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:13:50 UTC +00:00], ["user_id", 2]]
3980
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
3981
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
3982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3983
+ Redirected to http://www.example.com/forem/topics/1
3984
+ Completed 302 Found in 6ms
3985
+
3986
+
3987
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:13:50 -0500
3988
+ Processing by Forem::TopicsController#show as HTML
3989
+ Parameters: {"id"=>"1"}
3990
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
3991
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
3992
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
3993
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
3994
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.5ms)
3995
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.4ms)
3996
+  (0.1ms) SAVEPOINT active_record_1
3997
+ SQL (13.9ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00]]
3998
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3999
+  (0.1ms) SAVEPOINT active_record_1
4000
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
4001
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
4002
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4003
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4005
+
4006
+
4007
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:16:49 -0500
4008
+ Processing by Forem::PostsController#new as HTML
4009
+ Parameters: {"topic_id"=>"1"}
4010
+ Redirected to http://www.example.com/sign_in
4011
+ Completed 302 Found in 8ms
4012
+
4013
+
4014
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 23:16:49 -0500
4015
+ Processing by FakeController#sign_in as HTML
4016
+ Rendered text template (0.0ms)
4017
+ Completed 200 OK in 43ms (Views: 43.1ms | ActiveRecord: 0.0ms)
4018
+  (0.0ms) SAVEPOINT active_record_1
4019
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00]]
4020
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4021
+  (0.0ms) SAVEPOINT active_record_1
4022
+ SQL (0.3ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
4023
+ SQL (0.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
4024
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4025
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4027
+
4028
+
4029
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:16:49 -0500
4030
+ Processing by Forem::TopicsController#index as HTML
4031
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
4032
+ Completed 500 Internal Server Error in 48ms
4033
+  (0.0ms) SAVEPOINT active_record_1
4034
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00]]
4035
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4036
+  (0.0ms) SAVEPOINT active_record_1
4037
+ SQL (0.3ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
4038
+ SQL (0.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["user_id", 1]]
4039
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4040
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4042
+
4043
+
4044
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:16:49 -0500
4045
+ Processing by Forem::TopicsController#index as HTML
4046
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
4047
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4048
+  (0.0ms) SAVEPOINT active_record_1
4049
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 04:16:49 UTC +00:00]]
4050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4051
+ Completed 500 Internal Server Error in 5ms
4052
+  (0.1ms) SAVEPOINT active_record_1
4053
+ SQL (13.8ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:58 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:20:58 UTC +00:00]]
4054
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4055
+  (0.1ms) SAVEPOINT active_record_1
4056
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
4057
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
4058
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4059
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4061
+
4062
+
4063
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
4064
+ Processing by Forem::PostsController#new as HTML
4065
+ Parameters: {"topic_id"=>"1"}
4066
+ Redirected to http://www.example.com/sign_in
4067
+ Completed 302 Found in 7ms
4068
+
4069
+
4070
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
4071
+ Processing by FakeController#sign_in as HTML
4072
+ Rendered text template (0.0ms)
4073
+ Completed 200 OK in 44ms (Views: 43.3ms | ActiveRecord: 0.0ms)
4074
+  (0.0ms) SAVEPOINT active_record_1
4075
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00]]
4076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4077
+  (0.0ms) SAVEPOINT active_record_1
4078
+ SQL (0.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
4079
+ SQL (0.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
4080
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4081
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4083
+
4084
+
4085
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
4086
+ Processing by Forem::TopicsController#index as HTML
4087
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
4088
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at DESC LIMIT 1
4089
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
4090
+ Completed 200 OK in 64ms (Views: 62.4ms | ActiveRecord: 0.4ms)
4091
+  (0.0ms) SAVEPOINT active_record_1
4092
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00]]
4093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4094
+  (0.0ms) SAVEPOINT active_record_1
4095
+ SQL (0.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
4096
+ SQL (0.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 1]]
4097
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4098
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4099
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4100
+
4101
+
4102
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
4103
+ Processing by Forem::TopicsController#index as HTML
4104
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
4105
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4106
+  (0.0ms) SAVEPOINT active_record_1
4107
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00]]
4108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4109
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at DESC LIMIT 1
4110
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
4111
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.7ms)
4112
+
4113
+
4114
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
4115
+ Processing by Forem::TopicsController#show as HTML
4116
+ Parameters: {"id"=>"1"}
4117
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
4118
+ Forem::Post Load (0.3ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
4119
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
4120
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.4ms)
4121
+ Completed 200 OK in 41ms (Views: 39.2ms | ActiveRecord: 0.5ms)
4122
+
4123
+
4124
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
4125
+ Processing by Forem::PostsController#new as HTML
4126
+ Parameters: {"topic_id"=>"1"}
4127
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4128
+ Forem::Topic Load (0.0ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
4129
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
4130
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
4131
+
4132
+
4133
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
4134
+ Processing by Forem::PostsController#create as HTML
4135
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
4136
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4137
+ Forem::Topic Load (0.0ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
4138
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4139
+  (0.0ms) SAVEPOINT active_record_1
4140
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:20:59 UTC +00:00], ["user_id", 2]]
4141
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4142
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4143
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4144
+ Redirected to http://www.example.com/forem/topics/1
4145
+ Completed 302 Found in 5ms
4146
+
4147
+
4148
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:20:59 -0500
4149
+ Processing by Forem::TopicsController#show as HTML
4150
+ Parameters: {"id"=>"1"}
4151
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
4152
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
4153
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
4154
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
4155
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.3ms)
4156
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.4ms)
4157
+  (0.1ms) SAVEPOINT active_record_1
4158
+ SQL (16.7ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00]]
4159
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4160
+  (0.1ms) SAVEPOINT active_record_1
4161
+ SQL (0.8ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00], ["user_id", 1]]
4162
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:21:10 UTC +00:00], ["user_id", 1]]
4163
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4164
+ SQL (0.2ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4165
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4166
+
4167
+
4168
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
4169
+ Processing by Forem::PostsController#new as HTML
4170
+ Parameters: {"topic_id"=>"1"}
4171
+ Redirected to http://www.example.com/sign_in
4172
+ Completed 302 Found in 8ms
4173
+
4174
+
4175
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
4176
+ Processing by FakeController#sign_in as HTML
4177
+ Rendered text template (0.0ms)
4178
+ Completed 200 OK in 45ms (Views: 44.4ms | ActiveRecord: 0.0ms)
4179
+  (0.0ms) SAVEPOINT active_record_1
4180
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00]]
4181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4182
+  (0.0ms) SAVEPOINT active_record_1
4183
+ SQL (0.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["user_id", 1]]
4184
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["user_id", 1]]
4185
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4186
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4187
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4188
+
4189
+
4190
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
4191
+ Processing by Forem::TopicsController#index as HTML
4192
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
4193
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at DESC LIMIT 1
4194
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
4195
+ Completed 200 OK in 36ms (Views: 35.3ms | ActiveRecord: 0.4ms)
4196
+  (0.0ms) SAVEPOINT active_record_1
4197
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["login", "some_guy"], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00]]
4198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4199
+  (0.0ms) SAVEPOINT active_record_1
4200
+ SQL (0.4ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["user_id", 1]]
4201
+ SQL (0.1ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["user_id", 1]]
4202
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4203
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4205
+
4206
+
4207
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
4208
+ Processing by Forem::TopicsController#index as HTML
4209
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
4210
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4211
+  (0.0ms) SAVEPOINT active_record_1
4212
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 04:21:11 UTC +00:00]]
4213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4214
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at DESC LIMIT 1
4215
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
4216
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.9ms)
4217
+
4218
+
4219
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
4220
+ Processing by Forem::TopicsController#show as HTML
4221
+ Parameters: {"id"=>"1"}
4222
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
4223
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
4224
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
4225
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (26.0ms)
4226
+ Completed 200 OK in 41ms (Views: 39.1ms | ActiveRecord: 0.5ms)
4227
+
4228
+
4229
+ Started GET "/forem/topics/1/posts/new" for 127.0.0.1 at 2011-11-29 23:21:11 -0500
4230
+ Processing by Forem::PostsController#new as HTML
4231
+ Parameters: {"topic_id"=>"1"}
4232
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4233
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
4234
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.9ms)
4235
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
4236
+
4237
+
4238
+ Started POST "/forem/topics/1/posts" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
4239
+ Processing by Forem::PostsController#create as HTML
4240
+ Parameters: {"utf8"=>"✓", "post"=>{"text"=>"First reply!"}, "commit"=>"Create Post", "topic_id"=>"1"}
4241
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4242
+ Forem::Topic Load (0.0ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
4243
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4244
+  (0.0ms) SAVEPOINT active_record_1
4245
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["text", "First reply!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["user_id", 2]]
4246
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4247
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4249
+ Redirected to http://www.example.com/forem/topics/1
4250
+ Completed 302 Found in 5ms
4251
+
4252
+
4253
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
4254
+ Processing by Forem::TopicsController#show as HTML
4255
+ Parameters: {"id"=>"1"}
4256
+ Forem::Topic Load (0.0ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
4257
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
4258
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
4259
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
4260
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (2.2ms)
4261
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.3ms)
4262
+
4263
+
4264
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
4265
+ Processing by Forem::TopicsController#index as HTML
4266
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" 
4267
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4268
+  (0.0ms) SAVEPOINT active_record_1
4269
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "login", "updated_at") VALUES (?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["login", "forem_user"], ["updated_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00]]
4270
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4271
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.6ms)
4272
+
4273
+
4274
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
4275
+ Processing by Forem::TopicsController#new as HTML
4276
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4277
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_form.html.erb (0.4ms)
4278
+ Rendered /Users/akshay/work2/forem/app/views/forem/topics/_form.html.erb (3.0ms)
4279
+ Completed 200 OK in 8ms (Views: 5.7ms | ActiveRecord: 0.2ms)
4280
+
4281
+
4282
+ Started POST "/forem/topics" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
4283
+ Processing by Forem::TopicsController#create as HTML
4284
+ Parameters: {"utf8"=>"✓", "topic"=>{"subject"=>"First topic!", "posts_attributes"=>{"0"=>{"text"=>"First post!"}}}, "commit"=>"Create Topic"}
4285
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4286
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."login" = 'forem_user' LIMIT 1
4287
+  (0.0ms) SAVEPOINT active_record_1
4288
+ SQL (0.6ms) INSERT INTO "forem_topics" ("created_at", "posts_count", "subject", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["posts_count", 0], ["subject", "First topic!"], ["updated_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["user_id", 1]]
4289
+ SQL (0.2ms) INSERT INTO "forem_posts" ("created_at", "text", "topic_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?) [["created_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["text", "First post!"], ["topic_id", 1], ["updated_at", Wed, 30 Nov 2011 04:21:12 UTC +00:00], ["user_id", 1]]
4290
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = 1 LIMIT 1
4291
+ SQL (0.1ms) UPDATE "forem_topics" SET "posts_count" = COALESCE("posts_count", 0) + 1 WHERE "forem_topics"."id" = 1
4292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4293
+ Redirected to http://www.example.com/forem/topics/1
4294
+ Completed 302 Found in 8ms
4295
+
4296
+
4297
+ Started GET "/forem/topics/1" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
4298
+ Processing by Forem::TopicsController#show as HTML
4299
+ Parameters: {"id"=>"1"}
4300
+ Forem::Topic Load (0.1ms) SELECT "forem_topics".* FROM "forem_topics" WHERE "forem_topics"."id" = ? LIMIT 1 [["id", "1"]]
4301
+ Forem::Post Load (0.2ms) SELECT "forem_posts".* FROM "forem_posts" WHERE "forem_posts"."topic_id" = 1 ORDER BY created_at ASC
4302
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
4303
+ Rendered /Users/akshay/work2/forem/app/views/forem/posts/_post.html.erb (1.3ms)
4304
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.3ms)
4305
+
4306
+
4307
+ Started GET "/forem/topics" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
4308
+ Processing by Forem::TopicsController#index as HTML
4309
+ Forem::Topic Load (0.2ms) SELECT "forem_topics".* FROM "forem_topics"
4310
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms)
4311
+
4312
+
4313
+ Started GET "/forem/topics/new" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
4314
+ Processing by Forem::TopicsController#new as HTML
4315
+ Redirected to http://www.example.com/sign_in
4316
+ Completed 302 Found in 0ms
4317
+
4318
+
4319
+ Started GET "/sign_in" for 127.0.0.1 at 2011-11-29 23:21:12 -0500
4320
+ Processing by FakeController#sign_in as HTML
4321
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)