themes_on_rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (138) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +110 -0
  4. data/Rakefile +60 -0
  5. data/lib/generators/themes_on_rails/templates/all.css +9 -0
  6. data/lib/generators/themes_on_rails/templates/all.js +7 -0
  7. data/lib/generators/themes_on_rails/templates/layout.html.erb +14 -0
  8. data/lib/generators/themes_on_rails/templates/layout.html.haml +9 -0
  9. data/lib/generators/themes_on_rails/theme_generator.rb +52 -0
  10. data/lib/themes_on_rails/action_controller.rb +61 -0
  11. data/lib/themes_on_rails/controller_additions.rb +13 -0
  12. data/lib/themes_on_rails/engine.rb +6 -0
  13. data/lib/themes_on_rails/railtie.rb +17 -0
  14. data/lib/themes_on_rails/version.rb +3 -0
  15. data/lib/themes_on_rails.rb +9 -0
  16. data/spec/dummy/README.rdoc +28 -0
  17. data/spec/dummy/Rakefile +6 -0
  18. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  19. data/spec/dummy/app/assets/javascripts/posts.js +2 -0
  20. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  21. data/spec/dummy/app/assets/stylesheets/posts.css +4 -0
  22. data/spec/dummy/app/assets/stylesheets/scaffold.css +56 -0
  23. data/spec/dummy/app/controllers/application_controller.rb +9 -0
  24. data/spec/dummy/app/controllers/posts_controller.rb +68 -0
  25. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  26. data/spec/dummy/app/helpers/posts_helper.rb +2 -0
  27. data/spec/dummy/app/models/post.rb +2 -0
  28. data/spec/dummy/app/themes/basic_blue/assets/javascripts/basic_blue/all.js +7 -0
  29. data/spec/dummy/app/themes/basic_blue/assets/stylesheets/basic_blue/all.css +9 -0
  30. data/spec/dummy/app/themes/basic_blue/views/layouts/basic_blue.html.haml +9 -0
  31. data/spec/dummy/app/themes/basic_blue/views/posts/_form.html.erb +25 -0
  32. data/spec/dummy/app/themes/basic_blue/views/posts/edit.html.erb +6 -0
  33. data/spec/dummy/app/themes/basic_blue/views/posts/index.html.erb +29 -0
  34. data/spec/dummy/app/themes/basic_blue/views/posts/new.html.erb +5 -0
  35. data/spec/dummy/app/themes/basic_blue/views/posts/show.html.erb +15 -0
  36. data/spec/dummy/app/themes/professional_blue/assets/javascripts/professional_blue/all.js +7 -0
  37. data/spec/dummy/app/themes/professional_blue/assets/stylesheets/professional_blue/all.css +9 -0
  38. data/spec/dummy/app/themes/professional_blue/views/layouts/professional_blue.html.haml +9 -0
  39. data/spec/dummy/app/themes/professional_blue/views/posts/_form.html.erb +25 -0
  40. data/spec/dummy/app/themes/professional_blue/views/posts/edit.html.erb +6 -0
  41. data/spec/dummy/app/themes/professional_blue/views/posts/index.html.erb +29 -0
  42. data/spec/dummy/app/themes/professional_blue/views/posts/new.html.erb +5 -0
  43. data/spec/dummy/app/themes/professional_blue/views/posts/show.html.erb +15 -0
  44. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  45. data/spec/dummy/app/views/posts/_form.html.erb +25 -0
  46. data/spec/dummy/app/views/posts/edit.html.erb +6 -0
  47. data/spec/dummy/app/views/posts/index.html.erb +29 -0
  48. data/spec/dummy/app/views/posts/new.html.erb +5 -0
  49. data/spec/dummy/app/views/posts/show.html.erb +14 -0
  50. data/spec/dummy/bin/bundle +3 -0
  51. data/spec/dummy/bin/rails +4 -0
  52. data/spec/dummy/bin/rake +4 -0
  53. data/spec/dummy/config/application.rb +22 -0
  54. data/spec/dummy/config/boot.rb +5 -0
  55. data/spec/dummy/config/database.yml +25 -0
  56. data/spec/dummy/config/environment.rb +5 -0
  57. data/spec/dummy/config/environments/development.rb +29 -0
  58. data/spec/dummy/config/environments/production.rb +80 -0
  59. data/spec/dummy/config/environments/test.rb +36 -0
  60. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  62. data/spec/dummy/config/initializers/inflections.rb +16 -0
  63. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  64. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  65. data/spec/dummy/config/initializers/session_store.rb +3 -0
  66. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  67. data/spec/dummy/config/locales/en.yml +23 -0
  68. data/spec/dummy/config/routes.rb +58 -0
  69. data/spec/dummy/config.ru +4 -0
  70. data/spec/dummy/db/development.sqlite3 +0 -0
  71. data/spec/dummy/db/migrate/20131120082307_create_posts.rb +10 -0
  72. data/spec/dummy/db/schema.rb +23 -0
  73. data/spec/dummy/db/test.sqlite3 +0 -0
  74. data/spec/dummy/log/development.log +1581 -0
  75. data/spec/dummy/log/test.log +4042 -0
  76. data/spec/dummy/public/404.html +58 -0
  77. data/spec/dummy/public/422.html +58 -0
  78. data/spec/dummy/public/500.html +57 -0
  79. data/spec/dummy/public/favicon.ico +0 -0
  80. data/spec/dummy/spec/controllers/posts_controller_spec.rb +47 -0
  81. data/spec/dummy/spec/spec_helper.rb +44 -0
  82. data/spec/dummy/tmp/cache/assets/development/sprockets/0cfcea8e64323f692964ade04baf71bf +0 -0
  83. data/spec/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  84. data/spec/dummy/tmp/cache/assets/development/sprockets/1b2584b22e1970da0ea00056c0149492 +0 -0
  85. data/spec/dummy/tmp/cache/assets/development/sprockets/1e8f75a6b5b33970fb8e397347caa0a1 +0 -0
  86. data/spec/dummy/tmp/cache/assets/development/sprockets/24204f742af588c8166d3160b500d20f +0 -0
  87. data/spec/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  88. data/spec/dummy/tmp/cache/assets/development/sprockets/301390a2f715e632e51eaceadc864bd8 +0 -0
  89. data/spec/dummy/tmp/cache/assets/development/sprockets/3059f09ecb35a9d6a17cc629cf142cad +0 -0
  90. data/spec/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  91. data/spec/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  92. data/spec/dummy/tmp/cache/assets/development/sprockets/3773504c128301fa4ae43322c265863c +0 -0
  93. data/spec/dummy/tmp/cache/assets/development/sprockets/416150dc3ac35079c94273cc46e90aa6 +0 -0
  94. data/spec/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
  95. data/spec/dummy/tmp/cache/assets/development/sprockets/5384ad85f52d3272dbc64d46ef3876a4 +0 -0
  96. data/spec/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  97. data/spec/dummy/tmp/cache/assets/development/sprockets/8b1b55ee928fcc1ca79651b5a54d12b1 +0 -0
  98. data/spec/dummy/tmp/cache/assets/development/sprockets/97b428fb2be48bdef1c2edc6895007e6 +0 -0
  99. data/spec/dummy/tmp/cache/assets/development/sprockets/a144f874a0fbcfbf57e914e54950b2b8 +0 -0
  100. data/spec/dummy/tmp/cache/assets/development/sprockets/a6505a19f1ef24ad643489939529b237 +0 -0
  101. data/spec/dummy/tmp/cache/assets/development/sprockets/aea240771414d6f51f0eeffa97de34c0 +0 -0
  102. data/spec/dummy/tmp/cache/assets/development/sprockets/c6062fc388a3fcd36f0407b7de58b073 +0 -0
  103. data/spec/dummy/tmp/cache/assets/development/sprockets/c85016e7bbd4f3adbb7635d01f85d39b +0 -0
  104. data/spec/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  105. data/spec/dummy/tmp/cache/assets/development/sprockets/d066c004d1fd26ae76a61303a7a18145 +0 -0
  106. data/spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  107. data/spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  108. data/spec/dummy/tmp/cache/assets/development/sprockets/fbce05c1fbdc18388ed134c8e4100ac8 +0 -0
  109. data/spec/dummy/tmp/cache/assets/test/sprockets/0cfcea8e64323f692964ade04baf71bf +0 -0
  110. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  111. data/spec/dummy/tmp/cache/assets/test/sprockets/1b2584b22e1970da0ea00056c0149492 +0 -0
  112. data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  113. data/spec/dummy/tmp/cache/assets/test/sprockets/301390a2f715e632e51eaceadc864bd8 +0 -0
  114. data/spec/dummy/tmp/cache/assets/test/sprockets/3059f09ecb35a9d6a17cc629cf142cad +0 -0
  115. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  116. data/spec/dummy/tmp/cache/assets/test/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  117. data/spec/dummy/tmp/cache/assets/test/sprockets/3773504c128301fa4ae43322c265863c +0 -0
  118. data/spec/dummy/tmp/cache/assets/test/sprockets/416150dc3ac35079c94273cc46e90aa6 +0 -0
  119. data/spec/dummy/tmp/cache/assets/test/sprockets/5384ad85f52d3272dbc64d46ef3876a4 +0 -0
  120. data/spec/dummy/tmp/cache/assets/test/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  121. data/spec/dummy/tmp/cache/assets/test/sprockets/8b1b55ee928fcc1ca79651b5a54d12b1 +0 -0
  122. data/spec/dummy/tmp/cache/assets/test/sprockets/97b428fb2be48bdef1c2edc6895007e6 +0 -0
  123. data/spec/dummy/tmp/cache/assets/test/sprockets/a144f874a0fbcfbf57e914e54950b2b8 +0 -0
  124. data/spec/dummy/tmp/cache/assets/test/sprockets/a6505a19f1ef24ad643489939529b237 +0 -0
  125. data/spec/dummy/tmp/cache/assets/test/sprockets/aea240771414d6f51f0eeffa97de34c0 +0 -0
  126. data/spec/dummy/tmp/cache/assets/test/sprockets/c6062fc388a3fcd36f0407b7de58b073 +0 -0
  127. data/spec/dummy/tmp/cache/assets/test/sprockets/c85016e7bbd4f3adbb7635d01f85d39b +0 -0
  128. data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  129. data/spec/dummy/tmp/cache/assets/test/sprockets/d066c004d1fd26ae76a61303a7a18145 +0 -0
  130. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  131. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  132. data/spec/dummy/tmp/cache/assets/test/sprockets/fbce05c1fbdc18388ed134c8e4100ac8 +0 -0
  133. data/spec/generators/themes_on_rails/theme_generator_spec.rb +67 -0
  134. data/spec/lib/action_controller_spec.rb +45 -0
  135. data/spec/lib/assets_path_spec.rb +15 -0
  136. data/spec/lib/controller_additions_spec.rb +22 -0
  137. data/spec/spec_helper.rb +22 -0
  138. metadata +330 -0
@@ -0,0 +1,4042 @@
1
+ Processing by PostsController#new as HTML
2
+ Completed 500 Internal Server Error in 1ms
3
+ Processing by PostsController#create as HTML
4
+ Parameters: {"post"=>{"title"=>"MyString"}}
5
+ Completed 500 Internal Server Error in 1ms
6
+ Processing by PostsController#create as HTML
7
+ Parameters: {"post"=>{"title"=>"MyString"}}
8
+ Completed 500 Internal Server Error in 1ms
9
+ Processing by PostsController#create as HTML
10
+ Parameters: {"post"=>{"title"=>"invalid value"}}
11
+ Completed 500 Internal Server Error in 1ms
12
+ Processing by PostsController#create as HTML
13
+ Parameters: {"post"=>{"title"=>"invalid value"}}
14
+ Completed 500 Internal Server Error in 1ms
15
+ Started GET "/posts" for 127.0.0.1 at 2013-11-20 16:06:09 +0700
16
+ Processing by PostsController#index as HTML
17
+ Post Load (0.3ms) SELECT "posts".* FROM "posts"
18
+ SQLite3::SQLException: no such table: posts: SELECT "posts".* FROM "posts"
19
+ Completed 500 Internal Server Error in 15ms
20
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
21
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+ Migrating to CreatePosts (20131120082307)
24
+  (0.1ms) begin transaction
25
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
26
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131120082307"]]
27
+  (0.7ms) commit transaction
28
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
29
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+  (0.1ms) begin transaction
31
+  (0.1ms) rollback transaction
32
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
33
+  (0.1ms) begin transaction
34
+  (0.1ms) rollback transaction
35
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
36
+  (0.1ms) begin transaction
37
+  (0.1ms) rollback transaction
38
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
39
+  (0.1ms) begin transaction
40
+  (0.1ms) rollback transaction
41
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
42
+  (0.1ms) begin transaction
43
+  (0.1ms) rollback transaction
44
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
45
+  (0.1ms) begin transaction
46
+  (0.1ms) rollback transaction
47
+  (0.1ms) begin transaction
48
+  (0.0ms) rollback transaction
49
+ ActiveRecord::SchemaMigration Load (1.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
50
+  (0.1ms) begin transaction
51
+  (0.0ms) rollback transaction
52
+  (0.1ms) begin transaction
53
+  (0.0ms) rollback transaction
54
+ Connecting to database specified by database.yml
55
+ Connecting to database specified by database.yml
56
+ Connecting to database specified by database.yml
57
+ Connecting to database specified by database.yml
58
+ Connecting to database specified by database.yml
59
+ Connecting to database specified by database.yml
60
+ Connecting to database specified by database.yml
61
+ Connecting to database specified by database.yml
62
+ Connecting to database specified by database.yml
63
+ Connecting to database specified by database.yml
64
+ Connecting to database specified by database.yml
65
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
66
+  (0.1ms) begin transaction
67
+ Processing by PostsController#index as HTML
68
+ Parameters: {"theme"=>"professional_blue"}
69
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (0.3ms)
70
+ Completed 200 OK in 10ms (Views: 7.7ms | ActiveRecord: 0.0ms)
71
+  (0.1ms) rollback transaction
72
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
73
+  (0.1ms) begin transaction
74
+ Processing by PostsController#index as HTML
75
+ Parameters: {"theme"=>"professional_blue"}
76
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
77
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (3.1ms)
78
+ Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 0.5ms)
79
+  (0.1ms) rollback transaction
80
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
81
+  (0.1ms) begin transaction
82
+ Processing by PostsController#index as HTML
83
+ Parameters: {"theme"=>"professional_blue"}
84
+ Post Load (0.7ms) SELECT "posts".* FROM "posts"
85
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (3.5ms)
86
+ Completed 200 OK in 12ms (Views: 9.8ms | ActiveRecord: 0.7ms)
87
+  (0.1ms) rollback transaction
88
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
89
+  (0.1ms) begin transaction
90
+ Processing by PostsController#index as HTML
91
+ Parameters: {"theme"=>"professional_blue"}
92
+ Post Load (0.6ms) SELECT "posts".* FROM "posts"
93
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (3.1ms)
94
+ Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 0.6ms)
95
+  (0.1ms) rollback transaction
96
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
97
+  (0.1ms) begin transaction
98
+ Processing by PostsController#index as HTML
99
+ Parameters: {"theme"=>"professional_blue"}
100
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
101
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (3.2ms)
102
+ Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 0.5ms)
103
+  (0.1ms) rollback transaction
104
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
105
+  (0.1ms) begin transaction
106
+ Processing by PostsController#index as HTML
107
+ Parameters: {"theme"=>"professional_blue"}
108
+ Post Load (0.6ms) SELECT "posts".* FROM "posts"
109
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (3.2ms)
110
+ Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 0.6ms)
111
+  (0.1ms) rollback transaction
112
+  (0.0ms) begin transaction
113
+ Processing by PostsController#index as HTML
114
+ Parameters: {"theme"=>"basic_blue"}
115
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
116
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.2ms)
117
+  (0.1ms) rollback transaction
118
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
119
+  (0.1ms) begin transaction
120
+ Processing by PostsController#index as HTML
121
+ Parameters: {"theme"=>"professional_blue"}
122
+ Post Load (0.7ms) SELECT "posts".* FROM "posts"
123
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (3.4ms)
124
+ Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 0.7ms)
125
+  (0.1ms) rollback transaction
126
+  (0.1ms) begin transaction
127
+ Processing by PostsController#index as HTML
128
+ Parameters: {"theme"=>"basic_blue"}
129
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
130
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
131
+  (0.1ms) rollback transaction
132
+  (0.0ms) begin transaction
133
+ Processing by PostsController#new as HTML
134
+ Parameters: {"theme"=>"basic_blue"}
135
+ Rendered posts/_form.html.erb (17.9ms)
136
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.2ms)
137
+  (0.1ms) rollback transaction
138
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
139
+  (0.1ms) begin transaction
140
+ Processing by PostsController#index as HTML
141
+ Parameters: {"theme"=>"basic_blue"}
142
+ Post Load (0.7ms) SELECT "posts".* FROM "posts"
143
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (3.3ms)
144
+ Completed 200 OK in 11ms (Views: 9.0ms | ActiveRecord: 0.7ms)
145
+  (0.1ms) rollback transaction
146
+  (0.1ms) begin transaction
147
+ Processing by PostsController#index as HTML
148
+ Parameters: {"theme"=>"professional_blue"}
149
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
150
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.1ms)
151
+  (0.0ms) rollback transaction
152
+  (0.1ms) begin transaction
153
+ Processing by PostsController#new as HTML
154
+ Parameters: {"theme"=>"basic_blue"}
155
+ Rendered posts/_form.html.erb (15.7ms)
156
+ Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.2ms)
157
+  (0.1ms) rollback transaction
158
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
159
+  (0.1ms) begin transaction
160
+ Processing by PostsController#index as HTML
161
+ Parameters: {"theme"=>"basic_blue"}
162
+ Post Load (0.4ms) SELECT "posts".* FROM "posts"
163
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (2.8ms)
164
+ Completed 200 OK in 10ms (Views: 7.7ms | ActiveRecord: 0.4ms)
165
+  (0.1ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+ Processing by PostsController#index as HTML
168
+ Parameters: {"theme"=>"professional_blue"}
169
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
170
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
171
+  (0.0ms) rollback transaction
172
+  (0.1ms) begin transaction
173
+ Processing by PostsController#new as HTML
174
+ Parameters: {"theme"=>"basic_blue"}
175
+ Rendered posts/_form.html.erb (16.6ms)
176
+ Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.2ms)
177
+  (0.1ms) rollback transaction
178
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
179
+  (0.1ms) begin transaction
180
+ Processing by PostsController#index as HTML
181
+ Parameters: {"theme"=>"basic_blue"}
182
+ Post Load (0.7ms) SELECT "posts".* FROM "posts"
183
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (3.2ms)
184
+ Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 0.7ms)
185
+  (0.1ms) rollback transaction
186
+  (0.0ms) begin transaction
187
+ Processing by PostsController#new as HTML
188
+ Parameters: {"theme"=>"basic_blue"}
189
+ Rendered posts/_form.html.erb (16.7ms)
190
+ Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.2ms)
191
+  (0.1ms) rollback transaction
192
+  (0.1ms) begin transaction
193
+ Processing by PostsController#index as HTML
194
+ Parameters: {"theme"=>"professional_blue"}
195
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
196
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.2ms)
197
+  (0.1ms) rollback transaction
198
+  (0.1ms) begin transaction
199
+ Processing by PostsController#index as HTML
200
+ Parameters: {"theme"=>"professional_blue"}
201
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
202
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.1ms)
203
+  (0.1ms) rollback transaction
204
+ Connecting to database specified by database.yml
205
+ Processing by PostsController#index as HTML
206
+ Parameters: {"theme"=>"basic_blue"}
207
+ Post Load (0.5ms) SELECT "posts".* FROM "posts" 
208
+ Rendered posts/index.html.erb (2.2ms)
209
+ Completed 200 OK in 10.3ms (Views: 8.6ms | ActiveRecord: 0.5ms)
210
+ Processing by PostsController#new as HTML
211
+ Parameters: {"theme"=>"basic_blue"}
212
+ Rendered posts/_form.html.erb (8.4ms)
213
+ Completed 200 OK in 17.3ms (Views: 13.1ms | ActiveRecord: 0.0ms)
214
+ Processing by PostsController#index as HTML
215
+ Parameters: {"theme"=>"professional_blue"}
216
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
217
+ Completed 200 OK in 1.3ms (Views: 0.7ms | ActiveRecord: 0.1ms)
218
+ Processing by PostsController#index as HTML
219
+ Parameters: {"theme"=>"professional_blue"}
220
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
221
+ Completed 200 OK in 1.1ms (Views: 0.6ms | ActiveRecord: 0.1ms)
222
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
223
+  (0.1ms) begin transaction
224
+ Processing by PostsController#index as HTML
225
+ Parameters: {"theme"=>"basic_blue"}
226
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
227
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (2.8ms)
228
+ Completed 200 OK in 11ms (Views: 9.0ms | ActiveRecord: 0.5ms)
229
+  (0.1ms) rollback transaction
230
+  (0.1ms) begin transaction
231
+ Processing by PostsController#new as HTML
232
+ Parameters: {"theme"=>"basic_blue"}
233
+ Rendered posts/_form.html.erb (18.5ms)
234
+ Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.2ms)
235
+  (0.1ms) rollback transaction
236
+  (0.1ms) begin transaction
237
+ Processing by PostsController#index as HTML
238
+ Parameters: {"theme"=>"professional_blue"}
239
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
240
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.2ms)
241
+  (0.1ms) rollback transaction
242
+  (0.1ms) begin transaction
243
+ Processing by PostsController#index as HTML
244
+ Parameters: {"theme"=>"professional_blue"}
245
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
246
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.1ms)
247
+  (0.1ms) rollback transaction
248
+ Processing by PostsController#index as HTML
249
+ Parameters: {"theme"=>"basic_blue"}
250
+ Post Load (2.1ms) SELECT "posts".* FROM "posts"
251
+ Rendered posts/index.html.erb (5.0ms)
252
+ Completed 200 OK in 39ms (Views: 35.2ms | ActiveRecord: 2.1ms)
253
+ Processing by PostsController#new as HTML
254
+ Parameters: {"theme"=>"basic_blue"}
255
+ Rendered posts/_form.html.erb (16.2ms)
256
+ Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.3ms)
257
+ Processing by PostsController#index as HTML
258
+ Parameters: {"theme"=>"professional_blue"}
259
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
260
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms)
261
+ Processing by PostsController#index as HTML
262
+ Parameters: {"theme"=>"professional_blue"}
263
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
264
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.1ms)
265
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
266
+  (0.1ms) begin transaction
267
+ Processing by PostsController#index as HTML
268
+ Parameters: {"theme"=>"basic_blue"}
269
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
270
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (2.9ms)
271
+ Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.2ms)
272
+  (0.1ms) rollback transaction
273
+  (0.1ms) begin transaction
274
+ Processing by PostsController#new as HTML
275
+ Parameters: {"theme"=>"basic_blue"}
276
+ Rendered posts/_form.html.erb (11.1ms)
277
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.2ms)
278
+  (0.1ms) rollback transaction
279
+  (0.0ms) begin transaction
280
+ Processing by PostsController#index as HTML
281
+ Parameters: {"theme"=>"professional_blue"}
282
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
283
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
284
+  (0.1ms) rollback transaction
285
+  (0.1ms) begin transaction
286
+ Processing by PostsController#index as HTML
287
+ Parameters: {"theme"=>"professional_blue"}
288
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
289
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
290
+  (0.1ms) rollback transaction
291
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
292
+  (0.1ms) begin transaction
293
+ Processing by PostsController#index as HTML
294
+ Parameters: {"theme"=>"basic_blue"}
295
+ Post Load (0.7ms) SELECT "posts".* FROM "posts"
296
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (3.5ms)
297
+ Completed 200 OK in 12ms (Views: 9.5ms | ActiveRecord: 0.7ms)
298
+  (0.1ms) rollback transaction
299
+  (0.1ms) begin transaction
300
+ Processing by PostsController#new as HTML
301
+ Parameters: {"theme"=>"basic_blue"}
302
+ Rendered posts/_form.html.erb (16.1ms)
303
+ Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.2ms)
304
+  (0.1ms) rollback transaction
305
+  (0.1ms) begin transaction
306
+ Processing by PostsController#index as HTML
307
+ Parameters: {"theme"=>"professional_blue"}
308
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
309
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
310
+  (0.1ms) rollback transaction
311
+  (0.1ms) begin transaction
312
+ Processing by PostsController#index as HTML
313
+ Parameters: {"theme"=>"professional_blue"}
314
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
315
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.1ms)
316
+  (2.2ms) rollback transaction
317
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
318
+  (0.1ms) begin transaction
319
+ Processing by PostsController#new as HTML
320
+ Parameters: {"theme"=>"basic_blue"}
321
+ Rendered posts/_form.html.erb (17.1ms)
322
+ Rendered posts/new.html.erb (23.7ms)
323
+ Completed 200 OK in 33ms (Views: 30.6ms | ActiveRecord: 0.3ms)
324
+  (0.1ms) rollback transaction
325
+  (0.1ms) begin transaction
326
+ Processing by PostsController#index as HTML
327
+ Parameters: {"theme"=>"basic_blue"}
328
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
329
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.5ms)
330
+  (0.1ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+ Processing by PostsController#index as HTML
333
+ Parameters: {"theme"=>"professional_blue"}
334
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
335
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
336
+  (0.1ms) rollback transaction
337
+  (0.1ms) begin transaction
338
+ Processing by PostsController#index as HTML
339
+ Parameters: {"theme"=>"professional_blue"}
340
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
341
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.1ms)
342
+  (0.1ms) rollback transaction
343
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
344
+  (0.1ms) begin transaction
345
+ Processing by PostsController#index as HTML
346
+ Parameters: {"theme"=>"basic_blue"}
347
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
348
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (3.6ms)
349
+ Completed 200 OK in 15334ms (Views: 11.3ms | ActiveRecord: 0.5ms)
350
+  (0.1ms) rollback transaction
351
+  (0.1ms) begin transaction
352
+ Processing by PostsController#new as HTML
353
+ Parameters: {"theme"=>"basic_blue"}
354
+ Rendered posts/_form.html.erb (17.9ms)
355
+ Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.3ms)
356
+  (0.1ms) rollback transaction
357
+  (0.1ms) begin transaction
358
+ Processing by PostsController#index as HTML
359
+ Parameters: {"theme"=>"professional_blue"}
360
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
361
+ Completed 200 OK in 2085ms (Views: 2.9ms | ActiveRecord: 0.2ms)
362
+  (0.1ms) rollback transaction
363
+  (0.1ms) begin transaction
364
+ Processing by PostsController#index as HTML
365
+ Parameters: {"theme"=>"professional_blue"}
366
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
367
+ Completed 200 OK in 1296ms (Views: 2.2ms | ActiveRecord: 0.2ms)
368
+  (0.1ms) rollback transaction
369
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
370
+  (0.1ms) begin transaction
371
+ Processing by PostsController#index as HTML
372
+ Parameters: {"theme"=>"basic_blue"}
373
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
374
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (3.2ms)
375
+ Completed 200 OK in 6549ms (Views: 8.6ms | ActiveRecord: 0.5ms)
376
+  (0.1ms) rollback transaction
377
+  (0.0ms) begin transaction
378
+ Processing by PostsController#new as HTML
379
+ Parameters: {"theme"=>"basic_blue"}
380
+ Rendered posts/_form.html.erb (16.7ms)
381
+ Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.2ms)
382
+  (0.1ms) rollback transaction
383
+  (0.1ms) begin transaction
384
+ Processing by PostsController#index as HTML
385
+ Parameters: {"theme"=>"professional_blue"}
386
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
387
+ Completed 200 OK in 2539ms (Views: 4.8ms | ActiveRecord: 0.2ms)
388
+  (0.1ms) rollback transaction
389
+  (0.1ms) begin transaction
390
+ Processing by PostsController#index as HTML
391
+ Parameters: {"theme"=>"professional_blue"}
392
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
393
+ Completed 200 OK in 1085ms (Views: 29.2ms | ActiveRecord: 0.2ms)
394
+  (0.1ms) rollback transaction
395
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
396
+  (0.1ms) begin transaction
397
+ Processing by PostsController#new as HTML
398
+ Parameters: {"theme"=>"basic_blue"}
399
+ Rendered posts/_form.html.erb (16.1ms)
400
+ Rendered posts/new.html.erb (21.5ms)
401
+ Completed 200 OK in 31ms (Views: 28.3ms | ActiveRecord: 0.3ms)
402
+  (0.1ms) rollback transaction
403
+  (0.0ms) begin transaction
404
+ Processing by PostsController#index as HTML
405
+ Parameters: {"theme"=>"basic_blue"}
406
+ Post Load (0.6ms) SELECT "posts".* FROM "posts"
407
+ Completed 200 OK in 1529ms (Views: 2.8ms | ActiveRecord: 0.6ms)
408
+  (0.1ms) rollback transaction
409
+  (0.1ms) begin transaction
410
+ Processing by PostsController#index as HTML
411
+ Parameters: {"theme"=>"professional_blue"}
412
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
413
+ Completed 200 OK in 946ms (Views: 3.8ms | ActiveRecord: 0.1ms)
414
+  (0.1ms) rollback transaction
415
+  (0.1ms) begin transaction
416
+ Processing by PostsController#index as HTML
417
+ Parameters: {"theme"=>"professional_blue"}
418
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
419
+ Completed 200 OK in 1416ms (Views: 2.1ms | ActiveRecord: 0.1ms)
420
+  (0.1ms) rollback transaction
421
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
422
+  (0.1ms) begin transaction
423
+ Processing by PostsController#index as HTML
424
+ Parameters: {"theme"=>"basic_blue"}
425
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
426
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (2.2ms)
427
+ Completed 200 OK in 2398ms (Views: 6.7ms | ActiveRecord: 0.2ms)
428
+  (0.1ms) rollback transaction
429
+  (0.1ms) begin transaction
430
+ Processing by PostsController#new as HTML
431
+ Parameters: {"theme"=>"basic_blue"}
432
+ Rendered posts/_form.html.erb (11.1ms)
433
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms)
434
+  (0.1ms) rollback transaction
435
+  (0.1ms) begin transaction
436
+ Processing by PostsController#index as HTML
437
+ Parameters: {"theme"=>"professional_blue"}
438
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
439
+ Completed 200 OK in 1197ms (Views: 2.4ms | ActiveRecord: 0.2ms)
440
+  (0.1ms) rollback transaction
441
+  (0.1ms) begin transaction
442
+ Processing by PostsController#index as HTML
443
+ Parameters: {"theme"=>"professional_blue"}
444
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
445
+ Completed 200 OK in 1321ms (Views: 35.0ms | ActiveRecord: 0.2ms)
446
+  (0.1ms) rollback transaction
447
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
448
+  (0.1ms) begin transaction
449
+ Processing by PostsController#index as HTML
450
+ Parameters: {"theme"=>"basic_blue"}
451
+ Post Load (0.7ms) SELECT "posts".* FROM "posts"
452
+ Rendered app/themes/basic_blue/views/posts/index.html.erb (3.8ms)
453
+ Completed 200 OK in 1340ms (Views: 10.3ms | ActiveRecord: 0.7ms)
454
+  (0.1ms) rollback transaction
455
+  (0.1ms) begin transaction
456
+ Processing by PostsController#new as HTML
457
+ Parameters: {"theme"=>"basic_blue"}
458
+ Rendered posts/_form.html.erb (16.1ms)
459
+ Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.2ms)
460
+  (0.1ms) rollback transaction
461
+  (0.0ms) begin transaction
462
+ Processing by PostsController#index as HTML
463
+ Parameters: {"theme"=>"professional_blue"}
464
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
465
+ Completed 200 OK in 1770ms (Views: 4.0ms | ActiveRecord: 0.2ms)
466
+  (0.1ms) rollback transaction
467
+  (0.1ms) begin transaction
468
+ Processing by PostsController#index as HTML
469
+ Parameters: {"theme"=>"professional_blue"}
470
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
471
+ Completed 200 OK in 1198ms (Views: 28.5ms | ActiveRecord: 0.2ms)
472
+  (0.1ms) rollback transaction
473
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
474
+  (0.1ms) begin transaction
475
+ Processing by PostsController#index as HTML
476
+ Parameters: {"theme"=>"professional_blue"}
477
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
478
+ Rendered app/themes/professional_blue/views/posts/index.html.erb (3.3ms)
479
+ Completed 200 OK in 1750ms (Views: 9.5ms | ActiveRecord: 0.5ms)
480
+  (0.1ms) rollback transaction
481
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
482
+  (0.1ms) begin transaction
483
+ Processing by PostsController#index as HTML
484
+ Parameters: {"theme"=>"professional_blue"}
485
+ Post Load (1.2ms) SELECT "posts".* FROM "posts"
486
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.1ms)
487
+ Completed 200 OK in 1295ms (Views: 25.0ms | ActiveRecord: 1.2ms)
488
+  (0.1ms) rollback transaction
489
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
490
+  (0.1ms) begin transaction
491
+ Processing by PostsController#index as HTML
492
+ Parameters: {"theme"=>"professional_blue"}
493
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
494
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.8ms)
495
+ Completed 200 OK in 1957ms (Views: 23.8ms | ActiveRecord: 1.0ms)
496
+  (0.1ms) rollback transaction
497
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
498
+  (0.1ms) begin transaction
499
+ Processing by PostsController#index as HTML
500
+ Parameters: {"theme"=>"professional_blue"}
501
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
502
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.0ms)
503
+ Completed 200 OK in 1085ms (Views: 22.9ms | ActiveRecord: 0.5ms)
504
+  (0.1ms) rollback transaction
505
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
506
+  (0.1ms) begin transaction
507
+ Processing by PostsController#index as HTML
508
+ Parameters: {"theme"=>"professional_blue"}
509
+ Post Load (0.4ms) SELECT "posts".* FROM "posts"
510
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
511
+ Completed 200 OK in 1476ms (Views: 28.7ms | ActiveRecord: 0.4ms)
512
+  (0.1ms) rollback transaction
513
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
514
+  (0.1ms) begin transaction
515
+ Processing by PostsController#index as HTML
516
+ Parameters: {"theme"=>"professional_blue"}
517
+ Completed 500 Internal Server Error in 1ms
518
+  (0.1ms) rollback transaction
519
+  (0.1ms) begin transaction
520
+ Processing by PostsController#index as HTML
521
+ Parameters: {"theme"=>"professional_blue"}
522
+ Completed 500 Internal Server Error in 1ms
523
+  (0.0ms) rollback transaction
524
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
525
+  (0.1ms) begin transaction
526
+ Processing by PostsController#index as HTML
527
+ Parameters: {"theme"=>"professional_blue"}
528
+ Post Load (0.4ms) SELECT "posts".* FROM "posts"
529
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.1ms)
530
+ Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.4ms)
531
+  (0.1ms) rollback transaction
532
+  (0.1ms) begin transaction
533
+ Processing by PostsController#index as HTML
534
+ Parameters: {"theme"=>"professional_blue"}
535
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
536
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
537
+  (0.1ms) rollback transaction
538
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
539
+  (0.1ms) begin transaction
540
+ Processing by PostsController#index as HTML
541
+ Parameters: {"theme"=>"basic_blue"}
542
+ Post Load (0.6ms) SELECT "posts".* FROM "posts"
543
+ Rendered app/themes/basic_blue/views/posts/index.html.erb within layouts/basic_blue (3.3ms)
544
+ Completed 200 OK in 27ms (Views: 24.1ms | ActiveRecord: 0.6ms)
545
+  (0.1ms) rollback transaction
546
+  (0.1ms) begin transaction
547
+ Processing by PostsController#index as HTML
548
+ Parameters: {"theme"=>"basic_blue"}
549
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
550
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
551
+  (0.1ms) rollback transaction
552
+  (0.1ms) begin transaction
553
+ Processing by PostsController#index as HTML
554
+ Parameters: {"theme"=>"professional_blue"}
555
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
556
+ Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms)
557
+  (0.1ms) rollback transaction
558
+  (0.1ms) begin transaction
559
+ Processing by PostsController#index as HTML
560
+ Parameters: {"theme"=>"professional_blue"}
561
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
562
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
563
+  (0.1ms) rollback transaction
564
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
565
+  (0.1ms) begin transaction
566
+ Processing by PostsController#index as HTML
567
+ Parameters: {"theme"=>"basic_blue"}
568
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
569
+ Rendered app/themes/basic_blue/views/posts/index.html.erb within layouts/basic_blue (3.2ms)
570
+ Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.5ms)
571
+  (0.1ms) rollback transaction
572
+  (0.0ms) begin transaction
573
+ Processing by PostsController#index as HTML
574
+ Parameters: {"theme"=>"basic_blue"}
575
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
576
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
577
+  (0.1ms) rollback transaction
578
+  (0.1ms) begin transaction
579
+ Processing by PostsController#index as HTML
580
+ Parameters: {"theme"=>"professional_blue"}
581
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
582
+ Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.2ms)
583
+  (0.1ms) rollback transaction
584
+  (0.1ms) begin transaction
585
+ Processing by PostsController#index as HTML
586
+ Parameters: {"theme"=>"professional_blue"}
587
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
588
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
589
+  (0.1ms) rollback transaction
590
+  (0.1ms) begin transaction
591
+ Processing by PostsController#new as HTML
592
+ Parameters: {"theme"=>"basic_blue"}
593
+ Rendered posts/_form.html.erb (46.0ms)
594
+ Completed 200 OK in 69ms (Views: 68.5ms | ActiveRecord: 0.2ms)
595
+  (0.1ms) rollback transaction
596
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
597
+  (0.1ms) begin transaction
598
+ Processing by PostsController#index as HTML
599
+ Parameters: {"theme"=>"basic_blue"}
600
+ Post Load (0.4ms) SELECT "posts".* FROM "posts"
601
+ Rendered app/themes/basic_blue/views/posts/index.html.erb within layouts/basic_blue (2.8ms)
602
+ Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.4ms)
603
+  (0.1ms) rollback transaction
604
+  (0.1ms) begin transaction
605
+ Processing by PostsController#index as HTML
606
+ Parameters: {"theme"=>"basic_blue"}
607
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
608
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
609
+  (0.1ms) rollback transaction
610
+  (0.1ms) begin transaction
611
+ Processing by PostsController#new as HTML
612
+ Parameters: {"theme"=>"basic_blue"}
613
+ Rendered posts/_form.html.erb (40.8ms)
614
+ Completed 200 OK in 57ms (Views: 56.3ms | ActiveRecord: 0.2ms)
615
+  (0.1ms) rollback transaction
616
+  (0.1ms) begin transaction
617
+ Processing by PostsController#index as HTML
618
+ Parameters: {"theme"=>"basic_blue"}
619
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
620
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
621
+  (0.1ms) rollback transaction
622
+  (0.1ms) begin transaction
623
+ Processing by PostsController#index as HTML
624
+ Parameters: {"theme"=>"professional_blue"}
625
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
626
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms)
627
+  (0.1ms) rollback transaction
628
+  (0.1ms) begin transaction
629
+ Processing by PostsController#index as HTML
630
+ Parameters: {"theme"=>"professional_blue"}
631
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
632
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
633
+  (0.1ms) rollback transaction
634
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
635
+  (0.1ms) begin transaction
636
+ Processing by PostsController#index as HTML
637
+ Parameters: {"theme"=>"professional_blue"}
638
+ Post Load (0.4ms) SELECT "posts".* FROM "posts"
639
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.8ms)
640
+ Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.4ms)
641
+  (0.1ms) rollback transaction
642
+  (0.1ms) begin transaction
643
+ Processing by PostsController#index as HTML
644
+ Parameters: {"theme"=>"professional_blue"}
645
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
646
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
647
+  (0.1ms) rollback transaction
648
+  (0.1ms) begin transaction
649
+ Processing by PostsController#index as HTML
650
+ Parameters: {"theme"=>"basic_blue"}
651
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
652
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.1ms)
653
+  (0.1ms) rollback transaction
654
+  (0.1ms) begin transaction
655
+ Processing by PostsController#index as HTML
656
+ Parameters: {"theme"=>"basic_blue"}
657
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
658
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
659
+  (0.1ms) rollback transaction
660
+  (0.1ms) begin transaction
661
+ Processing by PostsController#new as HTML
662
+ Parameters: {"theme"=>"basic_blue"}
663
+ Rendered posts/_form.html.erb (46.8ms)
664
+ Completed 200 OK in 63ms (Views: 62.4ms | ActiveRecord: 0.2ms)
665
+  (0.1ms) rollback transaction
666
+  (0.0ms) begin transaction
667
+ Processing by PostsController#new as HTML
668
+ Parameters: {"theme"=>"basic_blue"}
669
+ Rendered posts/_form.html.erb (1.6ms)
670
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
671
+  (0.0ms) rollback transaction
672
+ Processing by PostsController#index as HTML
673
+ Parameters: {"theme"=>"professional_blue"}
674
+ Completed 500 Internal Server Error in 25ms
675
+ Processing by PostsController#index as HTML
676
+ Parameters: {"theme"=>"professional_blue"}
677
+ Completed 500 Internal Server Error in 4ms
678
+ Processing by PostsController#index as HTML
679
+ Parameters: {"theme"=>"basic_blue"}
680
+ Completed 500 Internal Server Error in 6ms
681
+ Processing by PostsController#index as HTML
682
+ Parameters: {"theme"=>"basic_blue"}
683
+ Completed 500 Internal Server Error in 27ms
684
+ Processing by PostsController#new as HTML
685
+ Parameters: {"theme"=>"basic_blue"}
686
+ Rendered posts/_form.html.erb (16.3ms)
687
+ Completed 200 OK in 37ms (Views: 34.2ms | ActiveRecord: 1.5ms)
688
+ Processing by PostsController#new as HTML
689
+ Parameters: {"theme"=>"basic_blue"}
690
+ Rendered posts/_form.html.erb (1.7ms)
691
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
692
+ Processing by PostsController#index as HTML
693
+ Parameters: {"theme"=>"professional_blue"}
694
+ Completed 500 Internal Server Error in 16ms
695
+ Processing by PostsController#index as HTML
696
+ Parameters: {"theme"=>"professional_blue"}
697
+ Completed 500 Internal Server Error in 4ms
698
+ Processing by PostsController#index as HTML
699
+ Parameters: {"theme"=>"basic_blue"}
700
+ Completed 500 Internal Server Error in 6ms
701
+ Processing by PostsController#index as HTML
702
+ Parameters: {"theme"=>"basic_blue"}
703
+ Completed 500 Internal Server Error in 3ms
704
+ Processing by PostsController#new as HTML
705
+ Parameters: {"theme"=>"basic_blue"}
706
+ Rendered posts/_form.html.erb (14.7ms)
707
+ Completed 200 OK in 38ms (Views: 35.6ms | ActiveRecord: 1.4ms)
708
+ Processing by PostsController#new as HTML
709
+ Parameters: {"theme"=>"basic_blue"}
710
+ Rendered posts/_form.html.erb (2.9ms)
711
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
712
+ Processing by PostsController#index as HTML
713
+ Parameters: {"theme"=>"professional_blue"}
714
+ Post Load (1.9ms) SELECT "posts".* FROM "posts"
715
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (5.1ms)
716
+ Completed 200 OK in 24ms (Views: 20.9ms | ActiveRecord: 1.9ms)
717
+ Processing by PostsController#index as HTML
718
+ Parameters: {"theme"=>"professional_blue"}
719
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
720
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
721
+ Processing by PostsController#index as HTML
722
+ Parameters: {"theme"=>"basic_blue"}
723
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
724
+ Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.2ms)
725
+ Processing by PostsController#index as HTML
726
+ Parameters: {"theme"=>"basic_blue"}
727
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
728
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
729
+ Processing by PostsController#new as HTML
730
+ Parameters: {"theme"=>"basic_blue"}
731
+ Rendered posts/_form.html.erb (11.1ms)
732
+ Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.3ms)
733
+ Processing by PostsController#new as HTML
734
+ Parameters: {"theme"=>"basic_blue"}
735
+ Rendered posts/_form.html.erb (1.7ms)
736
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
737
+ Processing by PostsController#index as HTML
738
+ Parameters: {"theme"=>"professional_blue"}
739
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
740
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.9ms)
741
+ Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.8ms)
742
+ Processing by PostsController#index as HTML
743
+ Parameters: {"theme"=>"professional_blue"}
744
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
745
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
746
+ Processing by PostsController#index as HTML
747
+ Parameters: {"theme"=>"basic_blue"}
748
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
749
+ Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.1ms)
750
+ Processing by PostsController#index as HTML
751
+ Parameters: {"theme"=>"basic_blue"}
752
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
753
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
754
+ Processing by PostsController#new as HTML
755
+ Parameters: {"theme"=>"basic_blue"}
756
+ Rendered posts/_form.html.erb (11.5ms)
757
+ Completed 200 OK in 23ms (Views: 22.1ms | ActiveRecord: 0.2ms)
758
+ Processing by PostsController#new as HTML
759
+ Parameters: {"theme"=>"basic_blue"}
760
+ Rendered posts/_form.html.erb (1.8ms)
761
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
762
+ Processing by PostsController#index as HTML
763
+ Parameters: {"theme"=>"professional_blue"}
764
+ Post Load (1.7ms) SELECT "posts".* FROM "posts"
765
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.3ms)
766
+ Completed 200 OK in 50ms (Views: 46.4ms | ActiveRecord: 1.7ms)
767
+ Processing by PostsController#index as HTML
768
+ Parameters: {"theme"=>"professional_blue"}
769
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
770
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
771
+ Processing by PostsController#index as HTML
772
+ Parameters: {"theme"=>"basic_blue"}
773
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
774
+ Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.2ms)
775
+ Processing by PostsController#index as HTML
776
+ Parameters: {"theme"=>"basic_blue"}
777
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
778
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
779
+ Processing by PostsController#new as HTML
780
+ Parameters: {"theme"=>"basic_blue"}
781
+ Rendered posts/_form.html.erb (17.8ms)
782
+ Completed 200 OK in 34ms (Views: 32.8ms | ActiveRecord: 0.2ms)
783
+ Processing by PostsController#new as HTML
784
+ Parameters: {"theme"=>"basic_blue"}
785
+ Rendered posts/_form.html.erb (2.0ms)
786
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
787
+ Connecting to database specified by database.yml
788
+ Processing by PostsController#index as HTML
789
+ Parameters: {"theme"=>"professional_blue"}
790
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
791
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.3ms)
792
+ Completed 200 OK in 15.6ms (Views: 13.6ms | ActiveRecord: 0.1ms)
793
+ Processing by PostsController#index as HTML
794
+ Parameters: {"theme"=>"professional_blue"}
795
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
796
+ Completed 200 OK in 4.7ms (Views: 3.8ms | ActiveRecord: 0.1ms)
797
+ Processing by PostsController#index as HTML
798
+ Parameters: {"theme"=>"basic_blue"}
799
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
800
+ Completed 200 OK in 4.5ms (Views: 3.6ms | ActiveRecord: 0.1ms)
801
+ Processing by PostsController#index as HTML
802
+ Parameters: {"theme"=>"basic_blue"}
803
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
804
+ Completed 200 OK in 4.6ms (Views: 3.7ms | ActiveRecord: 0.1ms)
805
+ Processing by PostsController#new as HTML
806
+ Parameters: {"theme"=>"basic_blue"}
807
+ Rendered posts/_form.html.erb (9.0ms)
808
+ Completed 200 OK in 20.8ms (Views: 16.1ms | ActiveRecord: 0.0ms)
809
+ Processing by PostsController#new as HTML
810
+ Parameters: {"theme"=>"basic_blue"}
811
+ Rendered posts/_form.html.erb (1.7ms)
812
+ Completed 200 OK in 3.2ms (Views: 3.0ms | ActiveRecord: 0.0ms)
813
+ Processing by PostsController#index as HTML
814
+ Parameters: {"theme"=>"professional_blue"}
815
+ Completed 500 Internal Server Error in 0ms
816
+ Processing by PostsController#index as HTML
817
+ Parameters: {"theme"=>"professional_blue"}
818
+ Completed 500 Internal Server Error in 0ms
819
+ Processing by PostsController#index as HTML
820
+ Parameters: {"theme"=>"basic_blue"}
821
+ Completed 500 Internal Server Error in 0ms
822
+ Processing by PostsController#index as HTML
823
+ Parameters: {"theme"=>"basic_blue"}
824
+ Completed 500 Internal Server Error in 0ms
825
+ Processing by PostsController#new as HTML
826
+ Parameters: {"theme"=>"basic_blue"}
827
+ Rendered posts/_form.html.erb (17.8ms)
828
+ Completed 200 OK in 49ms (Views: 43.6ms | ActiveRecord: 3.3ms)
829
+ Processing by PostsController#new as HTML
830
+ Parameters: {"theme"=>"basic_blue"}
831
+ Rendered posts/_form.html.erb (1.6ms)
832
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
833
+ Processing by PostsController#index as HTML
834
+ Parameters: {"theme"=>"professional_blue"}
835
+ Completed 500 Internal Server Error in 0ms
836
+ Processing by PostsController#index as HTML
837
+ Parameters: {"theme"=>"professional_blue"}
838
+ Completed 500 Internal Server Error in 0ms
839
+ Processing by PostsController#index as HTML
840
+ Parameters: {"theme"=>"basic_blue"}
841
+ Completed 500 Internal Server Error in 0ms
842
+ Processing by PostsController#index as HTML
843
+ Parameters: {"theme"=>"basic_blue"}
844
+ Completed 500 Internal Server Error in 0ms
845
+ Processing by PostsController#new as HTML
846
+ Parameters: {"theme"=>"basic_blue"}
847
+ Rendered posts/_form.html.erb (16.7ms)
848
+ Completed 200 OK in 50ms (Views: 46.4ms | ActiveRecord: 1.4ms)
849
+ Processing by PostsController#new as HTML
850
+ Parameters: {"theme"=>"basic_blue"}
851
+ Rendered posts/_form.html.erb (1.6ms)
852
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
853
+ Processing by PostsController#index as HTML
854
+ Parameters: {"theme"=>"professional_blue"}
855
+ Post Load (1.9ms) SELECT "posts".* FROM "posts"
856
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.6ms)
857
+ Completed 200 OK in 49ms (Views: 44.8ms | ActiveRecord: 1.9ms)
858
+ Processing by PostsController#index as HTML
859
+ Parameters: {"theme"=>"professional_blue"}
860
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
861
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
862
+ Processing by PostsController#index as HTML
863
+ Parameters: {"theme"=>"basic_blue"}
864
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
865
+ Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.1ms)
866
+ Processing by PostsController#index as HTML
867
+ Parameters: {"theme"=>"basic_blue"}
868
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
869
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
870
+ Processing by PostsController#new as HTML
871
+ Parameters: {"theme"=>"basic_blue"}
872
+ Rendered posts/_form.html.erb (17.3ms)
873
+ Completed 200 OK in 34ms (Views: 32.9ms | ActiveRecord: 0.3ms)
874
+ Processing by PostsController#new as HTML
875
+ Parameters: {"theme"=>"basic_blue"}
876
+ Rendered posts/_form.html.erb (1.7ms)
877
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
878
+ Connecting to database specified by database.yml
879
+ Processing by PostsController#index as HTML
880
+ Parameters: {"theme"=>"professional_blue"}
881
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
882
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.0ms)
883
+ Completed 200 OK in 12.9ms (Views: 11.0ms | ActiveRecord: 0.2ms)
884
+ Processing by PostsController#index as HTML
885
+ Parameters: {"theme"=>"professional_blue"}
886
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
887
+ Completed 200 OK in 4.6ms (Views: 3.7ms | ActiveRecord: 0.1ms)
888
+ Processing by PostsController#index as HTML
889
+ Parameters: {"theme"=>"basic_blue"}
890
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
891
+ Completed 200 OK in 4.5ms (Views: 3.6ms | ActiveRecord: 0.1ms)
892
+ Processing by PostsController#index as HTML
893
+ Parameters: {"theme"=>"basic_blue"}
894
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
895
+ Completed 200 OK in 10.2ms (Views: 9.3ms | ActiveRecord: 0.1ms)
896
+ Processing by PostsController#new as HTML
897
+ Parameters: {"theme"=>"basic_blue"}
898
+ Rendered posts/_form.html.erb (7.2ms)
899
+ Completed 200 OK in 19.3ms (Views: 13.0ms | ActiveRecord: 0.0ms)
900
+ Processing by PostsController#new as HTML
901
+ Parameters: {"theme"=>"basic_blue"}
902
+ Rendered posts/_form.html.erb (1.6ms)
903
+ Completed 200 OK in 2.9ms (Views: 2.7ms | ActiveRecord: 0.0ms)
904
+ Processing by PostsController#index as HTML
905
+ Parameters: {"theme"=>"professional_blue"}
906
+ Completed 500 Internal Server Error in 1ms
907
+ Processing by PostsController#index as HTML
908
+ Parameters: {"theme"=>"professional_blue"}
909
+ Completed 500 Internal Server Error in 0ms
910
+ Processing by PostsController#index as HTML
911
+ Parameters: {"theme"=>"basic_blue"}
912
+ Completed 500 Internal Server Error in 0ms
913
+ Processing by PostsController#index as HTML
914
+ Parameters: {"theme"=>"basic_blue"}
915
+ Completed 500 Internal Server Error in 0ms
916
+ Processing by PostsController#new as HTML
917
+ Parameters: {"theme"=>"basic_blue"}
918
+ Rendered posts/_form.html.erb (14.9ms)
919
+ Completed 200 OK in 43ms (Views: 39.8ms | ActiveRecord: 1.3ms)
920
+ Processing by PostsController#new as HTML
921
+ Parameters: {"theme"=>"basic_blue"}
922
+ Rendered posts/_form.html.erb (1.7ms)
923
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
924
+ Processing by PostsController#index as HTML
925
+ Parameters: {"theme"=>"professional_blue"}
926
+ Completed 500 Internal Server Error in 0ms
927
+ Processing by PostsController#index as HTML
928
+ Parameters: {"theme"=>"professional_blue"}
929
+ Completed 500 Internal Server Error in 0ms
930
+ Processing by PostsController#index as HTML
931
+ Parameters: {"theme"=>"basic_blue"}
932
+ Completed 500 Internal Server Error in 0ms
933
+ Processing by PostsController#index as HTML
934
+ Parameters: {"theme"=>"basic_blue"}
935
+ Completed 500 Internal Server Error in 0ms
936
+ Processing by PostsController#new as HTML
937
+ Parameters: {"theme"=>"basic_blue"}
938
+ Rendered posts/_form.html.erb (17.8ms)
939
+ Completed 200 OK in 47ms (Views: 42.9ms | ActiveRecord: 1.7ms)
940
+ Processing by PostsController#new as HTML
941
+ Parameters: {"theme"=>"basic_blue"}
942
+ Rendered posts/_form.html.erb (1.7ms)
943
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
944
+ Processing by PostsController#index as HTML
945
+ Parameters: {"theme"=>"professional_blue"}
946
+ Post Load (2.2ms) SELECT "posts".* FROM "posts"
947
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (5.9ms)
948
+ Completed 200 OK in 11501ms (Views: 24.5ms | ActiveRecord: 2.2ms)
949
+ Processing by PostsController#index as HTML
950
+ Parameters: {"theme"=>"professional_blue"}
951
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
952
+ Completed 200 OK in 995ms (Views: 5.2ms | ActiveRecord: 0.2ms)
953
+ Processing by PostsController#index as HTML
954
+ Parameters: {"theme"=>"basic_blue"}
955
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
956
+ Completed 200 OK in 775ms (Views: 15.2ms | ActiveRecord: 0.2ms)
957
+ Processing by PostsController#index as HTML
958
+ Parameters: {"theme"=>"basic_blue"}
959
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
960
+ Completed 200 OK in 618ms (Views: 5.0ms | ActiveRecord: 0.2ms)
961
+ Processing by PostsController#new as HTML
962
+ Parameters: {"theme"=>"basic_blue"}
963
+ Rendered posts/_form.html.erb (19.5ms)
964
+ Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.2ms)
965
+ Processing by PostsController#new as HTML
966
+ Parameters: {"theme"=>"basic_blue"}
967
+ Rendered posts/_form.html.erb (1.7ms)
968
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
969
+ Connecting to database specified by database.yml
970
+ Processing by PostsController#index as HTML
971
+ Parameters: {"theme"=>"professional_blue"}
972
+ Post Load (0.5ms) SELECT "posts".* FROM "posts" 
973
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
974
+ Completed 200 OK in 1451.0ms (Views: 39.0ms | ActiveRecord: 0.5ms)
975
+ Processing by PostsController#index as HTML
976
+ Parameters: {"theme"=>"professional_blue"}
977
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
978
+ Completed 200 OK in 613.1ms (Views: 4.3ms | ActiveRecord: 0.1ms)
979
+ Processing by PostsController#index as HTML
980
+ Parameters: {"theme"=>"basic_blue"}
981
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
982
+ Completed 200 OK in 653.5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
983
+ Processing by PostsController#index as HTML
984
+ Parameters: {"theme"=>"basic_blue"}
985
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
986
+ Completed 200 OK in 798.3ms (Views: 4.3ms | ActiveRecord: 0.1ms)
987
+ Processing by PostsController#new as HTML
988
+ Parameters: {"theme"=>"basic_blue"}
989
+ Rendered posts/_form.html.erb (8.2ms)
990
+ Completed 200 OK in 18.4ms (Views: 14.2ms | ActiveRecord: 0.0ms)
991
+ Processing by PostsController#new as HTML
992
+ Parameters: {"theme"=>"basic_blue"}
993
+ Rendered posts/_form.html.erb (2.1ms)
994
+ Completed 200 OK in 3.8ms (Views: 3.6ms | ActiveRecord: 0.0ms)
995
+ Processing by PostsController#index as HTML
996
+ Parameters: {"theme"=>"professional_blue"}
997
+ Post Load (1.9ms) SELECT "posts".* FROM "posts"
998
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.4ms)
999
+ Completed 200 OK in 49ms (Views: 45.2ms | ActiveRecord: 1.9ms)
1000
+ Processing by PostsController#index as HTML
1001
+ Parameters: {"theme"=>"professional_blue"}
1002
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1003
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1004
+ Processing by PostsController#index as HTML
1005
+ Parameters: {"theme"=>"basic_blue"}
1006
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1007
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.1ms)
1008
+ Processing by PostsController#index as HTML
1009
+ Parameters: {"theme"=>"basic_blue"}
1010
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1011
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.2ms)
1012
+ Processing by PostsController#new as HTML
1013
+ Parameters: {"theme"=>"basic_blue"}
1014
+ Rendered posts/_form.html.erb (16.1ms)
1015
+ Completed 200 OK in 32ms (Views: 31.0ms | ActiveRecord: 0.2ms)
1016
+ Processing by PostsController#new as HTML
1017
+ Parameters: {"theme"=>"basic_blue"}
1018
+ Rendered posts/_form.html.erb (1.6ms)
1019
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1020
+ Connecting to database specified by database.yml
1021
+ Processing by PostsController#index as HTML
1022
+ Parameters: {"theme"=>"professional_blue"}
1023
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1024
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.0ms)
1025
+ Completed 200 OK in 12.5ms (Views: 11.1ms | ActiveRecord: 0.1ms)
1026
+ Processing by PostsController#index as HTML
1027
+ Parameters: {"theme"=>"professional_blue"}
1028
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1029
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
1030
+ Processing by PostsController#index as HTML
1031
+ Parameters: {"theme"=>"basic_blue"}
1032
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1033
+ Completed 200 OK in 4.4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1034
+ Processing by PostsController#index as HTML
1035
+ Parameters: {"theme"=>"basic_blue"}
1036
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1037
+ Completed 200 OK in 4.1ms (Views: 3.3ms | ActiveRecord: 0.1ms)
1038
+ Processing by PostsController#new as HTML
1039
+ Parameters: {"theme"=>"basic_blue"}
1040
+ Rendered posts/_form.html.erb (8.5ms)
1041
+ Completed 200 OK in 19.0ms (Views: 14.7ms | ActiveRecord: 0.0ms)
1042
+ Processing by PostsController#new as HTML
1043
+ Parameters: {"theme"=>"basic_blue"}
1044
+ Rendered posts/_form.html.erb (1.5ms)
1045
+ Completed 200 OK in 2.7ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1046
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1047
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1048
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1049
+  (0.1ms) SELECT version FROM "schema_migrations"
1050
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1051
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1052
+ Processing by PostsController#index as HTML
1053
+ Parameters: {"theme"=>"professional_blue"}
1054
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
1055
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.8ms)
1056
+ Completed 200 OK in 49ms (Views: 45.8ms | ActiveRecord: 1.0ms)
1057
+ Processing by PostsController#index as HTML
1058
+ Parameters: {"theme"=>"professional_blue"}
1059
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1060
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms)
1061
+ Processing by PostsController#index as HTML
1062
+ Parameters: {"theme"=>"basic_blue"}
1063
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1064
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.1ms)
1065
+ Processing by PostsController#index as HTML
1066
+ Parameters: {"theme"=>"basic_blue"}
1067
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1068
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
1069
+ Processing by PostsController#new as HTML
1070
+ Parameters: {"theme"=>"basic_blue"}
1071
+ Rendered posts/_form.html.erb (21.1ms)
1072
+ Completed 200 OK in 38ms (Views: 36.6ms | ActiveRecord: 0.3ms)
1073
+ Processing by PostsController#new as HTML
1074
+ Parameters: {"theme"=>"basic_blue"}
1075
+ Rendered posts/_form.html.erb (1.7ms)
1076
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1077
+ Processing by PostsController#index as HTML
1078
+ Parameters: {"theme"=>"professional_blue"}
1079
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
1080
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.5ms)
1081
+ Completed 200 OK in 42ms (Views: 39.9ms | ActiveRecord: 0.9ms)
1082
+ Processing by PostsController#index as HTML
1083
+ Parameters: {"theme"=>"professional_blue"}
1084
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1085
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
1086
+ Processing by PostsController#index as HTML
1087
+ Parameters: {"theme"=>"basic_blue"}
1088
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1089
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.1ms)
1090
+ Processing by PostsController#index as HTML
1091
+ Parameters: {"theme"=>"basic_blue"}
1092
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1093
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1094
+ Processing by PostsController#new as HTML
1095
+ Parameters: {"theme"=>"basic_blue"}
1096
+ Rendered posts/_form.html.erb (13.3ms)
1097
+ Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.5ms)
1098
+ Processing by PostsController#new as HTML
1099
+ Parameters: {"theme"=>"basic_blue"}
1100
+ Rendered posts/_form.html.erb (1.8ms)
1101
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1102
+  (2.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1103
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1104
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1105
+  (0.1ms) SELECT version FROM "schema_migrations"
1106
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1107
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1108
+ Processing by PostsController#index as HTML
1109
+ Parameters: {"theme"=>"professional_blue"}
1110
+ Post Load (0.8ms) SELECT "posts".* FROM "posts"
1111
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.8ms)
1112
+ Completed 200 OK in 42ms (Views: 39.0ms | ActiveRecord: 0.8ms)
1113
+ Processing by PostsController#index as HTML
1114
+ Parameters: {"theme"=>"professional_blue"}
1115
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1116
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1117
+ Processing by PostsController#index as HTML
1118
+ Parameters: {"theme"=>"basic_blue"}
1119
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1120
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.1ms)
1121
+ Processing by PostsController#index as HTML
1122
+ Parameters: {"theme"=>"basic_blue"}
1123
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1124
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
1125
+ Processing by PostsController#new as HTML
1126
+ Parameters: {"theme"=>"basic_blue"}
1127
+ Rendered posts/_form.html.erb (11.6ms)
1128
+ Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.3ms)
1129
+ Processing by PostsController#new as HTML
1130
+ Parameters: {"theme"=>"basic_blue"}
1131
+ Rendered posts/_form.html.erb (1.6ms)
1132
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1133
+ Processing by PostsController#index as HTML
1134
+ Parameters: {"theme"=>"professional_blue"}
1135
+ Post Load (0.8ms) SELECT "posts".* FROM "posts"
1136
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.8ms)
1137
+ Completed 200 OK in 41ms (Views: 38.3ms | ActiveRecord: 0.8ms)
1138
+ Processing by PostsController#index as HTML
1139
+ Parameters: {"theme"=>"professional_blue"}
1140
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1141
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
1142
+ Processing by PostsController#index as HTML
1143
+ Parameters: {"theme"=>"basic_blue"}
1144
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1145
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.1ms)
1146
+ Processing by PostsController#index as HTML
1147
+ Parameters: {"theme"=>"basic_blue"}
1148
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1149
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1150
+ Processing by PostsController#new as HTML
1151
+ Parameters: {"theme"=>"basic_blue"}
1152
+ Rendered posts/_form.html.erb (11.8ms)
1153
+ Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.2ms)
1154
+ Processing by PostsController#new as HTML
1155
+ Parameters: {"theme"=>"basic_blue"}
1156
+ Rendered posts/_form.html.erb (1.7ms)
1157
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1158
+ Connecting to database specified by database.yml
1159
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1160
+  (0.8ms) select sqlite_version(*)
1161
+  (1.5ms) DROP TABLE "posts"
1162
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
1163
+  (0.1ms) SELECT version FROM "schema_migrations"
1164
+ Connecting to database specified by database.yml
1165
+ Processing by PostsController#index as HTML
1166
+ Parameters: {"theme"=>"professional_blue"}
1167
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1168
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.3ms)
1169
+ Completed 200 OK in 14.7ms (Views: 13.4ms | ActiveRecord: 0.1ms)
1170
+ Processing by PostsController#index as HTML
1171
+ Parameters: {"theme"=>"professional_blue"}
1172
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1173
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1174
+ Processing by PostsController#index as HTML
1175
+ Parameters: {"theme"=>"basic_blue"}
1176
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1177
+ Completed 200 OK in 4.5ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1178
+ Processing by PostsController#index as HTML
1179
+ Parameters: {"theme"=>"basic_blue"}
1180
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1181
+ Completed 200 OK in 4.1ms (Views: 3.3ms | ActiveRecord: 0.1ms)
1182
+ Processing by PostsController#new as HTML
1183
+ Parameters: {"theme"=>"basic_blue"}
1184
+ Rendered posts/_form.html.erb (7.6ms)
1185
+ Completed 200 OK in 17.2ms (Views: 13.0ms | ActiveRecord: 0.0ms)
1186
+ Processing by PostsController#new as HTML
1187
+ Parameters: {"theme"=>"basic_blue"}
1188
+ Rendered posts/_form.html.erb (1.5ms)
1189
+ Completed 200 OK in 2.8ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1190
+ Connecting to database specified by database.yml
1191
+ Processing by PostsController#index as HTML
1192
+ Parameters: {"theme"=>"professional_blue"}
1193
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1194
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.4ms)
1195
+ Completed 200 OK in 9.6ms (Views: 8.2ms | ActiveRecord: 0.1ms)
1196
+ Processing by PostsController#index as HTML
1197
+ Parameters: {"theme"=>"professional_blue"}
1198
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1199
+ Completed 200 OK in 4.2ms (Views: 3.3ms | ActiveRecord: 0.1ms)
1200
+ Processing by PostsController#index as HTML
1201
+ Parameters: {"theme"=>"basic_blue"}
1202
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1203
+ Completed 200 OK in 3.9ms (Views: 3.1ms | ActiveRecord: 0.1ms)
1204
+ Processing by PostsController#index as HTML
1205
+ Parameters: {"theme"=>"basic_blue"}
1206
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1207
+ Completed 200 OK in 3.9ms (Views: 3.2ms | ActiveRecord: 0.1ms)
1208
+ Processing by PostsController#new as HTML
1209
+ Parameters: {"theme"=>"basic_blue"}
1210
+ Rendered posts/_form.html.erb (6.0ms)
1211
+ Completed 200 OK in 14.9ms (Views: 10.7ms | ActiveRecord: 0.0ms)
1212
+ Processing by PostsController#new as HTML
1213
+ Parameters: {"theme"=>"basic_blue"}
1214
+ Rendered posts/_form.html.erb (1.6ms)
1215
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1216
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1217
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1218
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1219
+  (0.1ms) SELECT version FROM "schema_migrations"
1220
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1221
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1222
+ Processing by PostsController#index as HTML
1223
+ Parameters: {"theme"=>"professional_blue"}
1224
+ Post Load (0.8ms) SELECT "posts".* FROM "posts"
1225
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.9ms)
1226
+ Completed 200 OK in 43ms (Views: 39.9ms | ActiveRecord: 0.8ms)
1227
+ Processing by PostsController#index as HTML
1228
+ Parameters: {"theme"=>"professional_blue"}
1229
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1230
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
1231
+ Processing by PostsController#index as HTML
1232
+ Parameters: {"theme"=>"basic_blue"}
1233
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1234
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.1ms)
1235
+ Processing by PostsController#index as HTML
1236
+ Parameters: {"theme"=>"basic_blue"}
1237
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1238
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
1239
+ Processing by PostsController#new as HTML
1240
+ Parameters: {"theme"=>"basic_blue"}
1241
+ Rendered posts/_form.html.erb (12.2ms)
1242
+ Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.3ms)
1243
+ Processing by PostsController#new as HTML
1244
+ Parameters: {"theme"=>"basic_blue"}
1245
+ Rendered posts/_form.html.erb (1.7ms)
1246
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1247
+ Processing by PostsController#index as HTML
1248
+ Parameters: {"theme"=>"professional_blue"}
1249
+ Post Load (1.2ms) SELECT "posts".* FROM "posts"
1250
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.3ms)
1251
+ Completed 200 OK in 60ms (Views: 57.0ms | ActiveRecord: 1.2ms)
1252
+ Processing by PostsController#index as HTML
1253
+ Parameters: {"theme"=>"professional_blue"}
1254
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1255
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
1256
+ Processing by PostsController#index as HTML
1257
+ Parameters: {"theme"=>"basic_blue"}
1258
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1259
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.1ms)
1260
+ Processing by PostsController#index as HTML
1261
+ Parameters: {"theme"=>"basic_blue"}
1262
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1263
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1264
+ Processing by PostsController#new as HTML
1265
+ Parameters: {"theme"=>"basic_blue"}
1266
+ Rendered posts/_form.html.erb (11.9ms)
1267
+ Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.2ms)
1268
+ Processing by PostsController#new as HTML
1269
+ Parameters: {"theme"=>"basic_blue"}
1270
+ Rendered posts/_form.html.erb (1.8ms)
1271
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1272
+  (2.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1273
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1274
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1275
+  (0.1ms) SELECT version FROM "schema_migrations"
1276
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1277
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1278
+ Processing by PostsController#index as HTML
1279
+ Parameters: {"theme"=>"professional_blue"}
1280
+ Post Load (0.8ms) SELECT "posts".* FROM "posts"
1281
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.8ms)
1282
+ Completed 200 OK in 43ms (Views: 39.7ms | ActiveRecord: 0.8ms)
1283
+ Processing by PostsController#index as HTML
1284
+ Parameters: {"theme"=>"professional_blue"}
1285
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1286
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
1287
+ Processing by PostsController#index as HTML
1288
+ Parameters: {"theme"=>"basic_blue"}
1289
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1290
+ Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.2ms)
1291
+ Processing by PostsController#index as HTML
1292
+ Parameters: {"theme"=>"basic_blue"}
1293
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1294
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
1295
+ Processing by PostsController#new as HTML
1296
+ Parameters: {"theme"=>"basic_blue"}
1297
+ Rendered posts/_form.html.erb (11.6ms)
1298
+ Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.3ms)
1299
+ Processing by PostsController#new as HTML
1300
+ Parameters: {"theme"=>"basic_blue"}
1301
+ Rendered posts/_form.html.erb (1.6ms)
1302
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1303
+ Processing by PostsController#index as HTML
1304
+ Parameters: {"theme"=>"professional_blue"}
1305
+ Post Load (1.3ms) SELECT "posts".* FROM "posts"
1306
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.6ms)
1307
+ Completed 200 OK in 48ms (Views: 44.7ms | ActiveRecord: 1.3ms)
1308
+ Processing by PostsController#index as HTML
1309
+ Parameters: {"theme"=>"professional_blue"}
1310
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1311
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1312
+ Processing by PostsController#index as HTML
1313
+ Parameters: {"theme"=>"basic_blue"}
1314
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1315
+ Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.1ms)
1316
+ Processing by PostsController#index as HTML
1317
+ Parameters: {"theme"=>"basic_blue"}
1318
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1319
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1320
+ Processing by PostsController#new as HTML
1321
+ Parameters: {"theme"=>"basic_blue"}
1322
+ Rendered posts/_form.html.erb (11.7ms)
1323
+ Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.2ms)
1324
+ Processing by PostsController#new as HTML
1325
+ Parameters: {"theme"=>"basic_blue"}
1326
+ Rendered posts/_form.html.erb (1.7ms)
1327
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1328
+ Connecting to database specified by database.yml
1329
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1330
+  (0.2ms) select sqlite_version(*)
1331
+  (0.9ms) DROP TABLE "posts"
1332
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
1333
+  (0.1ms) SELECT version FROM "schema_migrations"
1334
+ Connecting to database specified by database.yml
1335
+ Processing by PostsController#index as HTML
1336
+ Parameters: {"theme"=>"professional_blue"}
1337
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
1338
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.9ms)
1339
+ Completed 200 OK in 12.7ms (Views: 11.0ms | ActiveRecord: 0.2ms)
1340
+ Processing by PostsController#index as HTML
1341
+ Parameters: {"theme"=>"professional_blue"}
1342
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1343
+ Completed 200 OK in 4.3ms (Views: 3.4ms | ActiveRecord: 0.1ms)
1344
+ Processing by PostsController#index as HTML
1345
+ Parameters: {"theme"=>"basic_blue"}
1346
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1347
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1348
+ Processing by PostsController#index as HTML
1349
+ Parameters: {"theme"=>"basic_blue"}
1350
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1351
+ Completed 200 OK in 4.0ms (Views: 3.3ms | ActiveRecord: 0.1ms)
1352
+ Processing by PostsController#new as HTML
1353
+ Parameters: {"theme"=>"basic_blue"}
1354
+ Rendered posts/_form.html.erb (7.4ms)
1355
+ Completed 200 OK in 17.3ms (Views: 13.1ms | ActiveRecord: 0.0ms)
1356
+ Processing by PostsController#new as HTML
1357
+ Parameters: {"theme"=>"basic_blue"}
1358
+ Rendered posts/_form.html.erb (1.5ms)
1359
+ Completed 200 OK in 2.8ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1360
+ Connecting to database specified by database.yml
1361
+ Processing by PostsController#index as HTML
1362
+ Parameters: {"theme"=>"professional_blue"}
1363
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1364
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.6ms)
1365
+ Completed 200 OK in 10.7ms (Views: 9.3ms | ActiveRecord: 0.1ms)
1366
+ Processing by PostsController#index as HTML
1367
+ Parameters: {"theme"=>"professional_blue"}
1368
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1369
+ Completed 200 OK in 4.4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1370
+ Processing by PostsController#index as HTML
1371
+ Parameters: {"theme"=>"basic_blue"}
1372
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1373
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
1374
+ Processing by PostsController#index as HTML
1375
+ Parameters: {"theme"=>"basic_blue"}
1376
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1377
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1378
+ Processing by PostsController#new as HTML
1379
+ Parameters: {"theme"=>"basic_blue"}
1380
+ Rendered posts/_form.html.erb (5.4ms)
1381
+ Completed 200 OK in 14.4ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1382
+ Processing by PostsController#new as HTML
1383
+ Parameters: {"theme"=>"basic_blue"}
1384
+ Rendered posts/_form.html.erb (1.5ms)
1385
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1386
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1387
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1388
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1389
+  (0.1ms) SELECT version FROM "schema_migrations"
1390
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1391
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1392
+ Processing by PostsController#index as HTML
1393
+ Parameters: {"theme"=>"professional_blue"}
1394
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
1395
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.1ms)
1396
+ Completed 200 OK in 50ms (Views: 46.6ms | ActiveRecord: 0.9ms)
1397
+ Processing by PostsController#index as HTML
1398
+ Parameters: {"theme"=>"professional_blue"}
1399
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1400
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1401
+ Processing by PostsController#index as HTML
1402
+ Parameters: {"theme"=>"basic_blue"}
1403
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1404
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.1ms)
1405
+ Processing by PostsController#index as HTML
1406
+ Parameters: {"theme"=>"basic_blue"}
1407
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1408
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1409
+ Processing by PostsController#new as HTML
1410
+ Parameters: {"theme"=>"basic_blue"}
1411
+ Rendered posts/_form.html.erb (33.9ms)
1412
+ Completed 200 OK in 52ms (Views: 50.5ms | ActiveRecord: 0.2ms)
1413
+ Processing by PostsController#new as HTML
1414
+ Parameters: {"theme"=>"basic_blue"}
1415
+ Rendered posts/_form.html.erb (1.7ms)
1416
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1417
+ Processing by PostsController#index as HTML
1418
+ Parameters: {"theme"=>"professional_blue"}
1419
+ Post Load (1.1ms) SELECT "posts".* FROM "posts"
1420
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.8ms)
1421
+ Completed 200 OK in 47ms (Views: 44.2ms | ActiveRecord: 1.1ms)
1422
+ Processing by PostsController#index as HTML
1423
+ Parameters: {"theme"=>"professional_blue"}
1424
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1425
+ Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms)
1426
+ Processing by PostsController#index as HTML
1427
+ Parameters: {"theme"=>"basic_blue"}
1428
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1429
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.1ms)
1430
+ Processing by PostsController#index as HTML
1431
+ Parameters: {"theme"=>"basic_blue"}
1432
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1433
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1434
+ Processing by PostsController#new as HTML
1435
+ Parameters: {"theme"=>"basic_blue"}
1436
+ Rendered posts/_form.html.erb (12.1ms)
1437
+ Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.3ms)
1438
+ Processing by PostsController#new as HTML
1439
+ Parameters: {"theme"=>"basic_blue"}
1440
+ Rendered posts/_form.html.erb (1.7ms)
1441
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1442
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1443
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1444
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1445
+  (0.1ms) SELECT version FROM "schema_migrations"
1446
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1447
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1448
+ Processing by PostsController#index as HTML
1449
+ Parameters: {"theme"=>"professional_blue"}
1450
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
1451
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.1ms)
1452
+ Completed 200 OK in 43ms (Views: 40.7ms | ActiveRecord: 0.9ms)
1453
+ Processing by PostsController#index as HTML
1454
+ Parameters: {"theme"=>"professional_blue"}
1455
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1456
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
1457
+ Processing by PostsController#index as HTML
1458
+ Parameters: {"theme"=>"basic_blue"}
1459
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1460
+ Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.1ms)
1461
+ Processing by PostsController#index as HTML
1462
+ Parameters: {"theme"=>"basic_blue"}
1463
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1464
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1465
+ Processing by PostsController#new as HTML
1466
+ Parameters: {"theme"=>"basic_blue"}
1467
+ Rendered posts/_form.html.erb (12.2ms)
1468
+ Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.2ms)
1469
+ Processing by PostsController#new as HTML
1470
+ Parameters: {"theme"=>"basic_blue"}
1471
+ Rendered posts/_form.html.erb (1.6ms)
1472
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1473
+ Processing by PostsController#index as HTML
1474
+ Parameters: {"theme"=>"professional_blue"}
1475
+ Post Load (0.8ms) SELECT "posts".* FROM "posts"
1476
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.9ms)
1477
+ Completed 200 OK in 45ms (Views: 42.7ms | ActiveRecord: 0.8ms)
1478
+ Processing by PostsController#index as HTML
1479
+ Parameters: {"theme"=>"professional_blue"}
1480
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1481
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1482
+ Processing by PostsController#index as HTML
1483
+ Parameters: {"theme"=>"basic_blue"}
1484
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1485
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.1ms)
1486
+ Processing by PostsController#index as HTML
1487
+ Parameters: {"theme"=>"basic_blue"}
1488
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1489
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)
1490
+ Processing by PostsController#new as HTML
1491
+ Parameters: {"theme"=>"basic_blue"}
1492
+ Rendered posts/_form.html.erb (11.9ms)
1493
+ Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.3ms)
1494
+ Processing by PostsController#new as HTML
1495
+ Parameters: {"theme"=>"basic_blue"}
1496
+ Rendered posts/_form.html.erb (1.7ms)
1497
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1498
+ Connecting to database specified by database.yml
1499
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1500
+  (0.2ms) select sqlite_version(*)
1501
+  (0.8ms) DROP TABLE "posts"
1502
+  (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
1503
+  (0.1ms) SELECT version FROM "schema_migrations"
1504
+ Connecting to database specified by database.yml
1505
+ Processing by PostsController#index as HTML
1506
+ Parameters: {"theme"=>"professional_blue"}
1507
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
1508
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
1509
+ Completed 200 OK in 13.5ms (Views: 11.7ms | ActiveRecord: 0.2ms)
1510
+ Processing by PostsController#index as HTML
1511
+ Parameters: {"theme"=>"professional_blue"}
1512
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1513
+ Completed 200 OK in 4.4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1514
+ Processing by PostsController#index as HTML
1515
+ Parameters: {"theme"=>"basic_blue"}
1516
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1517
+ Completed 200 OK in 4.4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1518
+ Processing by PostsController#index as HTML
1519
+ Parameters: {"theme"=>"basic_blue"}
1520
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1521
+ Completed 200 OK in 4.3ms (Views: 3.4ms | ActiveRecord: 0.1ms)
1522
+ Processing by PostsController#new as HTML
1523
+ Parameters: {"theme"=>"basic_blue"}
1524
+ Rendered posts/_form.html.erb (7.6ms)
1525
+ Completed 200 OK in 17.1ms (Views: 13.0ms | ActiveRecord: 0.0ms)
1526
+ Processing by PostsController#new as HTML
1527
+ Parameters: {"theme"=>"basic_blue"}
1528
+ Rendered posts/_form.html.erb (1.5ms)
1529
+ Completed 200 OK in 2.9ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1530
+ Connecting to database specified by database.yml
1531
+ Processing by PostsController#index as HTML
1532
+ Parameters: {"theme"=>"professional_blue"}
1533
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1534
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.6ms)
1535
+ Completed 200 OK in 10.5ms (Views: 9.1ms | ActiveRecord: 0.1ms)
1536
+ Processing by PostsController#index as HTML
1537
+ Parameters: {"theme"=>"professional_blue"}
1538
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1539
+ Completed 200 OK in 4.4ms (Views: 3.5ms | ActiveRecord: 0.2ms)
1540
+ Processing by PostsController#index as HTML
1541
+ Parameters: {"theme"=>"basic_blue"}
1542
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1543
+ Completed 200 OK in 4.6ms (Views: 3.6ms | ActiveRecord: 0.1ms)
1544
+ Processing by PostsController#index as HTML
1545
+ Parameters: {"theme"=>"basic_blue"}
1546
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1547
+ Completed 200 OK in 4.3ms (Views: 3.4ms | ActiveRecord: 0.1ms)
1548
+ Processing by PostsController#new as HTML
1549
+ Parameters: {"theme"=>"basic_blue"}
1550
+ Rendered posts/_form.html.erb (5.7ms)
1551
+ Completed 200 OK in 14.5ms (Views: 10.4ms | ActiveRecord: 0.0ms)
1552
+ Processing by PostsController#new as HTML
1553
+ Parameters: {"theme"=>"basic_blue"}
1554
+ Rendered posts/_form.html.erb (1.6ms)
1555
+ Completed 200 OK in 2.8ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1556
+ Processing by PostsController#index as HTML
1557
+ Parameters: {"theme"=>"professional_blue"}
1558
+ Post Load (1.1ms) SELECT "posts".* FROM "posts"
1559
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.0ms)
1560
+ Completed 200 OK in 49ms (Views: 45.2ms | ActiveRecord: 1.1ms)
1561
+ Processing by PostsController#index as HTML
1562
+ Parameters: {"theme"=>"professional_blue"}
1563
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1564
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1565
+ Processing by PostsController#index as HTML
1566
+ Parameters: {"theme"=>"basic_blue"}
1567
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1568
+ Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.2ms)
1569
+ Processing by PostsController#index as HTML
1570
+ Parameters: {"theme"=>"basic_blue"}
1571
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1572
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1573
+ Processing by PostsController#new as HTML
1574
+ Parameters: {"theme"=>"basic_blue"}
1575
+ Rendered posts/_form.html.erb (15.2ms)
1576
+ Completed 200 OK in 32ms (Views: 31.2ms | ActiveRecord: 0.2ms)
1577
+ Processing by PostsController#new as HTML
1578
+ Parameters: {"theme"=>"basic_blue"}
1579
+ Rendered posts/_form.html.erb (1.7ms)
1580
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1581
+ Processing by PostsController#index as HTML
1582
+ Parameters: {"theme"=>"professional_blue"}
1583
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
1584
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
1585
+ Completed 200 OK in 41ms (Views: 38.8ms | ActiveRecord: 0.9ms)
1586
+ Processing by PostsController#index as HTML
1587
+ Parameters: {"theme"=>"professional_blue"}
1588
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1589
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
1590
+ Processing by PostsController#index as HTML
1591
+ Parameters: {"theme"=>"basic_blue"}
1592
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1593
+ Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.1ms)
1594
+ Processing by PostsController#index as HTML
1595
+ Parameters: {"theme"=>"basic_blue"}
1596
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1597
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
1598
+ Processing by PostsController#new as HTML
1599
+ Parameters: {"theme"=>"basic_blue"}
1600
+ Rendered posts/_form.html.erb (12.2ms)
1601
+ Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.3ms)
1602
+ Processing by PostsController#new as HTML
1603
+ Parameters: {"theme"=>"basic_blue"}
1604
+ Rendered posts/_form.html.erb (1.8ms)
1605
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1606
+ Processing by PostsController#index as HTML
1607
+ Parameters: {"theme"=>"professional_blue"}
1608
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
1609
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.6ms)
1610
+ Completed 200 OK in 51ms (Views: 48.0ms | ActiveRecord: 0.9ms)
1611
+ Processing by PostsController#index as HTML
1612
+ Parameters: {"theme"=>"professional_blue"}
1613
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1614
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1615
+ Processing by PostsController#index as HTML
1616
+ Parameters: {"theme"=>"basic_blue"}
1617
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1618
+ Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.2ms)
1619
+ Processing by PostsController#index as HTML
1620
+ Parameters: {"theme"=>"basic_blue"}
1621
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1622
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1623
+ Processing by PostsController#new as HTML
1624
+ Parameters: {"theme"=>"basic_blue"}
1625
+ Rendered posts/_form.html.erb (15.6ms)
1626
+ Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.2ms)
1627
+ Processing by PostsController#new as HTML
1628
+ Parameters: {"theme"=>"basic_blue"}
1629
+ Rendered posts/_form.html.erb (2.5ms)
1630
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1631
+ Processing by PostsController#index as HTML
1632
+ Parameters: {"theme"=>"professional_blue"}
1633
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
1634
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.3ms)
1635
+ Completed 200 OK in 54ms (Views: 51.0ms | ActiveRecord: 0.9ms)
1636
+ Processing by PostsController#index as HTML
1637
+ Parameters: {"theme"=>"professional_blue"}
1638
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1639
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
1640
+ Processing by PostsController#index as HTML
1641
+ Parameters: {"theme"=>"basic_blue"}
1642
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1643
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.1ms)
1644
+ Processing by PostsController#index as HTML
1645
+ Parameters: {"theme"=>"basic_blue"}
1646
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1647
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
1648
+ Processing by PostsController#new as HTML
1649
+ Parameters: {"theme"=>"basic_blue"}
1650
+ Rendered posts/_form.html.erb (15.2ms)
1651
+ Completed 200 OK in 39ms (Views: 37.6ms | ActiveRecord: 0.3ms)
1652
+ Processing by PostsController#new as HTML
1653
+ Parameters: {"theme"=>"basic_blue"}
1654
+ Rendered posts/_form.html.erb (1.8ms)
1655
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1656
+ Processing by PostsController#index as HTML
1657
+ Parameters: {"theme"=>"professional_blue"}
1658
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
1659
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.6ms)
1660
+ Completed 200 OK in 50ms (Views: 46.8ms | ActiveRecord: 0.9ms)
1661
+ Processing by PostsController#index as HTML
1662
+ Parameters: {"theme"=>"professional_blue"}
1663
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1664
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.2ms)
1665
+ Processing by PostsController#index as HTML
1666
+ Parameters: {"theme"=>"basic_blue"}
1667
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1668
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.1ms)
1669
+ Processing by PostsController#index as HTML
1670
+ Parameters: {"theme"=>"basic_blue"}
1671
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1672
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1673
+ Processing by PostsController#new as HTML
1674
+ Parameters: {"theme"=>"basic_blue"}
1675
+ Rendered posts/_form.html.erb (14.8ms)
1676
+ Completed 200 OK in 33ms (Views: 32.1ms | ActiveRecord: 0.3ms)
1677
+ Processing by PostsController#new as HTML
1678
+ Parameters: {"theme"=>"basic_blue"}
1679
+ Rendered posts/_form.html.erb (1.7ms)
1680
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1681
+ Connecting to database specified by database.yml
1682
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1683
+  (0.2ms) select sqlite_version(*)
1684
+  (1.6ms) DROP TABLE "posts"
1685
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
1686
+  (0.1ms) SELECT version FROM "schema_migrations"
1687
+ Connecting to database specified by database.yml
1688
+ Processing by PostsController#index as HTML
1689
+ Parameters: {"theme"=>"professional_blue"}
1690
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
1691
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.0ms)
1692
+ Completed 200 OK in 13.4ms (Views: 11.7ms | ActiveRecord: 0.2ms)
1693
+ Processing by PostsController#index as HTML
1694
+ Parameters: {"theme"=>"professional_blue"}
1695
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1696
+ Completed 200 OK in 4.4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1697
+ Processing by PostsController#index as HTML
1698
+ Parameters: {"theme"=>"basic_blue"}
1699
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1700
+ Completed 200 OK in 5.0ms (Views: 4.2ms | ActiveRecord: 0.1ms)
1701
+ Processing by PostsController#index as HTML
1702
+ Parameters: {"theme"=>"basic_blue"}
1703
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1704
+ Completed 200 OK in 4.1ms (Views: 3.3ms | ActiveRecord: 0.1ms)
1705
+ Processing by PostsController#new as HTML
1706
+ Parameters: {"theme"=>"basic_blue"}
1707
+ Rendered posts/_form.html.erb (8.6ms)
1708
+ Completed 200 OK in 20.3ms (Views: 16.3ms | ActiveRecord: 0.0ms)
1709
+ Processing by PostsController#new as HTML
1710
+ Parameters: {"theme"=>"basic_blue"}
1711
+ Rendered posts/_form.html.erb (1.5ms)
1712
+ Completed 200 OK in 3.0ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1713
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1714
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1715
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1716
+  (0.1ms) SELECT version FROM "schema_migrations"
1717
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1718
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1719
+ Processing by PostsController#index as HTML
1720
+ Parameters: {"theme"=>"professional_blue"}
1721
+ Post Load (1.1ms) SELECT "posts".* FROM "posts"
1722
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.0ms)
1723
+ Completed 200 OK in 47ms (Views: 44.7ms | ActiveRecord: 1.1ms)
1724
+ Processing by PostsController#index as HTML
1725
+ Parameters: {"theme"=>"professional_blue"}
1726
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1727
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
1728
+ Processing by PostsController#index as HTML
1729
+ Parameters: {"theme"=>"basic_blue"}
1730
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1731
+ Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms)
1732
+ Processing by PostsController#index as HTML
1733
+ Parameters: {"theme"=>"basic_blue"}
1734
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1735
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms)
1736
+ Processing by PostsController#new as HTML
1737
+ Parameters: {"theme"=>"basic_blue"}
1738
+ Rendered posts/_form.html.erb (15.0ms)
1739
+ Completed 200 OK in 29ms (Views: 28.3ms | ActiveRecord: 0.3ms)
1740
+ Processing by PostsController#new as HTML
1741
+ Parameters: {"theme"=>"basic_blue"}
1742
+ Rendered posts/_form.html.erb (1.7ms)
1743
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1744
+ Connecting to database specified by database.yml
1745
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1746
+  (0.2ms) select sqlite_version(*)
1747
+  (1.3ms) DROP TABLE "posts"
1748
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
1749
+  (0.1ms) SELECT version FROM "schema_migrations"
1750
+ Connecting to database specified by database.yml
1751
+ Processing by PostsController#index as HTML
1752
+ Parameters: {"theme"=>"professional_blue"}
1753
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1754
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.6ms)
1755
+ Completed 200 OK in 10.4ms (Views: 9.0ms | ActiveRecord: 0.1ms)
1756
+ Processing by PostsController#index as HTML
1757
+ Parameters: {"theme"=>"professional_blue"}
1758
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1759
+ Completed 200 OK in 4.6ms (Views: 3.6ms | ActiveRecord: 0.1ms)
1760
+ Processing by PostsController#index as HTML
1761
+ Parameters: {"theme"=>"basic_blue"}
1762
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1763
+ Completed 200 OK in 4.4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1764
+ Processing by PostsController#index as HTML
1765
+ Parameters: {"theme"=>"basic_blue"}
1766
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1767
+ Completed 200 OK in 4.0ms (Views: 3.2ms | ActiveRecord: 0.1ms)
1768
+ Processing by PostsController#new as HTML
1769
+ Parameters: {"theme"=>"basic_blue"}
1770
+ Rendered posts/_form.html.erb (5.7ms)
1771
+ Completed 200 OK in 14.6ms (Views: 10.5ms | ActiveRecord: 0.0ms)
1772
+ Processing by PostsController#new as HTML
1773
+ Parameters: {"theme"=>"basic_blue"}
1774
+ Rendered posts/_form.html.erb (1.6ms)
1775
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1776
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1777
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1778
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1779
+  (0.1ms) SELECT version FROM "schema_migrations"
1780
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1781
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1782
+ Processing by PostsController#index as HTML
1783
+ Parameters: {"theme"=>"professional_blue"}
1784
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
1785
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.5ms)
1786
+ Completed 200 OK in 48ms (Views: 45.0ms | ActiveRecord: 0.9ms)
1787
+ Processing by PostsController#index as HTML
1788
+ Parameters: {"theme"=>"professional_blue"}
1789
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1790
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1791
+ Processing by PostsController#index as HTML
1792
+ Parameters: {"theme"=>"basic_blue"}
1793
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1794
+ Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.2ms)
1795
+ Processing by PostsController#index as HTML
1796
+ Parameters: {"theme"=>"basic_blue"}
1797
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1798
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1799
+ Processing by PostsController#new as HTML
1800
+ Parameters: {"theme"=>"basic_blue"}
1801
+ Rendered posts/_form.html.erb (14.9ms)
1802
+ Completed 200 OK in 32ms (Views: 30.8ms | ActiveRecord: 0.2ms)
1803
+ Processing by PostsController#new as HTML
1804
+ Parameters: {"theme"=>"basic_blue"}
1805
+ Rendered posts/_form.html.erb (1.6ms)
1806
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1807
+ Connecting to database specified by database.yml
1808
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1809
+  (0.2ms) select sqlite_version(*)
1810
+  (0.7ms) DROP TABLE "posts"
1811
+  (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
1812
+  (0.1ms) SELECT version FROM "schema_migrations"
1813
+ Connecting to database specified by database.yml
1814
+ Processing by PostsController#index as HTML
1815
+ Parameters: {"theme"=>"professional_blue"}
1816
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1817
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
1818
+ Completed 200 OK in 12.7ms (Views: 11.4ms | ActiveRecord: 0.1ms)
1819
+ Processing by PostsController#index as HTML
1820
+ Parameters: {"theme"=>"professional_blue"}
1821
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1822
+ Completed 200 OK in 4.5ms (Views: 3.6ms | ActiveRecord: 0.1ms)
1823
+ Processing by PostsController#index as HTML
1824
+ Parameters: {"theme"=>"basic_blue"}
1825
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1826
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
1827
+ Processing by PostsController#index as HTML
1828
+ Parameters: {"theme"=>"basic_blue"}
1829
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1830
+ Completed 200 OK in 4.1ms (Views: 3.3ms | ActiveRecord: 0.1ms)
1831
+ Processing by PostsController#new as HTML
1832
+ Parameters: {"theme"=>"basic_blue"}
1833
+ Rendered posts/_form.html.erb (7.3ms)
1834
+ Completed 200 OK in 17.4ms (Views: 13.2ms | ActiveRecord: 0.0ms)
1835
+ Processing by PostsController#new as HTML
1836
+ Parameters: {"theme"=>"basic_blue"}
1837
+ Rendered posts/_form.html.erb (1.8ms)
1838
+ Completed 200 OK in 3.2ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1839
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1840
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1841
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1842
+  (0.1ms) SELECT version FROM "schema_migrations"
1843
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1844
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1845
+ Processing by PostsController#index as HTML
1846
+ Parameters: {"theme"=>"professional_blue"}
1847
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
1848
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.7ms)
1849
+ Completed 200 OK in 49ms (Views: 46.6ms | ActiveRecord: 0.9ms)
1850
+ Processing by PostsController#index as HTML
1851
+ Parameters: {"theme"=>"professional_blue"}
1852
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1853
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
1854
+ Processing by PostsController#index as HTML
1855
+ Parameters: {"theme"=>"basic_blue"}
1856
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1857
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.1ms)
1858
+ Processing by PostsController#index as HTML
1859
+ Parameters: {"theme"=>"basic_blue"}
1860
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1861
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
1862
+ Processing by PostsController#new as HTML
1863
+ Parameters: {"theme"=>"basic_blue"}
1864
+ Rendered posts/_form.html.erb (15.3ms)
1865
+ Completed 200 OK in 32ms (Views: 30.7ms | ActiveRecord: 0.2ms)
1866
+ Processing by PostsController#new as HTML
1867
+ Parameters: {"theme"=>"basic_blue"}
1868
+ Rendered posts/_form.html.erb (1.7ms)
1869
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1870
+  (2.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1871
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1872
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1873
+  (0.1ms) SELECT version FROM "schema_migrations"
1874
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1875
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1876
+ Processing by PostsController#index as HTML
1877
+ Parameters: {"theme"=>"professional_blue"}
1878
+ Post Load (0.8ms) SELECT "posts".* FROM "posts"
1879
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.9ms)
1880
+ Completed 200 OK in 47ms (Views: 44.1ms | ActiveRecord: 0.8ms)
1881
+ Processing by PostsController#index as HTML
1882
+ Parameters: {"theme"=>"professional_blue"}
1883
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1884
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1885
+ Processing by PostsController#index as HTML
1886
+ Parameters: {"theme"=>"basic_blue"}
1887
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1888
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.1ms)
1889
+ Processing by PostsController#index as HTML
1890
+ Parameters: {"theme"=>"basic_blue"}
1891
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1892
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
1893
+ Processing by PostsController#new as HTML
1894
+ Parameters: {"theme"=>"basic_blue"}
1895
+ Rendered posts/_form.html.erb (14.0ms)
1896
+ Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.3ms)
1897
+ Processing by PostsController#new as HTML
1898
+ Parameters: {"theme"=>"basic_blue"}
1899
+ Rendered posts/_form.html.erb (1.7ms)
1900
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1901
+ Connecting to database specified by database.yml
1902
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1903
+  (0.2ms) select sqlite_version(*)
1904
+  (1.6ms) DROP TABLE "posts"
1905
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
1906
+  (0.1ms) SELECT version FROM "schema_migrations"
1907
+ Connecting to database specified by database.yml
1908
+ Processing by PostsController#index as HTML
1909
+ Parameters: {"theme"=>"professional_blue"}
1910
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1911
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.9ms)
1912
+ Completed 200 OK in 13.1ms (Views: 11.7ms | ActiveRecord: 0.1ms)
1913
+ Processing by PostsController#index as HTML
1914
+ Parameters: {"theme"=>"professional_blue"}
1915
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1916
+ Completed 200 OK in 4.4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
1917
+ Processing by PostsController#index as HTML
1918
+ Parameters: {"theme"=>"basic_blue"}
1919
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1920
+ Completed 200 OK in 4.4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
1921
+ Processing by PostsController#index as HTML
1922
+ Parameters: {"theme"=>"basic_blue"}
1923
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1924
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
1925
+ Processing by PostsController#new as HTML
1926
+ Parameters: {"theme"=>"basic_blue"}
1927
+ Rendered posts/_form.html.erb (8.9ms)
1928
+ Completed 200 OK in 20.0ms (Views: 15.6ms | ActiveRecord: 0.0ms)
1929
+ Processing by PostsController#new as HTML
1930
+ Parameters: {"theme"=>"basic_blue"}
1931
+ Rendered posts/_form.html.erb (1.7ms)
1932
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1933
+  (1.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1934
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1935
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1936
+  (0.1ms) SELECT version FROM "schema_migrations"
1937
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1938
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1939
+ Processing by PostsController#index as HTML
1940
+ Parameters: {"theme"=>"professional_blue"}
1941
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
1942
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.4ms)
1943
+ Completed 200 OK in 48ms (Views: 45.0ms | ActiveRecord: 0.9ms)
1944
+ Processing by PostsController#index as HTML
1945
+ Parameters: {"theme"=>"professional_blue"}
1946
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1947
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
1948
+ Processing by PostsController#index as HTML
1949
+ Parameters: {"theme"=>"basic_blue"}
1950
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1951
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.2ms)
1952
+ Processing by PostsController#index as HTML
1953
+ Parameters: {"theme"=>"basic_blue"}
1954
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1955
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1956
+ Processing by PostsController#new as HTML
1957
+ Parameters: {"theme"=>"basic_blue"}
1958
+ Rendered posts/_form.html.erb (16.9ms)
1959
+ Completed 200 OK in 34ms (Views: 33.1ms | ActiveRecord: 0.2ms)
1960
+ Processing by PostsController#new as HTML
1961
+ Parameters: {"theme"=>"basic_blue"}
1962
+ Rendered posts/_form.html.erb (1.6ms)
1963
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1964
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
1965
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1966
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1967
+  (0.1ms) SELECT version FROM "schema_migrations"
1968
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
1969
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1970
+ Processing by PostsController#index as HTML
1971
+ Parameters: {"theme"=>"professional_blue"}
1972
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
1973
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
1974
+ Completed 200 OK in 42ms (Views: 39.6ms | ActiveRecord: 1.0ms)
1975
+ Processing by PostsController#index as HTML
1976
+ Parameters: {"theme"=>"professional_blue"}
1977
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1978
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
1979
+ Processing by PostsController#index as HTML
1980
+ Parameters: {"theme"=>"basic_blue"}
1981
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1982
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.1ms)
1983
+ Processing by PostsController#index as HTML
1984
+ Parameters: {"theme"=>"basic_blue"}
1985
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
1986
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
1987
+ Processing by PostsController#new as HTML
1988
+ Parameters: {"theme"=>"basic_blue"}
1989
+ Rendered posts/_form.html.erb (12.0ms)
1990
+ Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.3ms)
1991
+ Processing by PostsController#new as HTML
1992
+ Parameters: {"theme"=>"basic_blue"}
1993
+ Rendered posts/_form.html.erb (1.7ms)
1994
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1995
+ Connecting to database specified by database.yml
1996
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1997
+  (0.2ms) select sqlite_version(*)
1998
+  (1.1ms) DROP TABLE "posts"
1999
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2000
+  (0.1ms) SELECT version FROM "schema_migrations"
2001
+ Connecting to database specified by database.yml
2002
+ Processing by PostsController#index as HTML
2003
+ Parameters: {"theme"=>"professional_blue"}
2004
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2005
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.0ms)
2006
+ Completed 200 OK in 12.9ms (Views: 11.5ms | ActiveRecord: 0.1ms)
2007
+ Processing by PostsController#index as HTML
2008
+ Parameters: {"theme"=>"professional_blue"}
2009
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2010
+ Completed 200 OK in 4.4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
2011
+ Processing by PostsController#index as HTML
2012
+ Parameters: {"theme"=>"basic_blue"}
2013
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2014
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2015
+ Processing by PostsController#index as HTML
2016
+ Parameters: {"theme"=>"basic_blue"}
2017
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2018
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2019
+ Processing by PostsController#new as HTML
2020
+ Parameters: {"theme"=>"basic_blue"}
2021
+ Rendered posts/_form.html.erb (7.9ms)
2022
+ Completed 200 OK in 18.3ms (Views: 14.0ms | ActiveRecord: 0.0ms)
2023
+ Processing by PostsController#new as HTML
2024
+ Parameters: {"theme"=>"basic_blue"}
2025
+ Rendered posts/_form.html.erb (1.6ms)
2026
+ Completed 200 OK in 2.9ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2027
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2028
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2029
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2030
+  (0.1ms) SELECT version FROM "schema_migrations"
2031
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2032
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2033
+ Processing by PostsController#index as HTML
2034
+ Parameters: {"theme"=>"professional_blue"}
2035
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2036
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.4ms)
2037
+ Completed 200 OK in 47ms (Views: 44.5ms | ActiveRecord: 0.9ms)
2038
+ Processing by PostsController#index as HTML
2039
+ Parameters: {"theme"=>"professional_blue"}
2040
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2041
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
2042
+ Processing by PostsController#index as HTML
2043
+ Parameters: {"theme"=>"basic_blue"}
2044
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2045
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.1ms)
2046
+ Processing by PostsController#index as HTML
2047
+ Parameters: {"theme"=>"basic_blue"}
2048
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2049
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
2050
+ Processing by PostsController#new as HTML
2051
+ Parameters: {"theme"=>"basic_blue"}
2052
+ Rendered posts/_form.html.erb (16.4ms)
2053
+ Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.2ms)
2054
+ Processing by PostsController#new as HTML
2055
+ Parameters: {"theme"=>"basic_blue"}
2056
+ Rendered posts/_form.html.erb (1.7ms)
2057
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2058
+ Connecting to database specified by database.yml
2059
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2060
+  (0.2ms) select sqlite_version(*)
2061
+  (0.9ms) DROP TABLE "posts"
2062
+  (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2063
+  (0.1ms) SELECT version FROM "schema_migrations"
2064
+ Connecting to database specified by database.yml
2065
+ Processing by PostsController#index as HTML
2066
+ Parameters: {"theme"=>"professional_blue"}
2067
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
2068
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
2069
+ Completed 200 OK in 13.1ms (Views: 11.0ms | ActiveRecord: 0.2ms)
2070
+ Processing by PostsController#index as HTML
2071
+ Parameters: {"theme"=>"professional_blue"}
2072
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2073
+ Completed 200 OK in 4.7ms (Views: 3.8ms | ActiveRecord: 0.1ms)
2074
+ Processing by PostsController#index as HTML
2075
+ Parameters: {"theme"=>"basic_blue"}
2076
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2077
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
2078
+ Processing by PostsController#index as HTML
2079
+ Parameters: {"theme"=>"basic_blue"}
2080
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2081
+ Completed 200 OK in 4.0ms (Views: 3.2ms | ActiveRecord: 0.1ms)
2082
+ Processing by PostsController#new as HTML
2083
+ Parameters: {"theme"=>"basic_blue"}
2084
+ Rendered posts/_form.html.erb (6.9ms)
2085
+ Completed 200 OK in 16.6ms (Views: 12.5ms | ActiveRecord: 0.0ms)
2086
+ Processing by PostsController#new as HTML
2087
+ Parameters: {"theme"=>"basic_blue"}
2088
+ Rendered posts/_form.html.erb (1.6ms)
2089
+ Completed 200 OK in 3.1ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2090
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2091
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2092
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2093
+  (0.1ms) SELECT version FROM "schema_migrations"
2094
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2095
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2096
+ Processing by PostsController#index as HTML
2097
+ Parameters: {"theme"=>"professional_blue"}
2098
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
2099
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.7ms)
2100
+ Completed 200 OK in 48ms (Views: 45.5ms | ActiveRecord: 1.0ms)
2101
+ Processing by PostsController#index as HTML
2102
+ Parameters: {"theme"=>"professional_blue"}
2103
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2104
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
2105
+ Processing by PostsController#index as HTML
2106
+ Parameters: {"theme"=>"basic_blue"}
2107
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2108
+ Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.1ms)
2109
+ Processing by PostsController#index as HTML
2110
+ Parameters: {"theme"=>"basic_blue"}
2111
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2112
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
2113
+ Processing by PostsController#new as HTML
2114
+ Parameters: {"theme"=>"basic_blue"}
2115
+ Rendered posts/_form.html.erb (16.7ms)
2116
+ Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.2ms)
2117
+ Processing by PostsController#new as HTML
2118
+ Parameters: {"theme"=>"basic_blue"}
2119
+ Rendered posts/_form.html.erb (1.6ms)
2120
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2121
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2122
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2123
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2124
+  (0.1ms) SELECT version FROM "schema_migrations"
2125
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2126
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2127
+ Processing by PostsController#index as HTML
2128
+ Parameters: {"theme"=>"professional_blue"}
2129
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
2130
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.3ms)
2131
+ Completed 200 OK in 42ms (Views: 39.9ms | ActiveRecord: 1.0ms)
2132
+ Processing by PostsController#index as HTML
2133
+ Parameters: {"theme"=>"professional_blue"}
2134
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2135
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
2136
+ Processing by PostsController#index as HTML
2137
+ Parameters: {"theme"=>"basic_blue"}
2138
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2139
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.1ms)
2140
+ Processing by PostsController#index as HTML
2141
+ Parameters: {"theme"=>"basic_blue"}
2142
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2143
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
2144
+ Processing by PostsController#new as HTML
2145
+ Parameters: {"theme"=>"basic_blue"}
2146
+ Rendered posts/_form.html.erb (11.8ms)
2147
+ Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.2ms)
2148
+ Processing by PostsController#new as HTML
2149
+ Parameters: {"theme"=>"basic_blue"}
2150
+ Rendered posts/_form.html.erb (1.7ms)
2151
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2152
+ Connecting to database specified by database.yml
2153
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2154
+  (0.2ms) select sqlite_version(*)
2155
+  (0.9ms) DROP TABLE "posts"
2156
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2157
+  (0.1ms) SELECT version FROM "schema_migrations"
2158
+ Connecting to database specified by database.yml
2159
+ Processing by PostsController#index as HTML
2160
+ Parameters: {"theme"=>"professional_blue"}
2161
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2162
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.9ms)
2163
+ Completed 200 OK in 11.9ms (Views: 10.5ms | ActiveRecord: 0.1ms)
2164
+ Processing by PostsController#index as HTML
2165
+ Parameters: {"theme"=>"professional_blue"}
2166
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2167
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
2168
+ Processing by PostsController#index as HTML
2169
+ Parameters: {"theme"=>"basic_blue"}
2170
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2171
+ Completed 200 OK in 5.5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
2172
+ Processing by PostsController#index as HTML
2173
+ Parameters: {"theme"=>"basic_blue"}
2174
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2175
+ Completed 200 OK in 4.3ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2176
+ Processing by PostsController#new as HTML
2177
+ Parameters: {"theme"=>"basic_blue"}
2178
+ Rendered posts/_form.html.erb (7.3ms)
2179
+ Completed 200 OK in 17.0ms (Views: 12.9ms | ActiveRecord: 0.0ms)
2180
+ Processing by PostsController#new as HTML
2181
+ Parameters: {"theme"=>"basic_blue"}
2182
+ Rendered posts/_form.html.erb (1.6ms)
2183
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2184
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2185
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2186
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2187
+  (0.1ms) SELECT version FROM "schema_migrations"
2188
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2189
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2190
+ Processing by PostsController#index as HTML
2191
+ Parameters: {"theme"=>"professional_blue"}
2192
+ Post Load (1.1ms) SELECT "posts".* FROM "posts"
2193
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.1ms)
2194
+ Completed 200 OK in 49ms (Views: 45.8ms | ActiveRecord: 1.1ms)
2195
+ Processing by PostsController#index as HTML
2196
+ Parameters: {"theme"=>"professional_blue"}
2197
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2198
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
2199
+ Processing by PostsController#index as HTML
2200
+ Parameters: {"theme"=>"basic_blue"}
2201
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
2202
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.2ms)
2203
+ Processing by PostsController#index as HTML
2204
+ Parameters: {"theme"=>"basic_blue"}
2205
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2206
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
2207
+ Processing by PostsController#new as HTML
2208
+ Parameters: {"theme"=>"basic_blue"}
2209
+ Rendered posts/_form.html.erb (16.8ms)
2210
+ Completed 200 OK in 39ms (Views: 37.7ms | ActiveRecord: 0.3ms)
2211
+ Processing by PostsController#new as HTML
2212
+ Parameters: {"theme"=>"basic_blue"}
2213
+ Rendered posts/_form.html.erb (1.7ms)
2214
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2215
+ Connecting to database specified by database.yml
2216
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2217
+  (0.2ms) select sqlite_version(*)
2218
+  (1.0ms) DROP TABLE "posts"
2219
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2220
+  (0.1ms) SELECT version FROM "schema_migrations"
2221
+ Connecting to database specified by database.yml
2222
+ Processing by PostsController#index as HTML
2223
+ Parameters: {"theme"=>"professional_blue"}
2224
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
2225
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.9ms)
2226
+ Completed 200 OK in 13.9ms (Views: 12.1ms | ActiveRecord: 0.2ms)
2227
+ Processing by PostsController#index as HTML
2228
+ Parameters: {"theme"=>"professional_blue"}
2229
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2230
+ Completed 200 OK in 4.5ms (Views: 3.6ms | ActiveRecord: 0.1ms)
2231
+ Processing by PostsController#index as HTML
2232
+ Parameters: {"theme"=>"basic_blue"}
2233
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2234
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
2235
+ Processing by PostsController#index as HTML
2236
+ Parameters: {"theme"=>"basic_blue"}
2237
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2238
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2239
+ Processing by PostsController#new as HTML
2240
+ Parameters: {"theme"=>"basic_blue"}
2241
+ Rendered posts/_form.html.erb (7.3ms)
2242
+ Completed 200 OK in 17.6ms (Views: 13.3ms | ActiveRecord: 0.0ms)
2243
+ Processing by PostsController#new as HTML
2244
+ Parameters: {"theme"=>"basic_blue"}
2245
+ Rendered posts/_form.html.erb (1.5ms)
2246
+ Completed 200 OK in 2.9ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2247
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2248
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2249
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2250
+  (0.1ms) SELECT version FROM "schema_migrations"
2251
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2252
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2253
+ Processing by PostsController#index as HTML
2254
+ Parameters: {"theme"=>"professional_blue"}
2255
+ Post Load (1.5ms) SELECT "posts".* FROM "posts"
2256
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.7ms)
2257
+ Completed 200 OK in 47ms (Views: 43.9ms | ActiveRecord: 1.5ms)
2258
+ Processing by PostsController#index as HTML
2259
+ Parameters: {"theme"=>"professional_blue"}
2260
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
2261
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
2262
+ Processing by PostsController#index as HTML
2263
+ Parameters: {"theme"=>"basic_blue"}
2264
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2265
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.1ms)
2266
+ Processing by PostsController#index as HTML
2267
+ Parameters: {"theme"=>"basic_blue"}
2268
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2269
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
2270
+ Processing by PostsController#new as HTML
2271
+ Parameters: {"theme"=>"basic_blue"}
2272
+ Rendered posts/_form.html.erb (15.7ms)
2273
+ Completed 200 OK in 33ms (Views: 31.6ms | ActiveRecord: 0.2ms)
2274
+ Processing by PostsController#new as HTML
2275
+ Parameters: {"theme"=>"basic_blue"}
2276
+ Rendered posts/_form.html.erb (1.9ms)
2277
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
2278
+  (2.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2279
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2280
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2281
+  (0.1ms) SELECT version FROM "schema_migrations"
2282
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2283
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2284
+ Processing by PostsController#index as HTML
2285
+ Parameters: {"theme"=>"professional_blue"}
2286
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2287
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.3ms)
2288
+ Completed 200 OK in 42ms (Views: 39.3ms | ActiveRecord: 0.9ms)
2289
+ Processing by PostsController#index as HTML
2290
+ Parameters: {"theme"=>"professional_blue"}
2291
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2292
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
2293
+ Processing by PostsController#index as HTML
2294
+ Parameters: {"theme"=>"basic_blue"}
2295
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2296
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.1ms)
2297
+ Processing by PostsController#index as HTML
2298
+ Parameters: {"theme"=>"basic_blue"}
2299
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2300
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
2301
+ Processing by PostsController#new as HTML
2302
+ Parameters: {"theme"=>"basic_blue"}
2303
+ Rendered posts/_form.html.erb (11.6ms)
2304
+ Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.3ms)
2305
+ Processing by PostsController#new as HTML
2306
+ Parameters: {"theme"=>"basic_blue"}
2307
+ Rendered posts/_form.html.erb (2.4ms)
2308
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
2309
+ Connecting to database specified by database.yml
2310
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2311
+  (0.2ms) select sqlite_version(*)
2312
+  (1.0ms) DROP TABLE "posts"
2313
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2314
+  (0.1ms) SELECT version FROM "schema_migrations"
2315
+ Connecting to database specified by database.yml
2316
+ Processing by PostsController#index as HTML
2317
+ Parameters: {"theme"=>"professional_blue"}
2318
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2319
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.0ms)
2320
+ Completed 200 OK in 12.9ms (Views: 11.5ms | ActiveRecord: 0.1ms)
2321
+ Processing by PostsController#index as HTML
2322
+ Parameters: {"theme"=>"professional_blue"}
2323
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2324
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
2325
+ Processing by PostsController#index as HTML
2326
+ Parameters: {"theme"=>"basic_blue"}
2327
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2328
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2329
+ Processing by PostsController#index as HTML
2330
+ Parameters: {"theme"=>"basic_blue"}
2331
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2332
+ Completed 200 OK in 4.2ms (Views: 3.3ms | ActiveRecord: 0.1ms)
2333
+ Processing by PostsController#new as HTML
2334
+ Parameters: {"theme"=>"basic_blue"}
2335
+ Rendered posts/_form.html.erb (7.2ms)
2336
+ Completed 200 OK in 17.4ms (Views: 13.4ms | ActiveRecord: 0.0ms)
2337
+ Processing by PostsController#new as HTML
2338
+ Parameters: {"theme"=>"basic_blue"}
2339
+ Rendered posts/_form.html.erb (1.5ms)
2340
+ Completed 200 OK in 2.9ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2341
+ Processing by PostsController#index as HTML
2342
+ Parameters: {"theme"=>"professional_blue"}
2343
+ Post Load (0.8ms) SELECT "posts".* FROM "posts"
2344
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.7ms)
2345
+ Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.8ms)
2346
+ Processing by PostsController#index as HTML
2347
+ Parameters: {"theme"=>"professional_blue"}
2348
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2349
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
2350
+ Processing by PostsController#index as HTML
2351
+ Parameters: {"theme"=>"basic_blue"}
2352
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
2353
+ Completed 200 OK in 34ms (Views: 33.7ms | ActiveRecord: 0.2ms)
2354
+ Processing by PostsController#index as HTML
2355
+ Parameters: {"theme"=>"basic_blue"}
2356
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2357
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
2358
+ Processing by PostsController#new as HTML
2359
+ Parameters: {"theme"=>"basic_blue"}
2360
+ Rendered posts/_form.html.erb (11.8ms)
2361
+ Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.2ms)
2362
+ Processing by PostsController#new as HTML
2363
+ Parameters: {"theme"=>"basic_blue"}
2364
+ Rendered posts/_form.html.erb (1.5ms)
2365
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2366
+ Processing by PostsController#index as HTML
2367
+ Parameters: {"theme"=>"professional_blue"}
2368
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2369
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.3ms)
2370
+ Completed 200 OK in 51ms (Views: 48.0ms | ActiveRecord: 0.9ms)
2371
+ Processing by PostsController#index as HTML
2372
+ Parameters: {"theme"=>"professional_blue"}
2373
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2374
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
2375
+ Processing by PostsController#index as HTML
2376
+ Parameters: {"theme"=>"basic_blue"}
2377
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2378
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.1ms)
2379
+ Processing by PostsController#index as HTML
2380
+ Parameters: {"theme"=>"basic_blue"}
2381
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2382
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
2383
+ Processing by PostsController#new as HTML
2384
+ Parameters: {"theme"=>"basic_blue"}
2385
+ Rendered posts/_form.html.erb (32.7ms)
2386
+ Completed 200 OK in 48ms (Views: 47.4ms | ActiveRecord: 0.2ms)
2387
+ Processing by PostsController#new as HTML
2388
+ Parameters: {"theme"=>"basic_blue"}
2389
+ Rendered posts/_form.html.erb (1.7ms)
2390
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2391
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2392
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2393
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2394
+  (0.1ms) SELECT version FROM "schema_migrations"
2395
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2396
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2397
+ Processing by PostsController#index as HTML
2398
+ Parameters: {"theme"=>"professional_blue"}
2399
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2400
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.3ms)
2401
+ Completed 200 OK in 46ms (Views: 43.7ms | ActiveRecord: 0.9ms)
2402
+ Processing by PostsController#index as HTML
2403
+ Parameters: {"theme"=>"professional_blue"}
2404
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2405
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
2406
+ Processing by PostsController#index as HTML
2407
+ Parameters: {"theme"=>"basic_blue"}
2408
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2409
+ Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.1ms)
2410
+ Processing by PostsController#index as HTML
2411
+ Parameters: {"theme"=>"basic_blue"}
2412
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2413
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
2414
+ Processing by PostsController#new as HTML
2415
+ Parameters: {"theme"=>"basic_blue"}
2416
+ Rendered posts/_form.html.erb (15.9ms)
2417
+ Completed 200 OK in 41ms (Views: 40.3ms | ActiveRecord: 0.2ms)
2418
+ Processing by PostsController#new as HTML
2419
+ Parameters: {"theme"=>"basic_blue"}
2420
+ Rendered posts/_form.html.erb (1.7ms)
2421
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2422
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2423
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2424
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2425
+  (0.1ms) SELECT version FROM "schema_migrations"
2426
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2427
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2428
+ Processing by PostsController#index as HTML
2429
+ Parameters: {"theme"=>"professional_blue"}
2430
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2431
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.0ms)
2432
+ Completed 200 OK in 43ms (Views: 41.0ms | ActiveRecord: 0.9ms)
2433
+ Processing by PostsController#index as HTML
2434
+ Parameters: {"theme"=>"professional_blue"}
2435
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2436
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
2437
+ Processing by PostsController#index as HTML
2438
+ Parameters: {"theme"=>"basic_blue"}
2439
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2440
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.1ms)
2441
+ Processing by PostsController#index as HTML
2442
+ Parameters: {"theme"=>"basic_blue"}
2443
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2444
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
2445
+ Processing by PostsController#new as HTML
2446
+ Parameters: {"theme"=>"basic_blue"}
2447
+ Rendered posts/_form.html.erb (11.8ms)
2448
+ Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.2ms)
2449
+ Processing by PostsController#new as HTML
2450
+ Parameters: {"theme"=>"basic_blue"}
2451
+ Rendered posts/_form.html.erb (1.7ms)
2452
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2453
+ Connecting to database specified by database.yml
2454
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2455
+  (0.2ms) select sqlite_version(*)
2456
+  (1.1ms) DROP TABLE "posts"
2457
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2458
+  (0.1ms) SELECT version FROM "schema_migrations"
2459
+ Connecting to database specified by database.yml
2460
+ Processing by PostsController#index as HTML
2461
+ Parameters: {"theme"=>"professional_blue"}
2462
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
2463
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.9ms)
2464
+ Completed 200 OK in 12.9ms (Views: 11.5ms | ActiveRecord: 0.2ms)
2465
+ Processing by PostsController#index as HTML
2466
+ Parameters: {"theme"=>"professional_blue"}
2467
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2468
+ Completed 200 OK in 4.7ms (Views: 3.6ms | ActiveRecord: 0.1ms)
2469
+ Processing by PostsController#index as HTML
2470
+ Parameters: {"theme"=>"basic_blue"}
2471
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2472
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2473
+ Processing by PostsController#index as HTML
2474
+ Parameters: {"theme"=>"basic_blue"}
2475
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2476
+ Completed 200 OK in 5.1ms (Views: 4.1ms | ActiveRecord: 0.1ms)
2477
+ Processing by PostsController#new as HTML
2478
+ Parameters: {"theme"=>"basic_blue"}
2479
+ Rendered posts/_form.html.erb (8.3ms)
2480
+ Completed 200 OK in 18.9ms (Views: 14.7ms | ActiveRecord: 0.0ms)
2481
+ Processing by PostsController#new as HTML
2482
+ Parameters: {"theme"=>"basic_blue"}
2483
+ Rendered posts/_form.html.erb (1.6ms)
2484
+ Completed 200 OK in 3.1ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2485
+ Processing by PostsController#index as HTML
2486
+ Parameters: {"theme"=>"professional_blue"}
2487
+ Post Load (1.9ms) SELECT "posts".* FROM "posts"
2488
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (5.1ms)
2489
+ Completed 200 OK in 51ms (Views: 47.3ms | ActiveRecord: 1.9ms)
2490
+ Processing by PostsController#index as HTML
2491
+ Parameters: {"theme"=>"professional_blue"}
2492
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2493
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
2494
+ Processing by PostsController#index as HTML
2495
+ Parameters: {"theme"=>"basic_blue"}
2496
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2497
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.1ms)
2498
+ Processing by PostsController#index as HTML
2499
+ Parameters: {"theme"=>"basic_blue"}
2500
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2501
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
2502
+ Processing by PostsController#new as HTML
2503
+ Parameters: {"theme"=>"basic_blue"}
2504
+ Rendered posts/_form.html.erb (15.8ms)
2505
+ Completed 200 OK in 33ms (Views: 31.5ms | ActiveRecord: 0.4ms)
2506
+ Processing by PostsController#new as HTML
2507
+ Parameters: {"theme"=>"basic_blue"}
2508
+ Rendered posts/_form.html.erb (1.7ms)
2509
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2510
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2511
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2512
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2513
+  (0.1ms) SELECT version FROM "schema_migrations"
2514
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2515
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2516
+ Processing by PostsController#index as HTML
2517
+ Parameters: {"theme"=>"professional_blue"}
2518
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2519
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.4ms)
2520
+ Completed 200 OK in 49ms (Views: 46.3ms | ActiveRecord: 0.9ms)
2521
+ Processing by PostsController#index as HTML
2522
+ Parameters: {"theme"=>"professional_blue"}
2523
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2524
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
2525
+ Processing by PostsController#index as HTML
2526
+ Parameters: {"theme"=>"basic_blue"}
2527
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
2528
+ Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.2ms)
2529
+ Processing by PostsController#index as HTML
2530
+ Parameters: {"theme"=>"basic_blue"}
2531
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2532
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
2533
+ Processing by PostsController#new as HTML
2534
+ Parameters: {"theme"=>"basic_blue"}
2535
+ Rendered posts/_form.html.erb (14.7ms)
2536
+ Completed 200 OK in 32ms (Views: 30.8ms | ActiveRecord: 0.2ms)
2537
+ Processing by PostsController#new as HTML
2538
+ Parameters: {"theme"=>"basic_blue"}
2539
+ Rendered posts/_form.html.erb (1.7ms)
2540
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2541
+ Connecting to database specified by database.yml
2542
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2543
+  (0.2ms) select sqlite_version(*)
2544
+  (1.0ms) DROP TABLE "posts"
2545
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2546
+  (0.1ms) SELECT version FROM "schema_migrations"
2547
+ Connecting to database specified by database.yml
2548
+ Processing by PostsController#index as HTML
2549
+ Parameters: {"theme"=>"professional_blue"}
2550
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2551
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
2552
+ Completed 200 OK in 13.3ms (Views: 11.8ms | ActiveRecord: 0.1ms)
2553
+ Processing by PostsController#index as HTML
2554
+ Parameters: {"theme"=>"professional_blue"}
2555
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
2556
+ Completed 200 OK in 6.0ms (Views: 4.6ms | ActiveRecord: 0.2ms)
2557
+ Processing by PostsController#index as HTML
2558
+ Parameters: {"theme"=>"basic_blue"}
2559
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2560
+ Completed 200 OK in 4.8ms (Views: 3.8ms | ActiveRecord: 0.1ms)
2561
+ Processing by PostsController#index as HTML
2562
+ Parameters: {"theme"=>"basic_blue"}
2563
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2564
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2565
+ Processing by PostsController#new as HTML
2566
+ Parameters: {"theme"=>"basic_blue"}
2567
+ Rendered posts/_form.html.erb (7.5ms)
2568
+ Completed 200 OK in 17.4ms (Views: 13.4ms | ActiveRecord: 0.0ms)
2569
+ Processing by PostsController#new as HTML
2570
+ Parameters: {"theme"=>"basic_blue"}
2571
+ Rendered posts/_form.html.erb (1.6ms)
2572
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2573
+ Processing by PostsController#index as HTML
2574
+ Parameters: {"theme"=>"professional_blue"}
2575
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2576
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
2577
+ Completed 200 OK in 43ms (Views: 40.5ms | ActiveRecord: 0.9ms)
2578
+ Processing by PostsController#index as HTML
2579
+ Parameters: {"theme"=>"professional_blue"}
2580
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2581
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
2582
+ Processing by PostsController#index as HTML
2583
+ Parameters: {"theme"=>"basic_blue"}
2584
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2585
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.1ms)
2586
+ Processing by PostsController#index as HTML
2587
+ Parameters: {"theme"=>"basic_blue"}
2588
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2589
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
2590
+ Processing by PostsController#new as HTML
2591
+ Parameters: {"theme"=>"basic_blue"}
2592
+ Rendered posts/_form.html.erb (12.5ms)
2593
+ Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.3ms)
2594
+ Processing by PostsController#new as HTML
2595
+ Parameters: {"theme"=>"basic_blue"}
2596
+ Rendered posts/_form.html.erb (1.8ms)
2597
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2598
+ Processing by PostsController#index as HTML
2599
+ Parameters: {"theme"=>"professional_blue"}
2600
+ Post Load (1.7ms) SELECT "posts".* FROM "posts"
2601
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (5.1ms)
2602
+ Completed 200 OK in 56ms (Views: 51.8ms | ActiveRecord: 1.7ms)
2603
+ Processing by PostsController#index as HTML
2604
+ Parameters: {"theme"=>"professional_blue"}
2605
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2606
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
2607
+ Processing by PostsController#index as HTML
2608
+ Parameters: {"theme"=>"basic_blue"}
2609
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
2610
+ Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.2ms)
2611
+ Processing by PostsController#index as HTML
2612
+ Parameters: {"theme"=>"basic_blue"}
2613
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2614
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
2615
+ Processing by PostsController#new as HTML
2616
+ Parameters: {"theme"=>"basic_blue"}
2617
+ Rendered posts/_form.html.erb (17.1ms)
2618
+ Completed 200 OK in 35ms (Views: 33.6ms | ActiveRecord: 0.2ms)
2619
+ Processing by PostsController#new as HTML
2620
+ Parameters: {"theme"=>"basic_blue"}
2621
+ Rendered posts/_form.html.erb (1.9ms)
2622
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
2623
+ Connecting to database specified by database.yml
2624
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2625
+  (0.2ms) select sqlite_version(*)
2626
+  (1.1ms) DROP TABLE "posts"
2627
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2628
+  (0.1ms) SELECT version FROM "schema_migrations"
2629
+ Connecting to database specified by database.yml
2630
+ Processing by PostsController#index as HTML
2631
+ Parameters: {"theme"=>"professional_blue"}
2632
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
2633
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.1ms)
2634
+ Completed 200 OK in 13.8ms (Views: 11.6ms | ActiveRecord: 0.2ms)
2635
+ Processing by PostsController#index as HTML
2636
+ Parameters: {"theme"=>"professional_blue"}
2637
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2638
+ Completed 200 OK in 5.0ms (Views: 3.9ms | ActiveRecord: 0.1ms)
2639
+ Processing by PostsController#index as HTML
2640
+ Parameters: {"theme"=>"basic_blue"}
2641
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2642
+ Completed 200 OK in 5.2ms (Views: 4.3ms | ActiveRecord: 0.1ms)
2643
+ Processing by PostsController#index as HTML
2644
+ Parameters: {"theme"=>"basic_blue"}
2645
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2646
+ Completed 200 OK in 4.5ms (Views: 3.6ms | ActiveRecord: 0.1ms)
2647
+ Processing by PostsController#new as HTML
2648
+ Parameters: {"theme"=>"basic_blue"}
2649
+ Rendered posts/_form.html.erb (7.8ms)
2650
+ Completed 200 OK in 18.9ms (Views: 14.6ms | ActiveRecord: 0.0ms)
2651
+ Processing by PostsController#new as HTML
2652
+ Parameters: {"theme"=>"basic_blue"}
2653
+ Rendered posts/_form.html.erb (1.6ms)
2654
+ Completed 200 OK in 3.1ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2655
+ Connecting to database specified by database.yml
2656
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2657
+  (0.2ms) select sqlite_version(*)
2658
+  (0.9ms) DROP TABLE "posts"
2659
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2660
+  (0.1ms) SELECT version FROM "schema_migrations"
2661
+ Connecting to database specified by database.yml
2662
+ Processing by PostsController#index as HTML
2663
+ Parameters: {"theme"=>"professional_blue"}
2664
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2665
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.0ms)
2666
+ Completed 200 OK in 12.2ms (Views: 10.9ms | ActiveRecord: 0.1ms)
2667
+ Processing by PostsController#index as HTML
2668
+ Parameters: {"theme"=>"professional_blue"}
2669
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2670
+ Completed 200 OK in 4.6ms (Views: 3.6ms | ActiveRecord: 0.1ms)
2671
+ Processing by PostsController#index as HTML
2672
+ Parameters: {"theme"=>"basic_blue"}
2673
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2674
+ Completed 200 OK in 5.0ms (Views: 4.1ms | ActiveRecord: 0.1ms)
2675
+ Processing by PostsController#index as HTML
2676
+ Parameters: {"theme"=>"basic_blue"}
2677
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2678
+ Completed 200 OK in 4.1ms (Views: 3.3ms | ActiveRecord: 0.1ms)
2679
+ Processing by PostsController#new as HTML
2680
+ Parameters: {"theme"=>"basic_blue"}
2681
+ Rendered posts/_form.html.erb (8.6ms)
2682
+ Completed 200 OK in 20.1ms (Views: 15.7ms | ActiveRecord: 0.0ms)
2683
+ Processing by PostsController#new as HTML
2684
+ Parameters: {"theme"=>"basic_blue"}
2685
+ Rendered posts/_form.html.erb (1.6ms)
2686
+ Completed 200 OK in 3.1ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2687
+ Connecting to database specified by database.yml
2688
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2689
+  (0.2ms) select sqlite_version(*)
2690
+  (1.2ms) DROP TABLE "posts"
2691
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2692
+  (0.1ms) SELECT version FROM "schema_migrations"
2693
+ Connecting to database specified by database.yml
2694
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2695
+ Migrating to CreatePosts (20131120082307)
2696
+  (0.1ms) select sqlite_version(*)
2697
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2698
+ Connecting to database specified by database.yml
2699
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2700
+  (0.2ms) select sqlite_version(*)
2701
+  (1.0ms) DROP TABLE "posts"
2702
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2703
+  (0.1ms) SELECT version FROM "schema_migrations"
2704
+ Connecting to database specified by database.yml
2705
+ Processing by PostsController#index as HTML
2706
+ Parameters: {"theme"=>"professional_blue"}
2707
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
2708
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.9ms)
2709
+ Completed 200 OK in 13.2ms (Views: 11.6ms | ActiveRecord: 0.2ms)
2710
+ Processing by PostsController#index as HTML
2711
+ Parameters: {"theme"=>"professional_blue"}
2712
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2713
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
2714
+ Processing by PostsController#index as HTML
2715
+ Parameters: {"theme"=>"basic_blue"}
2716
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2717
+ Completed 200 OK in 5.2ms (Views: 4.3ms | ActiveRecord: 0.1ms)
2718
+ Processing by PostsController#index as HTML
2719
+ Parameters: {"theme"=>"basic_blue"}
2720
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2721
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2722
+ Processing by PostsController#new as HTML
2723
+ Parameters: {"theme"=>"basic_blue"}
2724
+ Rendered posts/_form.html.erb (8.7ms)
2725
+ Completed 200 OK in 21.0ms (Views: 16.7ms | ActiveRecord: 0.0ms)
2726
+ Processing by PostsController#new as HTML
2727
+ Parameters: {"theme"=>"basic_blue"}
2728
+ Rendered posts/_form.html.erb (1.6ms)
2729
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2730
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2731
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2732
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2733
+  (0.1ms) SELECT version FROM "schema_migrations"
2734
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2735
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2736
+ Processing by PostsController#index as HTML
2737
+ Parameters: {"theme"=>"professional_blue"}
2738
+ Post Load (1.1ms) SELECT "posts".* FROM "posts"
2739
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.0ms)
2740
+ Completed 200 OK in 50ms (Views: 46.6ms | ActiveRecord: 1.1ms)
2741
+ Processing by PostsController#index as HTML
2742
+ Parameters: {"theme"=>"professional_blue"}
2743
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2744
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
2745
+ Processing by PostsController#index as HTML
2746
+ Parameters: {"theme"=>"basic_blue"}
2747
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
2748
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.2ms)
2749
+ Processing by PostsController#index as HTML
2750
+ Parameters: {"theme"=>"basic_blue"}
2751
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2752
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
2753
+ Processing by PostsController#new as HTML
2754
+ Parameters: {"theme"=>"basic_blue"}
2755
+ Rendered posts/_form.html.erb (17.3ms)
2756
+ Completed 200 OK in 35ms (Views: 34.0ms | ActiveRecord: 0.3ms)
2757
+ Processing by PostsController#new as HTML
2758
+ Parameters: {"theme"=>"basic_blue"}
2759
+ Rendered posts/_form.html.erb (1.8ms)
2760
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
2761
+ Connecting to database specified by database.yml
2762
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2763
+  (0.3ms) select sqlite_version(*)
2764
+  (3.6ms) DROP TABLE "posts"
2765
+  (5.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2766
+  (0.1ms) SELECT version FROM "schema_migrations"
2767
+ Connecting to database specified by database.yml
2768
+ Processing by PostsController#index as HTML
2769
+ Parameters: {"theme"=>"professional_blue"}
2770
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
2771
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.9ms)
2772
+ Completed 200 OK in 12.7ms (Views: 10.8ms | ActiveRecord: 0.2ms)
2773
+ Processing by PostsController#index as HTML
2774
+ Parameters: {"theme"=>"professional_blue"}
2775
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2776
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
2777
+ Processing by PostsController#index as HTML
2778
+ Parameters: {"theme"=>"basic_blue"}
2779
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2780
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2781
+ Processing by PostsController#index as HTML
2782
+ Parameters: {"theme"=>"basic_blue"}
2783
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2784
+ Completed 200 OK in 4.0ms (Views: 3.2ms | ActiveRecord: 0.1ms)
2785
+ Processing by PostsController#new as HTML
2786
+ Parameters: {"theme"=>"basic_blue"}
2787
+ Rendered posts/_form.html.erb (7.5ms)
2788
+ Completed 200 OK in 17.7ms (Views: 13.5ms | ActiveRecord: 0.0ms)
2789
+ Processing by PostsController#new as HTML
2790
+ Parameters: {"theme"=>"basic_blue"}
2791
+ Rendered posts/_form.html.erb (1.5ms)
2792
+ Completed 200 OK in 2.9ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2793
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2794
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2795
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2796
+  (0.1ms) SELECT version FROM "schema_migrations"
2797
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2798
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2799
+ Processing by PostsController#index as HTML
2800
+ Parameters: {"theme"=>"professional_blue"}
2801
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2802
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.6ms)
2803
+ Completed 200 OK in 50ms (Views: 46.8ms | ActiveRecord: 0.9ms)
2804
+ Processing by PostsController#index as HTML
2805
+ Parameters: {"theme"=>"professional_blue"}
2806
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2807
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
2808
+ Processing by PostsController#index as HTML
2809
+ Parameters: {"theme"=>"basic_blue"}
2810
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2811
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.1ms)
2812
+ Processing by PostsController#index as HTML
2813
+ Parameters: {"theme"=>"basic_blue"}
2814
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2815
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
2816
+ Processing by PostsController#new as HTML
2817
+ Parameters: {"theme"=>"basic_blue"}
2818
+ Rendered posts/_form.html.erb (16.9ms)
2819
+ Completed 200 OK in 34ms (Views: 33.0ms | ActiveRecord: 0.3ms)
2820
+ Processing by PostsController#new as HTML
2821
+ Parameters: {"theme"=>"basic_blue"}
2822
+ Rendered posts/_form.html.erb (1.7ms)
2823
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2824
+ Processing by PostsController#index as HTML
2825
+ Parameters: {"theme"=>"professional_blue"}
2826
+ Post Load (1.4ms) SELECT "posts".* FROM "posts"
2827
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.0ms)
2828
+ Completed 200 OK in 50ms (Views: 47.2ms | ActiveRecord: 1.4ms)
2829
+ Processing by PostsController#index as HTML
2830
+ Parameters: {"theme"=>"professional_blue"}
2831
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2832
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
2833
+ Processing by PostsController#index as HTML
2834
+ Parameters: {"theme"=>"basic_blue"}
2835
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2836
+ Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.1ms)
2837
+ Processing by PostsController#index as HTML
2838
+ Parameters: {"theme"=>"basic_blue"}
2839
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2840
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
2841
+ Processing by PostsController#new as HTML
2842
+ Parameters: {"theme"=>"basic_blue"}
2843
+ Rendered posts/_form.html.erb (19.3ms)
2844
+ Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.3ms)
2845
+ Processing by PostsController#new as HTML
2846
+ Parameters: {"theme"=>"basic_blue"}
2847
+ Rendered posts/_form.html.erb (1.9ms)
2848
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
2849
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2850
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2851
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2852
+  (0.1ms) SELECT version FROM "schema_migrations"
2853
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2854
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2855
+ Processing by PostsController#index as HTML
2856
+ Parameters: {"theme"=>"professional_blue"}
2857
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2858
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
2859
+ Completed 200 OK in 41ms (Views: 38.7ms | ActiveRecord: 0.9ms)
2860
+ Processing by PostsController#index as HTML
2861
+ Parameters: {"theme"=>"professional_blue"}
2862
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
2863
+ Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.2ms)
2864
+ Processing by PostsController#index as HTML
2865
+ Parameters: {"theme"=>"basic_blue"}
2866
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2867
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.1ms)
2868
+ Processing by PostsController#index as HTML
2869
+ Parameters: {"theme"=>"basic_blue"}
2870
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2871
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
2872
+ Processing by PostsController#new as HTML
2873
+ Parameters: {"theme"=>"basic_blue"}
2874
+ Rendered posts/_form.html.erb (11.6ms)
2875
+ Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.2ms)
2876
+ Processing by PostsController#new as HTML
2877
+ Parameters: {"theme"=>"basic_blue"}
2878
+ Rendered posts/_form.html.erb (1.7ms)
2879
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2880
+ Processing by PostsController#index as HTML
2881
+ Parameters: {"theme"=>"professional_blue"}
2882
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2883
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.1ms)
2884
+ Completed 200 OK in 47ms (Views: 43.9ms | ActiveRecord: 0.9ms)
2885
+ Processing by PostsController#index as HTML
2886
+ Parameters: {"theme"=>"professional_blue"}
2887
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2888
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
2889
+ Processing by PostsController#index as HTML
2890
+ Parameters: {"theme"=>"basic_blue"}
2891
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2892
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.1ms)
2893
+ Processing by PostsController#index as HTML
2894
+ Parameters: {"theme"=>"basic_blue"}
2895
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2896
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
2897
+ Processing by PostsController#new as HTML
2898
+ Parameters: {"theme"=>"basic_blue"}
2899
+ Rendered posts/_form.html.erb (11.5ms)
2900
+ Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.2ms)
2901
+ Processing by PostsController#new as HTML
2902
+ Parameters: {"theme"=>"basic_blue"}
2903
+ Rendered posts/_form.html.erb (1.6ms)
2904
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2905
+ Connecting to database specified by database.yml
2906
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2907
+  (0.2ms) select sqlite_version(*)
2908
+  (0.9ms) DROP TABLE "posts"
2909
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
2910
+  (0.1ms) SELECT version FROM "schema_migrations"
2911
+ Connecting to database specified by database.yml
2912
+ Processing by PostsController#index as HTML
2913
+ Parameters: {"theme"=>"professional_blue"}
2914
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
2915
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.0ms)
2916
+ Completed 200 OK in 12.4ms (Views: 10.9ms | ActiveRecord: 0.2ms)
2917
+ Processing by PostsController#index as HTML
2918
+ Parameters: {"theme"=>"professional_blue"}
2919
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2920
+ Completed 200 OK in 4.5ms (Views: 3.6ms | ActiveRecord: 0.1ms)
2921
+ Processing by PostsController#index as HTML
2922
+ Parameters: {"theme"=>"basic_blue"}
2923
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2924
+ Completed 200 OK in 5.0ms (Views: 3.8ms | ActiveRecord: 0.1ms)
2925
+ Processing by PostsController#index as HTML
2926
+ Parameters: {"theme"=>"basic_blue"}
2927
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2928
+ Completed 200 OK in 4.3ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2929
+ Processing by PostsController#new as HTML
2930
+ Parameters: {"theme"=>"basic_blue"}
2931
+ Rendered posts/_form.html.erb (8.8ms)
2932
+ Completed 200 OK in 19.8ms (Views: 15.6ms | ActiveRecord: 0.0ms)
2933
+ Processing by PostsController#new as HTML
2934
+ Parameters: {"theme"=>"basic_blue"}
2935
+ Rendered posts/_form.html.erb (1.6ms)
2936
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2937
+ Connecting to database specified by database.yml
2938
+ Processing by PostsController#index as HTML
2939
+ Parameters: {"theme"=>"professional_blue"}
2940
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2941
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.5ms)
2942
+ Completed 200 OK in 9.9ms (Views: 8.5ms | ActiveRecord: 0.1ms)
2943
+ Processing by PostsController#index as HTML
2944
+ Parameters: {"theme"=>"professional_blue"}
2945
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2946
+ Completed 200 OK in 4.4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
2947
+ Processing by PostsController#index as HTML
2948
+ Parameters: {"theme"=>"basic_blue"}
2949
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
2950
+ Completed 200 OK in 4.4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
2951
+ Processing by PostsController#index as HTML
2952
+ Parameters: {"theme"=>"basic_blue"}
2953
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2954
+ Completed 200 OK in 4.2ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2955
+ Processing by PostsController#new as HTML
2956
+ Parameters: {"theme"=>"basic_blue"}
2957
+ Rendered posts/_form.html.erb (5.7ms)
2958
+ Completed 200 OK in 14.4ms (Views: 10.3ms | ActiveRecord: 0.0ms)
2959
+ Processing by PostsController#new as HTML
2960
+ Parameters: {"theme"=>"basic_blue"}
2961
+ Rendered posts/_form.html.erb (1.6ms)
2962
+ Completed 200 OK in 2.9ms (Views: 2.7ms | ActiveRecord: 0.0ms)
2963
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2964
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2965
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2966
+  (0.1ms) SELECT version FROM "schema_migrations"
2967
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2968
+ Processing by PostsController#index as HTML
2969
+ Parameters: {"theme"=>"professional_blue"}
2970
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
2971
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.3ms)
2972
+ Completed 200 OK in 48ms (Views: 45.3ms | ActiveRecord: 0.9ms)
2973
+ Processing by PostsController#index as HTML
2974
+ Parameters: {"theme"=>"professional_blue"}
2975
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2976
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
2977
+ Processing by PostsController#index as HTML
2978
+ Parameters: {"theme"=>"basic_blue"}
2979
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2980
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.1ms)
2981
+ Processing by PostsController#index as HTML
2982
+ Parameters: {"theme"=>"basic_blue"}
2983
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
2984
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
2985
+ Processing by PostsController#new as HTML
2986
+ Parameters: {"theme"=>"basic_blue"}
2987
+ Rendered posts/_form.html.erb (22.7ms)
2988
+ Completed 200 OK in 41ms (Views: 39.4ms | ActiveRecord: 0.3ms)
2989
+ Processing by PostsController#new as HTML
2990
+ Parameters: {"theme"=>"basic_blue"}
2991
+ Rendered posts/_form.html.erb (1.8ms)
2992
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2993
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
2994
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2995
+  (20.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2996
+  (0.1ms) SELECT version FROM "schema_migrations"
2997
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
2998
+ Processing by PostsController#index as HTML
2999
+ Parameters: {"theme"=>"professional_blue"}
3000
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
3001
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.3ms)
3002
+ Completed 200 OK in 42ms (Views: 39.6ms | ActiveRecord: 0.9ms)
3003
+ Processing by PostsController#index as HTML
3004
+ Parameters: {"theme"=>"professional_blue"}
3005
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3006
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
3007
+ Processing by PostsController#index as HTML
3008
+ Parameters: {"theme"=>"basic_blue"}
3009
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3010
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.1ms)
3011
+ Processing by PostsController#index as HTML
3012
+ Parameters: {"theme"=>"basic_blue"}
3013
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3014
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
3015
+ Processing by PostsController#new as HTML
3016
+ Parameters: {"theme"=>"basic_blue"}
3017
+ Rendered posts/_form.html.erb (12.6ms)
3018
+ Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.2ms)
3019
+ Processing by PostsController#new as HTML
3020
+ Parameters: {"theme"=>"basic_blue"}
3021
+ Rendered posts/_form.html.erb (1.7ms)
3022
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3023
+ Connecting to database specified by database.yml
3024
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3025
+  (0.2ms) select sqlite_version(*)
3026
+  (1.1ms) DROP TABLE "posts"
3027
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
3028
+  (0.1ms) SELECT version FROM "schema_migrations"
3029
+ Connecting to database specified by database.yml
3030
+ Processing by PostsController#index as HTML
3031
+ Parameters: {"theme"=>"professional_blue"}
3032
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3033
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.9ms)
3034
+ Completed 200 OK in 12.4ms (Views: 10.8ms | ActiveRecord: 0.1ms)
3035
+ Processing by PostsController#index as HTML
3036
+ Parameters: {"theme"=>"professional_blue"}
3037
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3038
+ Completed 200 OK in 4.3ms (Views: 3.4ms | ActiveRecord: 0.1ms)
3039
+ Processing by PostsController#index as HTML
3040
+ Parameters: {"theme"=>"basic_blue"}
3041
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3042
+ Completed 200 OK in 4.6ms (Views: 3.7ms | ActiveRecord: 0.1ms)
3043
+ Processing by PostsController#index as HTML
3044
+ Parameters: {"theme"=>"basic_blue"}
3045
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3046
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
3047
+ Processing by PostsController#new as HTML
3048
+ Parameters: {"theme"=>"basic_blue"}
3049
+ Rendered posts/_form.html.erb (9.1ms)
3050
+ Completed 200 OK in 20.1ms (Views: 15.9ms | ActiveRecord: 0.0ms)
3051
+ Processing by PostsController#new as HTML
3052
+ Parameters: {"theme"=>"basic_blue"}
3053
+ Rendered posts/_form.html.erb (1.6ms)
3054
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3055
+  (3.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3056
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3057
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3058
+  (0.1ms) SELECT version FROM "schema_migrations"
3059
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3060
+ Processing by PostsController#index as HTML
3061
+ Parameters: {"theme"=>"professional_blue"}
3062
+ Post Load (0.8ms) SELECT "posts".* FROM "posts"
3063
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.8ms)
3064
+ Completed 200 OK in 41ms (Views: 38.5ms | ActiveRecord: 0.8ms)
3065
+ Processing by PostsController#index as HTML
3066
+ Parameters: {"theme"=>"professional_blue"}
3067
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3068
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
3069
+ Processing by PostsController#index as HTML
3070
+ Parameters: {"theme"=>"basic_blue"}
3071
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3072
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.1ms)
3073
+ Processing by PostsController#index as HTML
3074
+ Parameters: {"theme"=>"basic_blue"}
3075
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3076
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
3077
+ Processing by PostsController#new as HTML
3078
+ Parameters: {"theme"=>"basic_blue"}
3079
+ Rendered posts/_form.html.erb (14.9ms)
3080
+ Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.2ms)
3081
+ Processing by PostsController#new as HTML
3082
+ Parameters: {"theme"=>"basic_blue"}
3083
+ Rendered posts/_form.html.erb (1.7ms)
3084
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3085
+  (2.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3086
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3087
+  (23.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3088
+  (0.1ms) SELECT version FROM "schema_migrations"
3089
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3090
+ Processing by PostsController#index as HTML
3091
+ Parameters: {"theme"=>"professional_blue"}
3092
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
3093
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.0ms)
3094
+ Completed 200 OK in 43ms (Views: 40.3ms | ActiveRecord: 0.9ms)
3095
+ Processing by PostsController#index as HTML
3096
+ Parameters: {"theme"=>"professional_blue"}
3097
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3098
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
3099
+ Processing by PostsController#index as HTML
3100
+ Parameters: {"theme"=>"basic_blue"}
3101
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3102
+ Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.1ms)
3103
+ Processing by PostsController#index as HTML
3104
+ Parameters: {"theme"=>"basic_blue"}
3105
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3106
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
3107
+ Processing by PostsController#new as HTML
3108
+ Parameters: {"theme"=>"basic_blue"}
3109
+ Rendered posts/_form.html.erb (11.7ms)
3110
+ Completed 200 OK in 40ms (Views: 38.5ms | ActiveRecord: 0.2ms)
3111
+ Processing by PostsController#new as HTML
3112
+ Parameters: {"theme"=>"basic_blue"}
3113
+ Rendered posts/_form.html.erb (1.7ms)
3114
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3115
+ Connecting to database specified by database.yml
3116
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3117
+  (0.2ms) select sqlite_version(*)
3118
+  (1.0ms) DROP TABLE "posts"
3119
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
3120
+  (0.1ms) SELECT version FROM "schema_migrations"
3121
+ Connecting to database specified by database.yml
3122
+ Processing by PostsController#index as HTML
3123
+ Parameters: {"theme"=>"professional_blue"}
3124
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3125
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.2ms)
3126
+ Completed 200 OK in 14.7ms (Views: 13.3ms | ActiveRecord: 0.1ms)
3127
+ Processing by PostsController#index as HTML
3128
+ Parameters: {"theme"=>"professional_blue"}
3129
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3130
+ Completed 200 OK in 4.9ms (Views: 3.8ms | ActiveRecord: 0.1ms)
3131
+ Processing by PostsController#index as HTML
3132
+ Parameters: {"theme"=>"basic_blue"}
3133
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3134
+ Completed 200 OK in 4.5ms (Views: 3.6ms | ActiveRecord: 0.1ms)
3135
+ Processing by PostsController#index as HTML
3136
+ Parameters: {"theme"=>"basic_blue"}
3137
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3138
+ Completed 200 OK in 6.5ms (Views: 4.9ms | ActiveRecord: 0.2ms)
3139
+ Processing by PostsController#new as HTML
3140
+ Parameters: {"theme"=>"basic_blue"}
3141
+ Rendered posts/_form.html.erb (7.2ms)
3142
+ Completed 200 OK in 18.8ms (Views: 13.9ms | ActiveRecord: 0.0ms)
3143
+ Processing by PostsController#new as HTML
3144
+ Parameters: {"theme"=>"basic_blue"}
3145
+ Rendered posts/_form.html.erb (1.7ms)
3146
+ Completed 200 OK in 3.2ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3147
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3148
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3149
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3150
+  (0.1ms) SELECT version FROM "schema_migrations"
3151
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3152
+ Processing by PostsController#index as HTML
3153
+ Parameters: {"theme"=>"professional_blue"}
3154
+ Post Load (1.2ms) SELECT "posts".* FROM "posts"
3155
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (4.3ms)
3156
+ Completed 200 OK in 51ms (Views: 48.0ms | ActiveRecord: 1.2ms)
3157
+ Processing by PostsController#index as HTML
3158
+ Parameters: {"theme"=>"professional_blue"}
3159
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3160
+ Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)
3161
+ Processing by PostsController#index as HTML
3162
+ Parameters: {"theme"=>"basic_blue"}
3163
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3164
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.1ms)
3165
+ Processing by PostsController#index as HTML
3166
+ Parameters: {"theme"=>"basic_blue"}
3167
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3168
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
3169
+ Processing by PostsController#new as HTML
3170
+ Parameters: {"theme"=>"basic_blue"}
3171
+ Rendered posts/_form.html.erb (18.1ms)
3172
+ Completed 200 OK in 31ms (Views: 30.1ms | ActiveRecord: 0.3ms)
3173
+ Processing by PostsController#new as HTML
3174
+ Parameters: {"theme"=>"basic_blue"}
3175
+ Rendered posts/_form.html.erb (1.9ms)
3176
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
3177
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3178
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3179
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3180
+  (0.1ms) SELECT version FROM "schema_migrations"
3181
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3182
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3183
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3184
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3185
+  (0.1ms) SELECT version FROM "schema_migrations"
3186
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3187
+ Processing by PostsController#index as HTML
3188
+ Parameters: {"theme"=>"professional_blue"}
3189
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3190
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.4ms)
3191
+ Completed 200 OK in 46ms (Views: 43.8ms | ActiveRecord: 1.0ms)
3192
+ Processing by PostsController#index as HTML
3193
+ Parameters: {"theme"=>"professional_blue"}
3194
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3195
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
3196
+ Processing by PostsController#index as HTML
3197
+ Parameters: {"theme"=>"basic_blue"}
3198
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3199
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.2ms)
3200
+ Processing by PostsController#index as HTML
3201
+ Parameters: {"theme"=>"basic_blue"}
3202
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3203
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
3204
+ Processing by PostsController#new as HTML
3205
+ Parameters: {"theme"=>"basic_blue"}
3206
+ Rendered posts/_form.html.erb (12.2ms)
3207
+ Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.3ms)
3208
+ Processing by PostsController#new as HTML
3209
+ Parameters: {"theme"=>"basic_blue"}
3210
+ Rendered posts/_form.html.erb (2.3ms)
3211
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
3212
+  (2.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3213
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3214
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3215
+  (0.1ms) SELECT version FROM "schema_migrations"
3216
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3217
+ Processing by PostsController#index as HTML
3218
+ Parameters: {"theme"=>"professional_blue"}
3219
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3220
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.4ms)
3221
+ Completed 200 OK in 45ms (Views: 42.2ms | ActiveRecord: 1.0ms)
3222
+ Processing by PostsController#index as HTML
3223
+ Parameters: {"theme"=>"professional_blue"}
3224
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3225
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
3226
+ Processing by PostsController#index as HTML
3227
+ Parameters: {"theme"=>"basic_blue"}
3228
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3229
+ Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.2ms)
3230
+ Processing by PostsController#index as HTML
3231
+ Parameters: {"theme"=>"basic_blue"}
3232
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3233
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
3234
+ Processing by PostsController#new as HTML
3235
+ Parameters: {"theme"=>"basic_blue"}
3236
+ Rendered posts/_form.html.erb (12.3ms)
3237
+ Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.3ms)
3238
+ Processing by PostsController#new as HTML
3239
+ Parameters: {"theme"=>"basic_blue"}
3240
+ Rendered posts/_form.html.erb (2.3ms)
3241
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
3242
+ Connecting to database specified by database.yml
3243
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3244
+  (0.2ms) select sqlite_version(*)
3245
+  (1.6ms) DROP TABLE "posts"
3246
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
3247
+  (0.1ms) SELECT version FROM "schema_migrations"
3248
+ Connecting to database specified by database.yml
3249
+ Processing by PostsController#index as HTML
3250
+ Parameters: {"theme"=>"professional_blue"}
3251
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3252
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.4ms)
3253
+ Completed 200 OK in 42.6ms (Views: 41.1ms | ActiveRecord: 0.1ms)
3254
+ Processing by PostsController#index as HTML
3255
+ Parameters: {"theme"=>"professional_blue"}
3256
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3257
+ Completed 200 OK in 6.2ms (Views: 4.9ms | ActiveRecord: 0.2ms)
3258
+ Processing by PostsController#index as HTML
3259
+ Parameters: {"theme"=>"basic_blue"}
3260
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
3261
+ Completed 200 OK in 6.4ms (Views: 5.2ms | ActiveRecord: 0.2ms)
3262
+ Processing by PostsController#index as HTML
3263
+ Parameters: {"theme"=>"basic_blue"}
3264
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3265
+ Completed 200 OK in 5.3ms (Views: 4.4ms | ActiveRecord: 0.1ms)
3266
+ Processing by PostsController#new as HTML
3267
+ Parameters: {"theme"=>"basic_blue"}
3268
+ Rendered posts/_form.html.erb (8.8ms)
3269
+ Completed 200 OK in 20.3ms (Views: 16.1ms | ActiveRecord: 0.0ms)
3270
+ Processing by PostsController#new as HTML
3271
+ Parameters: {"theme"=>"basic_blue"}
3272
+ Rendered posts/_form.html.erb (1.9ms)
3273
+ Completed 200 OK in 3.5ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3274
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3275
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3276
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3277
+  (0.1ms) SELECT version FROM "schema_migrations"
3278
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3279
+ Processing by PostsController#index as HTML
3280
+ Parameters: {"theme"=>"professional_blue"}
3281
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3282
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.8ms)
3283
+ Completed 200 OK in 51ms (Views: 48.0ms | ActiveRecord: 1.0ms)
3284
+ Processing by PostsController#index as HTML
3285
+ Parameters: {"theme"=>"professional_blue"}
3286
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3287
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
3288
+ Processing by PostsController#index as HTML
3289
+ Parameters: {"theme"=>"basic_blue"}
3290
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3291
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.2ms)
3292
+ Processing by PostsController#index as HTML
3293
+ Parameters: {"theme"=>"basic_blue"}
3294
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3295
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
3296
+ Processing by PostsController#new as HTML
3297
+ Parameters: {"theme"=>"basic_blue"}
3298
+ Rendered posts/_form.html.erb (13.0ms)
3299
+ Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 0.3ms)
3300
+ Processing by PostsController#new as HTML
3301
+ Parameters: {"theme"=>"basic_blue"}
3302
+ Rendered posts/_form.html.erb (2.1ms)
3303
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3304
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3305
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3306
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3307
+  (0.1ms) SELECT version FROM "schema_migrations"
3308
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3309
+ Processing by PostsController#index as HTML
3310
+ Parameters: {"theme"=>"professional_blue"}
3311
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
3312
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.3ms)
3313
+ Completed 200 OK in 49ms (Views: 46.4ms | ActiveRecord: 0.9ms)
3314
+ Processing by PostsController#index as HTML
3315
+ Parameters: {"theme"=>"professional_blue"}
3316
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3317
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
3318
+ Processing by PostsController#index as HTML
3319
+ Parameters: {"theme"=>"basic_blue"}
3320
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3321
+ Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.1ms)
3322
+ Processing by PostsController#index as HTML
3323
+ Parameters: {"theme"=>"basic_blue"}
3324
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3325
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
3326
+ Processing by PostsController#new as HTML
3327
+ Parameters: {"theme"=>"basic_blue"}
3328
+ Rendered posts/_form.html.erb (14.7ms)
3329
+ Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.3ms)
3330
+ Processing by PostsController#new as HTML
3331
+ Parameters: {"theme"=>"basic_blue"}
3332
+ Rendered posts/_form.html.erb (1.8ms)
3333
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3334
+ Connecting to database specified by database.yml
3335
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3336
+  (0.2ms) select sqlite_version(*)
3337
+  (2.5ms) DROP TABLE "posts"
3338
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
3339
+  (0.1ms) SELECT version FROM "schema_migrations"
3340
+ Connecting to database specified by database.yml
3341
+ Processing by PostsController#index as HTML
3342
+ Parameters: {"theme"=>"professional_blue"}
3343
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3344
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.5ms)
3345
+ Completed 200 OK in 37.9ms (Views: 36.6ms | ActiveRecord: 0.1ms)
3346
+ Processing by PostsController#index as HTML
3347
+ Parameters: {"theme"=>"professional_blue"}
3348
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3349
+ Completed 200 OK in 4.5ms (Views: 3.6ms | ActiveRecord: 0.1ms)
3350
+ Processing by PostsController#index as HTML
3351
+ Parameters: {"theme"=>"basic_blue"}
3352
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3353
+ Completed 200 OK in 4.5ms (Views: 3.6ms | ActiveRecord: 0.1ms)
3354
+ Processing by PostsController#index as HTML
3355
+ Parameters: {"theme"=>"basic_blue"}
3356
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3357
+ Completed 200 OK in 4.1ms (Views: 3.3ms | ActiveRecord: 0.1ms)
3358
+ Processing by PostsController#new as HTML
3359
+ Parameters: {"theme"=>"basic_blue"}
3360
+ Rendered posts/_form.html.erb (6.0ms)
3361
+ Completed 200 OK in 15.1ms (Views: 10.8ms | ActiveRecord: 0.0ms)
3362
+ Processing by PostsController#new as HTML
3363
+ Parameters: {"theme"=>"basic_blue"}
3364
+ Rendered posts/_form.html.erb (1.8ms)
3365
+ Completed 200 OK in 3.3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3366
+  (2.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3367
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3368
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3369
+  (0.1ms) SELECT version FROM "schema_migrations"
3370
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3371
+ Processing by PostsController#index as HTML
3372
+ Parameters: {"theme"=>"professional_blue"}
3373
+ Post Load (1.3ms) SELECT "posts".* FROM "posts"
3374
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (5.0ms)
3375
+ Completed 200 OK in 54ms (Views: 50.3ms | ActiveRecord: 1.3ms)
3376
+ Processing by PostsController#index as HTML
3377
+ Parameters: {"theme"=>"professional_blue"}
3378
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3379
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
3380
+ Processing by PostsController#index as HTML
3381
+ Parameters: {"theme"=>"basic_blue"}
3382
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
3383
+ Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.5ms)
3384
+ Processing by PostsController#index as HTML
3385
+ Parameters: {"theme"=>"basic_blue"}
3386
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3387
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
3388
+ Processing by PostsController#new as HTML
3389
+ Parameters: {"theme"=>"basic_blue"}
3390
+ Rendered posts/_form.html.erb (13.7ms)
3391
+ Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.3ms)
3392
+ Processing by PostsController#new as HTML
3393
+ Parameters: {"theme"=>"basic_blue"}
3394
+ Rendered posts/_form.html.erb (1.8ms)
3395
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
3396
+ Connecting to database specified by database.yml
3397
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3398
+  (0.2ms) select sqlite_version(*)
3399
+  (2.2ms) DROP TABLE "posts"
3400
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
3401
+  (0.1ms) SELECT version FROM "schema_migrations"
3402
+ Connecting to database specified by database.yml
3403
+ Processing by PostsController#index as HTML
3404
+ Parameters: {"theme"=>"professional_blue"}
3405
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3406
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.5ms)
3407
+ Completed 200 OK in 36.3ms (Views: 35.0ms | ActiveRecord: 0.1ms)
3408
+ Processing by PostsController#index as HTML
3409
+ Parameters: {"theme"=>"professional_blue"}
3410
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3411
+ Completed 200 OK in 4.4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
3412
+ Processing by PostsController#index as HTML
3413
+ Parameters: {"theme"=>"basic_blue"}
3414
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3415
+ Completed 200 OK in 4.9ms (Views: 4.0ms | ActiveRecord: 0.1ms)
3416
+ Processing by PostsController#index as HTML
3417
+ Parameters: {"theme"=>"basic_blue"}
3418
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3419
+ Completed 200 OK in 5.6ms (Views: 4.5ms | ActiveRecord: 0.1ms)
3420
+ Processing by PostsController#new as HTML
3421
+ Parameters: {"theme"=>"basic_blue"}
3422
+ Rendered posts/_form.html.erb (6.3ms)
3423
+ Completed 200 OK in 16.6ms (Views: 12.0ms | ActiveRecord: 0.0ms)
3424
+ Processing by PostsController#new as HTML
3425
+ Parameters: {"theme"=>"basic_blue"}
3426
+ Rendered posts/_form.html.erb (2.6ms)
3427
+ Completed 200 OK in 4.6ms (Views: 4.3ms | ActiveRecord: 0.0ms)
3428
+  (2.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3429
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3430
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3431
+  (0.1ms) SELECT version FROM "schema_migrations"
3432
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3433
+ Processing by PostsController#index as HTML
3434
+ Parameters: {"theme"=>"professional_blue"}
3435
+ Post Load (0.8ms) SELECT "posts".* FROM "posts"
3436
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (2.9ms)
3437
+ Completed 200 OK in 44ms (Views: 42.0ms | ActiveRecord: 0.8ms)
3438
+ Processing by PostsController#index as HTML
3439
+ Parameters: {"theme"=>"professional_blue"}
3440
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3441
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
3442
+ Processing by PostsController#index as HTML
3443
+ Parameters: {"theme"=>"basic_blue"}
3444
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3445
+ Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.1ms)
3446
+ Processing by PostsController#index as HTML
3447
+ Parameters: {"theme"=>"basic_blue"}
3448
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3449
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms)
3450
+ Processing by PostsController#new as HTML
3451
+ Parameters: {"theme"=>"basic_blue"}
3452
+ Rendered posts/_form.html.erb (16.9ms)
3453
+ Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.3ms)
3454
+ Processing by PostsController#new as HTML
3455
+ Parameters: {"theme"=>"basic_blue"}
3456
+ Rendered posts/_form.html.erb (1.7ms)
3457
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3458
+ Connecting to database specified by database.yml
3459
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3460
+  (0.2ms) select sqlite_version(*)
3461
+  (2.2ms) DROP TABLE "posts"
3462
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
3463
+  (0.1ms) SELECT version FROM "schema_migrations"
3464
+ Connecting to database specified by database.yml
3465
+ Processing by PostsController#index as HTML
3466
+ Parameters: {"theme"=>"professional_blue"}
3467
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3468
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.5ms)
3469
+ Completed 200 OK in 35.6ms (Views: 34.4ms | ActiveRecord: 0.1ms)
3470
+ Processing by PostsController#index as HTML
3471
+ Parameters: {"theme"=>"professional_blue"}
3472
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3473
+ Completed 200 OK in 4.7ms (Views: 3.8ms | ActiveRecord: 0.1ms)
3474
+ Processing by PostsController#index as HTML
3475
+ Parameters: {"theme"=>"basic_blue"}
3476
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3477
+ Completed 200 OK in 4.4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
3478
+ Processing by PostsController#index as HTML
3479
+ Parameters: {"theme"=>"basic_blue"}
3480
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3481
+ Completed 200 OK in 4.3ms (Views: 3.5ms | ActiveRecord: 0.1ms)
3482
+ Processing by PostsController#new as HTML
3483
+ Parameters: {"theme"=>"basic_blue"}
3484
+ Rendered posts/_form.html.erb (5.8ms)
3485
+ Completed 200 OK in 14.7ms (Views: 10.6ms | ActiveRecord: 0.0ms)
3486
+ Processing by PostsController#new as HTML
3487
+ Parameters: {"theme"=>"basic_blue"}
3488
+ Rendered posts/_form.html.erb (1.7ms)
3489
+ Completed 200 OK in 4.4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
3490
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3491
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3492
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3493
+  (0.1ms) SELECT version FROM "schema_migrations"
3494
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3495
+ Processing by PostsController#index as HTML
3496
+ Parameters: {"theme"=>"professional_blue"}
3497
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3498
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.3ms)
3499
+ Completed 200 OK in 20ms (Views: 16.9ms | ActiveRecord: 1.0ms)
3500
+ Processing by PostsController#index as HTML
3501
+ Parameters: {"theme"=>"professional_blue"}
3502
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3503
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
3504
+ Processing by PostsController#index as HTML
3505
+ Parameters: {"theme"=>"basic_blue"}
3506
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3507
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.2ms)
3508
+ Processing by PostsController#index as HTML
3509
+ Parameters: {"theme"=>"basic_blue"}
3510
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3511
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
3512
+ Processing by PostsController#new as HTML
3513
+ Parameters: {"theme"=>"basic_blue"}
3514
+ Rendered posts/_form.html.erb (20.0ms)
3515
+ Completed 200 OK in 33ms (Views: 31.8ms | ActiveRecord: 0.3ms)
3516
+ Processing by PostsController#new as HTML
3517
+ Parameters: {"theme"=>"basic_blue"}
3518
+ Rendered posts/_form.html.erb (1.8ms)
3519
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3520
+  (1.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3521
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3522
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3523
+  (0.1ms) SELECT version FROM "schema_migrations"
3524
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3525
+ Processing by PostsController#index as HTML
3526
+ Parameters: {"theme"=>"professional_blue"}
3527
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3528
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
3529
+ Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 1.0ms)
3530
+ Processing by PostsController#index as HTML
3531
+ Parameters: {"theme"=>"professional_blue"}
3532
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3533
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
3534
+ Processing by PostsController#index as HTML
3535
+ Parameters: {"theme"=>"basic_blue"}
3536
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3537
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.2ms)
3538
+ Processing by PostsController#index as HTML
3539
+ Parameters: {"theme"=>"basic_blue"}
3540
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3541
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
3542
+ Processing by PostsController#new as HTML
3543
+ Parameters: {"theme"=>"basic_blue"}
3544
+ Rendered posts/_form.html.erb (12.3ms)
3545
+ Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.3ms)
3546
+ Processing by PostsController#new as HTML
3547
+ Parameters: {"theme"=>"basic_blue"}
3548
+ Rendered posts/_form.html.erb (1.7ms)
3549
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3550
+  (2.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3551
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3552
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3553
+  (0.1ms) SELECT version FROM "schema_migrations"
3554
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3555
+ Processing by PostsController#index as HTML
3556
+ Parameters: {"theme"=>"professional_blue"}
3557
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3558
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
3559
+ Completed 200 OK in 19ms (Views: 16.1ms | ActiveRecord: 1.0ms)
3560
+ Processing by PostsController#index as HTML
3561
+ Parameters: {"theme"=>"professional_blue"}
3562
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3563
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
3564
+ Processing by PostsController#index as HTML
3565
+ Parameters: {"theme"=>"basic_blue"}
3566
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3567
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.1ms)
3568
+ Processing by PostsController#index as HTML
3569
+ Parameters: {"theme"=>"basic_blue"}
3570
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3571
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
3572
+ Processing by PostsController#new as HTML
3573
+ Parameters: {"theme"=>"basic_blue"}
3574
+ Rendered posts/_form.html.erb (13.5ms)
3575
+ Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.3ms)
3576
+ Processing by PostsController#new as HTML
3577
+ Parameters: {"theme"=>"basic_blue"}
3578
+ Rendered posts/_form.html.erb (1.8ms)
3579
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3580
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3581
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3582
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3583
+  (0.1ms) SELECT version FROM "schema_migrations"
3584
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3585
+ Processing by PostsController#index as HTML
3586
+ Parameters: {"theme"=>"professional_blue"}
3587
+ Post Load (1.1ms) SELECT "posts".* FROM "posts"
3588
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.8ms)
3589
+ Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 1.1ms)
3590
+ Processing by PostsController#index as HTML
3591
+ Parameters: {"theme"=>"professional_blue"}
3592
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3593
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms)
3594
+ Processing by PostsController#index as HTML
3595
+ Parameters: {"theme"=>"basic_blue"}
3596
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3597
+ Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms)
3598
+ Processing by PostsController#index as HTML
3599
+ Parameters: {"theme"=>"basic_blue"}
3600
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3601
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
3602
+ Processing by PostsController#new as HTML
3603
+ Parameters: {"theme"=>"basic_blue"}
3604
+ Rendered posts/_form.html.erb (18.5ms)
3605
+ Completed 200 OK in 42ms (Views: 40.6ms | ActiveRecord: 0.3ms)
3606
+ Processing by PostsController#new as HTML
3607
+ Parameters: {"theme"=>"basic_blue"}
3608
+ Rendered posts/_form.html.erb (1.9ms)
3609
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3610
+ Processing by PostsController#index as HTML
3611
+ Parameters: {"theme"=>"professional_blue"}
3612
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3613
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.3ms)
3614
+ Completed 200 OK in 27ms (Views: 23.8ms | ActiveRecord: 1.0ms)
3615
+ Processing by PostsController#index as HTML
3616
+ Parameters: {"theme"=>"professional_blue"}
3617
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3618
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
3619
+ Processing by PostsController#index as HTML
3620
+ Parameters: {"theme"=>"basic_blue"}
3621
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3622
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.1ms)
3623
+ Processing by PostsController#index as HTML
3624
+ Parameters: {"theme"=>"basic_blue"}
3625
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3626
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
3627
+ Processing by PostsController#new as HTML
3628
+ Parameters: {"theme"=>"basic_blue"}
3629
+ Rendered posts/_form.html.erb (15.0ms)
3630
+ Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.3ms)
3631
+ Processing by PostsController#new as HTML
3632
+ Parameters: {"theme"=>"basic_blue"}
3633
+ Rendered posts/_form.html.erb (1.8ms)
3634
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3635
+  (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3636
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3637
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3638
+  (0.1ms) SELECT version FROM "schema_migrations"
3639
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3640
+ Processing by PostsController#index as HTML
3641
+ Parameters: {"theme"=>"professional_blue"}
3642
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3643
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.1ms)
3644
+ Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 1.0ms)
3645
+ Processing by PostsController#index as HTML
3646
+ Parameters: {"theme"=>"professional_blue"}
3647
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3648
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
3649
+ Processing by PostsController#index as HTML
3650
+ Parameters: {"theme"=>"basic_blue"}
3651
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3652
+ Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.1ms)
3653
+ Processing by PostsController#index as HTML
3654
+ Parameters: {"theme"=>"basic_blue"}
3655
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3656
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
3657
+ Processing by PostsController#new as HTML
3658
+ Parameters: {"theme"=>"basic_blue"}
3659
+ Rendered posts/_form.html.erb (11.8ms)
3660
+ Completed 200 OK in 34ms (Views: 32.7ms | ActiveRecord: 0.3ms)
3661
+ Processing by PostsController#new as HTML
3662
+ Parameters: {"theme"=>"basic_blue"}
3663
+ Rendered posts/_form.html.erb (1.9ms)
3664
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3665
+  (2.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3666
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3667
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3668
+  (0.1ms) SELECT version FROM "schema_migrations"
3669
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3670
+ Processing by PostsController#index as HTML
3671
+ Parameters: {"theme"=>"professional_blue"}
3672
+ Post Load (0.9ms) SELECT "posts".* FROM "posts"
3673
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
3674
+ Completed 200 OK in 19ms (Views: 16.1ms | ActiveRecord: 0.9ms)
3675
+ Processing by PostsController#index as HTML
3676
+ Parameters: {"theme"=>"professional_blue"}
3677
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3678
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
3679
+ Processing by PostsController#index as HTML
3680
+ Parameters: {"theme"=>"basic_blue"}
3681
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3682
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.1ms)
3683
+ Processing by PostsController#index as HTML
3684
+ Parameters: {"theme"=>"basic_blue"}
3685
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3686
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
3687
+ Processing by PostsController#new as HTML
3688
+ Parameters: {"theme"=>"basic_blue"}
3689
+ Rendered posts/_form.html.erb (12.3ms)
3690
+ Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.3ms)
3691
+ Processing by PostsController#new as HTML
3692
+ Parameters: {"theme"=>"basic_blue"}
3693
+ Rendered posts/_form.html.erb (1.7ms)
3694
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3695
+  (2.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3696
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3697
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3698
+  (0.1ms) SELECT version FROM "schema_migrations"
3699
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3700
+ Processing by PostsController#index as HTML
3701
+ Parameters: {"theme"=>"professional_blue"}
3702
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3703
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
3704
+ Completed 200 OK in 19ms (Views: 16.0ms | ActiveRecord: 1.0ms)
3705
+ Processing by PostsController#index as HTML
3706
+ Parameters: {"theme"=>"professional_blue"}
3707
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3708
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
3709
+ Processing by PostsController#index as HTML
3710
+ Parameters: {"theme"=>"basic_blue"}
3711
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3712
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.1ms)
3713
+ Processing by PostsController#index as HTML
3714
+ Parameters: {"theme"=>"basic_blue"}
3715
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3716
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
3717
+ Processing by PostsController#new as HTML
3718
+ Parameters: {"theme"=>"basic_blue"}
3719
+ Rendered posts/_form.html.erb (12.8ms)
3720
+ Completed 200 OK in 25ms (Views: 24.3ms | ActiveRecord: 0.3ms)
3721
+ Processing by PostsController#new as HTML
3722
+ Parameters: {"theme"=>"basic_blue"}
3723
+ Rendered posts/_form.html.erb (1.8ms)
3724
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3725
+  (2.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3726
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3727
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3728
+  (0.1ms) SELECT version FROM "schema_migrations"
3729
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3730
+ Processing by PostsController#index as HTML
3731
+ Parameters: {"theme"=>"professional_blue"}
3732
+ Post Load (1.8ms) SELECT "posts".* FROM "posts"
3733
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (5.9ms)
3734
+ Completed 200 OK in 35ms (Views: 30.0ms | ActiveRecord: 1.8ms)
3735
+ Processing by PostsController#index as HTML
3736
+ Parameters: {"theme"=>"professional_blue"}
3737
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3738
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
3739
+ Processing by PostsController#index as HTML
3740
+ Parameters: {"theme"=>"basic_blue"}
3741
+ Post Load (0.3ms) SELECT "posts".* FROM "posts"
3742
+ Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.3ms)
3743
+ Processing by PostsController#index as HTML
3744
+ Parameters: {"theme"=>"basic_blue"}
3745
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3746
+ Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.2ms)
3747
+ Processing by PostsController#new as HTML
3748
+ Parameters: {"theme"=>"basic_blue"}
3749
+ Rendered posts/_form.html.erb (22.1ms)
3750
+ Completed 200 OK in 44ms (Views: 41.6ms | ActiveRecord: 0.5ms)
3751
+ Processing by PostsController#new as HTML
3752
+ Parameters: {"theme"=>"basic_blue"}
3753
+ Rendered posts/_form.html.erb (3.9ms)
3754
+ Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
3755
+ Processing by PostsController#index as HTML
3756
+ Parameters: {"theme"=>"professional_blue"}
3757
+ Post Load (1.1ms) SELECT "posts".* FROM "posts"
3758
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.6ms)
3759
+ Completed 200 OK in 36ms (Views: 32.7ms | ActiveRecord: 1.1ms)
3760
+ Processing by PostsController#index as HTML
3761
+ Parameters: {"theme"=>"professional_blue"}
3762
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3763
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
3764
+ Processing by PostsController#index as HTML
3765
+ Parameters: {"theme"=>"basic_blue"}
3766
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3767
+ Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.2ms)
3768
+ Processing by PostsController#index as HTML
3769
+ Parameters: {"theme"=>"basic_blue"}
3770
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3771
+ Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms)
3772
+ Processing by PostsController#new as HTML
3773
+ Parameters: {"theme"=>"basic_blue"}
3774
+ Rendered posts/_form.html.erb (15.4ms)
3775
+ Completed 200 OK in 46ms (Views: 44.6ms | ActiveRecord: 0.4ms)
3776
+ Processing by PostsController#new as HTML
3777
+ Parameters: {"theme"=>"basic_blue"}
3778
+ Rendered posts/_form.html.erb (2.9ms)
3779
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
3780
+  (2.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3781
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3782
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3783
+  (0.1ms) SELECT version FROM "schema_migrations"
3784
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3785
+ Processing by PostsController#index as HTML
3786
+ Parameters: {"theme"=>"professional_blue"}
3787
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3788
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
3789
+ Completed 200 OK in 32ms (Views: 29.4ms | ActiveRecord: 1.0ms)
3790
+ Processing by PostsController#index as HTML
3791
+ Parameters: {"theme"=>"professional_blue"}
3792
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3793
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
3794
+ Processing by PostsController#index as HTML
3795
+ Parameters: {"theme"=>"basic_blue"}
3796
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3797
+ Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.2ms)
3798
+ Processing by PostsController#index as HTML
3799
+ Parameters: {"theme"=>"basic_blue"}
3800
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3801
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
3802
+ Processing by PostsController#new as HTML
3803
+ Parameters: {"theme"=>"basic_blue"}
3804
+ Rendered posts/_form.html.erb (14.5ms)
3805
+ Completed 200 OK in 35ms (Views: 34.4ms | ActiveRecord: 0.3ms)
3806
+ Processing by PostsController#new as HTML
3807
+ Parameters: {"theme"=>"basic_blue"}
3808
+ Rendered posts/_form.html.erb (1.9ms)
3809
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3810
+ Connecting to database specified by database.yml
3811
+ Processing by PostsController#index as HTML
3812
+ Parameters: {"theme"=>"professional_blue"}
3813
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3814
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.6ms)
3815
+ Completed 200 OK in 10.8ms (Views: 9.5ms | ActiveRecord: 0.1ms)
3816
+ Processing by PostsController#index as HTML
3817
+ Parameters: {"theme"=>"professional_blue"}
3818
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3819
+ Completed 200 OK in 4.5ms (Views: 3.8ms | ActiveRecord: 0.1ms)
3820
+ Processing by PostsController#index as HTML
3821
+ Parameters: {"theme"=>"basic_blue"}
3822
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3823
+ Completed 200 OK in 5.2ms (Views: 4.5ms | ActiveRecord: 0.1ms)
3824
+ Processing by PostsController#index as HTML
3825
+ Parameters: {"theme"=>"basic_blue"}
3826
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3827
+ Completed 200 OK in 5.0ms (Views: 4.2ms | ActiveRecord: 0.1ms)
3828
+ Processing by PostsController#new as HTML
3829
+ Parameters: {"theme"=>"basic_blue"}
3830
+ Rendered posts/_form.html.erb (13.2ms)
3831
+ Completed 200 OK in 25.5ms (Views: 21.6ms | ActiveRecord: 0.0ms)
3832
+ Processing by PostsController#new as HTML
3833
+ Parameters: {"theme"=>"basic_blue"}
3834
+ Rendered posts/_form.html.erb (1.6ms)
3835
+ Completed 200 OK in 2.9ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3836
+ Processing by PostsController#index as HTML
3837
+ Parameters: {"theme"=>"professional_blue"}
3838
+ Post Load (1.1ms) SELECT "posts".* FROM "posts"
3839
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
3840
+ Completed 200 OK in 23ms (Views: 20.1ms | ActiveRecord: 1.1ms)
3841
+ Processing by PostsController#index as HTML
3842
+ Parameters: {"theme"=>"professional_blue"}
3843
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3844
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.2ms)
3845
+ Processing by PostsController#index as HTML
3846
+ Parameters: {"theme"=>"basic_blue"}
3847
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3848
+ Completed 200 OK in 21ms (Views: 21.0ms | ActiveRecord: 0.1ms)
3849
+ Processing by PostsController#index as HTML
3850
+ Parameters: {"theme"=>"basic_blue"}
3851
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3852
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
3853
+ Processing by PostsController#new as HTML
3854
+ Parameters: {"theme"=>"basic_blue"}
3855
+ Rendered posts/_form.html.erb (13.8ms)
3856
+ Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 0.3ms)
3857
+ Processing by PostsController#new as HTML
3858
+ Parameters: {"theme"=>"basic_blue"}
3859
+ Rendered posts/_form.html.erb (1.8ms)
3860
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3861
+  (2.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3862
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3863
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3864
+  (0.1ms) SELECT version FROM "schema_migrations"
3865
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3866
+ Processing by PostsController#index as HTML
3867
+ Parameters: {"theme"=>"professional_blue"}
3868
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3869
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.4ms)
3870
+ Completed 200 OK in 32ms (Views: 29.0ms | ActiveRecord: 1.0ms)
3871
+ Processing by PostsController#index as HTML
3872
+ Parameters: {"theme"=>"professional_blue"}
3873
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3874
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
3875
+ Processing by PostsController#index as HTML
3876
+ Parameters: {"theme"=>"basic_blue"}
3877
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3878
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.1ms)
3879
+ Processing by PostsController#index as HTML
3880
+ Parameters: {"theme"=>"basic_blue"}
3881
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3882
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)
3883
+ Processing by PostsController#new as HTML
3884
+ Parameters: {"theme"=>"basic_blue"}
3885
+ Rendered posts/_form.html.erb (13.3ms)
3886
+ Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.3ms)
3887
+ Processing by PostsController#new as HTML
3888
+ Parameters: {"theme"=>"basic_blue"}
3889
+ Rendered posts/_form.html.erb (1.7ms)
3890
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3891
+  (2.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3892
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3893
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3894
+  (0.1ms) SELECT version FROM "schema_migrations"
3895
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3896
+ Processing by PostsController#index as HTML
3897
+ Parameters: {"theme"=>"professional_blue"}
3898
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
3899
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
3900
+ Completed 200 OK in 26ms (Views: 23.2ms | ActiveRecord: 1.0ms)
3901
+ Processing by PostsController#index as HTML
3902
+ Parameters: {"theme"=>"professional_blue"}
3903
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3904
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)
3905
+ Processing by PostsController#index as HTML
3906
+ Parameters: {"theme"=>"basic_blue"}
3907
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3908
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.1ms)
3909
+ Processing by PostsController#index as HTML
3910
+ Parameters: {"theme"=>"basic_blue"}
3911
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3912
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
3913
+ Processing by PostsController#new as HTML
3914
+ Parameters: {"theme"=>"basic_blue"}
3915
+ Rendered posts/_form.html.erb (13.2ms)
3916
+ Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.3ms)
3917
+ Processing by PostsController#new as HTML
3918
+ Parameters: {"theme"=>"basic_blue"}
3919
+ Rendered posts/_form.html.erb (1.8ms)
3920
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
3921
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3922
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3923
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3924
+  (0.1ms) SELECT version FROM "schema_migrations"
3925
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3926
+ Processing by PostsController#index as HTML
3927
+ Parameters: {"theme"=>"professional_blue"}
3928
+ Post Load (1.1ms) SELECT "posts".* FROM "posts"
3929
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.5ms)
3930
+ Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 1.1ms)
3931
+ Processing by PostsController#index as HTML
3932
+ Parameters: {"theme"=>"professional_blue"}
3933
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
3934
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
3935
+ Processing by PostsController#index as HTML
3936
+ Parameters: {"theme"=>"basic_blue"}
3937
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3938
+ Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.1ms)
3939
+ Processing by PostsController#index as HTML
3940
+ Parameters: {"theme"=>"basic_blue"}
3941
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3942
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
3943
+ Processing by PostsController#new as HTML
3944
+ Parameters: {"theme"=>"basic_blue"}
3945
+ Rendered posts/_form.html.erb (13.3ms)
3946
+ Completed 200 OK in 36ms (Views: 34.6ms | ActiveRecord: 0.3ms)
3947
+ Processing by PostsController#new as HTML
3948
+ Parameters: {"theme"=>"basic_blue"}
3949
+ Rendered posts/_form.html.erb (1.7ms)
3950
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3951
+ Connecting to database specified by database.yml
3952
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3953
+  (0.6ms) select sqlite_version(*)
3954
+  (1.1ms) DROP TABLE "posts"
3955
+  (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime)
3956
+  (0.1ms) SELECT version FROM "schema_migrations"
3957
+ Connecting to database specified by database.yml
3958
+ Processing by PostsController#index as HTML
3959
+ Parameters: {"theme"=>"professional_blue"}
3960
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
3961
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (1.6ms)
3962
+ Completed 200 OK in 10.8ms (Views: 9.6ms | ActiveRecord: 0.2ms)
3963
+ Processing by PostsController#index as HTML
3964
+ Parameters: {"theme"=>"professional_blue"}
3965
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3966
+ Completed 200 OK in 4.6ms (Views: 3.8ms | ActiveRecord: 0.1ms)
3967
+ Processing by PostsController#index as HTML
3968
+ Parameters: {"theme"=>"basic_blue"}
3969
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
3970
+ Completed 200 OK in 5.3ms (Views: 4.6ms | ActiveRecord: 0.1ms)
3971
+ Processing by PostsController#index as HTML
3972
+ Parameters: {"theme"=>"basic_blue"}
3973
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3974
+ Completed 200 OK in 5.0ms (Views: 4.2ms | ActiveRecord: 0.1ms)
3975
+ Processing by PostsController#new as HTML
3976
+ Parameters: {"theme"=>"basic_blue"}
3977
+ Rendered posts/_form.html.erb (10.1ms)
3978
+ Completed 200 OK in 19.3ms (Views: 15.5ms | ActiveRecord: 0.0ms)
3979
+ Processing by PostsController#new as HTML
3980
+ Parameters: {"theme"=>"basic_blue"}
3981
+ Rendered posts/_form.html.erb (1.8ms)
3982
+ Completed 200 OK in 3.1ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3983
+  (2.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
3984
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3985
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3986
+  (0.1ms) SELECT version FROM "schema_migrations"
3987
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
3988
+ Processing by PostsController#index as HTML
3989
+ Parameters: {"theme"=>"professional_blue"}
3990
+ Post Load (1.1ms) SELECT "posts".* FROM "posts"
3991
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.4ms)
3992
+ Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 1.1ms)
3993
+ Processing by PostsController#index as HTML
3994
+ Parameters: {"theme"=>"professional_blue"}
3995
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
3996
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
3997
+ Processing by PostsController#index as HTML
3998
+ Parameters: {"theme"=>"basic_blue"}
3999
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
4000
+ Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms)
4001
+ Processing by PostsController#index as HTML
4002
+ Parameters: {"theme"=>"basic_blue"}
4003
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
4004
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
4005
+ Processing by PostsController#new as HTML
4006
+ Parameters: {"theme"=>"basic_blue"}
4007
+ Rendered posts/_form.html.erb (16.7ms)
4008
+ Completed 200 OK in 37ms (Views: 35.7ms | ActiveRecord: 0.3ms)
4009
+ Processing by PostsController#new as HTML
4010
+ Parameters: {"theme"=>"basic_blue"}
4011
+ Rendered posts/_form.html.erb (1.9ms)
4012
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
4013
+  (2.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "created_at" datetime, "updated_at" datetime) 
4014
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4015
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4016
+  (0.1ms) SELECT version FROM "schema_migrations"
4017
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20131120082307')
4018
+ Processing by PostsController#index as HTML
4019
+ Parameters: {"theme"=>"professional_blue"}
4020
+ Post Load (1.0ms) SELECT "posts".* FROM "posts"
4021
+ Rendered app/themes/professional_blue/views/posts/index.html.erb within layouts/professional_blue (3.2ms)
4022
+ Completed 200 OK in 33ms (Views: 30.4ms | ActiveRecord: 1.0ms)
4023
+ Processing by PostsController#index as HTML
4024
+ Parameters: {"theme"=>"professional_blue"}
4025
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
4026
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
4027
+ Processing by PostsController#index as HTML
4028
+ Parameters: {"theme"=>"basic_blue"}
4029
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
4030
+ Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms)
4031
+ Processing by PostsController#index as HTML
4032
+ Parameters: {"theme"=>"basic_blue"}
4033
+ Post Load (0.1ms) SELECT "posts".* FROM "posts"
4034
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
4035
+ Processing by PostsController#new as HTML
4036
+ Parameters: {"theme"=>"basic_blue"}
4037
+ Rendered posts/_form.html.erb (13.5ms)
4038
+ Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.3ms)
4039
+ Processing by PostsController#new as HTML
4040
+ Parameters: {"theme"=>"basic_blue"}
4041
+ Rendered posts/_form.html.erb (2.1ms)
4042
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)