api_engine 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +20 -0
  3. data/README.md +33 -0
  4. data/Rakefile +16 -0
  5. data/app/assets/javascripts/api_engine/application.js +15 -0
  6. data/app/assets/stylesheets/api_engine/application.css +13 -0
  7. data/app/controllers/api_engine/application_controller.rb +90 -0
  8. data/app/helpers/api_engine/application_helper.rb +4 -0
  9. data/app/views/layouts/api_engine/application.html.erb +14 -0
  10. data/config/routes.rb +11 -0
  11. data/lib/api_engine.rb +6 -0
  12. data/lib/api_engine/config.rb +24 -0
  13. data/lib/api_engine/engine.rb +13 -0
  14. data/lib/api_engine/version.rb +3 -0
  15. data/lib/generators/api_engine/config_generator.rb +16 -0
  16. data/lib/generators/api_engine/templates/api_engine_config.rb +9 -0
  17. data/lib/tasks/api_engine_tasks.rake +4 -0
  18. data/spec/dummy/README.rdoc +261 -0
  19. data/spec/dummy/Rakefile +7 -0
  20. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  21. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  22. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  23. data/spec/dummy/app/controllers/posts_controller.rb +3 -0
  24. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  25. data/spec/dummy/app/models/post.rb +3 -0
  26. data/spec/dummy/app/serializers/post_serializer.rb +3 -0
  27. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/spec/dummy/config.ru +4 -0
  29. data/spec/dummy/config/application.rb +65 -0
  30. data/spec/dummy/config/boot.rb +10 -0
  31. data/spec/dummy/config/database.yml +24 -0
  32. data/spec/dummy/config/environment.rb +5 -0
  33. data/spec/dummy/config/environments/development.rb +37 -0
  34. data/spec/dummy/config/environments/production.rb +67 -0
  35. data/spec/dummy/config/environments/test.rb +37 -0
  36. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  37. data/spec/dummy/config/initializers/inflections.rb +15 -0
  38. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  39. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  40. data/spec/dummy/config/initializers/session_store.rb +8 -0
  41. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  42. data/spec/dummy/config/locales/en.yml +5 -0
  43. data/spec/dummy/config/routes.rb +3 -0
  44. data/spec/dummy/db/development.sqlite3 +0 -0
  45. data/spec/dummy/db/migrate/20130408032158_create_posts.rb +9 -0
  46. data/spec/dummy/db/schema.rb +22 -0
  47. data/spec/dummy/db/test.sqlite3 +0 -0
  48. data/spec/dummy/log/development.log +1557 -0
  49. data/spec/dummy/log/test.log +14900 -0
  50. data/spec/dummy/public/404.html +26 -0
  51. data/spec/dummy/public/422.html +26 -0
  52. data/spec/dummy/public/500.html +25 -0
  53. data/spec/dummy/public/favicon.ico +0 -0
  54. data/spec/dummy/script/rails +6 -0
  55. data/spec/requests/configuration_spec.rb +42 -0
  56. data/spec/requests/default_api_spec.rb +138 -0
  57. data/spec/spec_helper.rb +27 -0
  58. metadata +238 -0
Binary file
@@ -0,0 +1,1557 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+  (0.7ms) select sqlite_version(*)
5
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
8
+ Migrating to CreatePosts (20130407200620)
9
+  (0.0ms) begin transaction
10
+  (0.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
11
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130407200620')
12
+  (1.1ms) commit transaction
13
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
14
+ Connecting to database specified by database.yml
15
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16
+  (0.3ms) select sqlite_version(*)
17
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
18
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
19
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20
+  (0.1ms) SELECT version FROM "schema_migrations"
21
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
22
+ Connecting to database specified by database.yml
23
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
24
+  (0.3ms) select sqlite_version(*)
25
+  (2.5ms) DROP TABLE "posts"
26
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
27
+  (0.1ms) SELECT version FROM "schema_migrations"
28
+ Connecting to database specified by database.yml
29
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
30
+  (0.2ms) select sqlite_version(*)
31
+  (2.7ms) DROP TABLE "posts"
32
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
33
+  (0.1ms) SELECT version FROM "schema_migrations"
34
+ Connecting to database specified by database.yml
35
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
36
+  (0.5ms) select sqlite_version(*)
37
+  (3.3ms) DROP TABLE "posts"
38
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
39
+  (0.1ms) SELECT version FROM "schema_migrations"
40
+ Connecting to database specified by database.yml
41
+
42
+
43
+ Started GET "/" for 127.0.0.1 at 2013-04-07 15:13:14 -0500
44
+
45
+ ActionController::RoutingError (No route matches [GET] "/"):
46
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
47
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
48
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
49
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
50
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
51
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
52
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
53
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
54
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
55
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
56
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
57
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
58
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
59
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
60
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
61
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
62
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
63
+ /Users/steve/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
64
+ /Users/steve/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
65
+ /Users/steve/.rbenv/versions/2.0.0-p0/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
66
+
67
+
68
+ Rendered /Users/steve/.rbenv/versions/2.0.0-p0/lib/ruby/gems/2.0.0/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.1ms)
69
+
70
+
71
+ Started GET "/posts" for 127.0.0.1 at 2013-04-07 15:13:18 -0500
72
+ Processing by PostsController#index as HTML
73
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" 
74
+ Completed 200 OK in 41ms (Views: 0.4ms | ActiveRecord: 2.8ms)
75
+ Connecting to database specified by database.yml
76
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
77
+  (0.4ms) select sqlite_version(*)
78
+  (5232.9ms) DROP TABLE "posts"
79
+ SQLite3::BusyException: database is locked: DROP TABLE "posts"
80
+ Connecting to database specified by database.yml
81
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
82
+  (0.3ms) select sqlite_version(*)
83
+  (6.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
84
+  (18.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
85
+  (5.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
86
+  (0.1ms) SELECT version FROM "schema_migrations"
87
+  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
88
+ Connecting to database specified by database.yml
89
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
90
+  (0.3ms) select sqlite_version(*)
91
+  (5054.1ms) DROP TABLE "posts"
92
+ SQLite3::BusyException: database is locked: DROP TABLE "posts"
93
+ Connecting to database specified by database.yml
94
+  (1.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
95
+  (0.3ms) select sqlite_version(*)
96
+  (5.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
97
+  (9.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
98
+  (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
99
+  (0.2ms) SELECT version FROM "schema_migrations"
100
+  (6.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
101
+ Connecting to database specified by database.yml
102
+  (17.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
103
+  (3.0ms) select sqlite_version(*)
104
+  (14.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
105
+  (17.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
106
+  (24.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
107
+  (0.1ms) SELECT version FROM "schema_migrations"
108
+  (21.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
109
+ Connecting to database specified by database.yml
110
+  (3.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
111
+  (6.2ms) select sqlite_version(*)
112
+  (34.6ms) DROP TABLE "posts"
113
+  (6.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
114
+  (5.4ms) SELECT version FROM "schema_migrations"
115
+ Connecting to database specified by database.yml
116
+  (19.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
117
+  (1.7ms) select sqlite_version(*)
118
+  (13.6ms) DROP TABLE "posts"
119
+  (4.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
120
+  (1.5ms) SELECT version FROM "schema_migrations"
121
+ Connecting to database specified by database.yml
122
+  (18.5ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
123
+  (3.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
124
+  (0.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
125
+ Migrating to CreatePosts (20130407200620)
126
+  (0.1ms) BEGIN
127
+  (10.8ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
128
+  (1.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130407200620')
129
+  (0.4ms) COMMIT
130
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
131
+ Connecting to database specified by database.yml
132
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
133
+  (117.6ms) DROP DATABASE IF EXISTS "api_test"
134
+  (324.5ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
135
+  (5.6ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
136
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
137
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
138
+  (0.2ms) SELECT version FROM "schema_migrations"
139
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
140
+ Connecting to database specified by database.yml
141
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
142
+  (116.1ms) DROP DATABASE IF EXISTS "api_test"
143
+  (321.7ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
144
+  (5.1ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
145
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
146
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
147
+  (0.2ms) SELECT version FROM "schema_migrations"
148
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
149
+ Connecting to database specified by database.yml
150
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
151
+  (113.8ms) DROP DATABASE IF EXISTS "api_test"
152
+  (685.9ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
153
+  (6.4ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
154
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
155
+  (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
156
+  (0.4ms) SELECT version FROM "schema_migrations"
157
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
158
+ Connecting to database specified by database.yml
159
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
160
+  (120.0ms) DROP DATABASE IF EXISTS "api_test"
161
+  (335.2ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
162
+  (7.7ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
163
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
164
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
165
+  (0.2ms) SELECT version FROM "schema_migrations"
166
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
167
+ Connecting to database specified by database.yml
168
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
169
+  (117.9ms) DROP DATABASE IF EXISTS "api_test"
170
+  (243.7ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
171
+  (7.0ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
172
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
173
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
174
+  (0.2ms) SELECT version FROM "schema_migrations"
175
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
176
+ Connecting to database specified by database.yml
177
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
178
+  (112.4ms) DROP DATABASE IF EXISTS "api_test"
179
+  (244.8ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
180
+  (6.6ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
181
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
182
+  (57.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
183
+  (0.4ms) SELECT version FROM "schema_migrations"
184
+  (5.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
185
+ Connecting to database specified by database.yml
186
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
187
+  (116.3ms) DROP DATABASE IF EXISTS "api_test"
188
+  (241.7ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
189
+  (202.4ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
190
+  (3.5ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
191
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
192
+  (0.2ms) SELECT version FROM "schema_migrations"
193
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
194
+ Connecting to database specified by database.yml
195
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
196
+  (118.2ms) DROP DATABASE IF EXISTS "api_test"
197
+  (247.1ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
198
+  (196.9ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
199
+  (3.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
200
+  (2.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
201
+  (0.4ms) SELECT version FROM "schema_migrations"
202
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
203
+ Connecting to database specified by database.yml
204
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
205
+  (117.6ms) DROP DATABASE IF EXISTS "api_test"
206
+  (244.9ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
207
+  (5.6ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
208
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
209
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
210
+  (0.2ms) SELECT version FROM "schema_migrations"
211
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
212
+ Connecting to database specified by database.yml
213
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
214
+  (116.1ms) DROP DATABASE IF EXISTS "api_test"
215
+  (257.4ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
216
+  (5.1ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
217
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
218
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
219
+  (0.8ms) SELECT version FROM "schema_migrations"
220
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
221
+ Connecting to database specified by database.yml
222
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
223
+  (115.5ms) DROP DATABASE IF EXISTS "api_test"
224
+  (303.3ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
225
+  (4.8ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
226
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
227
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
228
+  (0.2ms) SELECT version FROM "schema_migrations"
229
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
230
+ Connecting to database specified by database.yml
231
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
232
+  (114.9ms) DROP DATABASE IF EXISTS "api_test"
233
+  (248.0ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
234
+  (198.9ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
235
+  (3.6ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
236
+  (9.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
237
+  (1.0ms) SELECT version FROM "schema_migrations"
238
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
239
+ Connecting to database specified by database.yml
240
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
241
+  (115.2ms) DROP DATABASE IF EXISTS "api_test"
242
+  (242.3ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
243
+  (4.8ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
244
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
245
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
246
+  (0.3ms) SELECT version FROM "schema_migrations"
247
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
248
+ Connecting to database specified by database.yml
249
+
250
+
251
+ Started GET "/" for 127.0.0.1 at 2013-04-07 16:08:42 -0500
252
+
253
+ ActionController::RoutingError (No route matches [GET] "/"):
254
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
255
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
256
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
257
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
258
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
259
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
260
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
261
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
262
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
263
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
264
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
265
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
266
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
267
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
268
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
269
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
270
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
271
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
272
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
273
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
274
+
275
+
276
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (5.3ms)
277
+
278
+
279
+ Started GET "/api/posts" for 127.0.0.1 at 2013-04-07 16:08:48 -0500
280
+
281
+ ActionController::RoutingError (No route matches [GET] "/api/posts"):
282
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
283
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
284
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
285
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
286
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
287
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
288
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
289
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
290
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
291
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
292
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
293
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
294
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
295
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
296
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
297
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
298
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
299
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
300
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
301
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
302
+
303
+
304
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
305
+
306
+
307
+ Started GET "/posts" for 127.0.0.1 at 2013-04-07 16:09:11 -0500
308
+ Processing by PostsController#index as HTML
309
+ Post Load (0.5ms) SELECT "posts".* FROM "posts" 
310
+ Completed 200 OK in 44ms (Views: 0.2ms | ActiveRecord: 8.2ms)
311
+ Connecting to database specified by database.yml
312
+ Connecting to database specified by database.yml
313
+ Connecting to database specified by database.yml
314
+ Connecting to database specified by database.yml
315
+
316
+
317
+ Started GET "/posts" for 127.0.0.1 at 2013-04-07 16:13:32 -0500
318
+ Processing by PostsController#index as HTML
319
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" 
320
+ Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 7.4ms)
321
+ Connecting to database specified by database.yml
322
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
323
+  (121.6ms) DROP DATABASE IF EXISTS "api_test"
324
+  (329.0ms) CREATE DATABASE "api_test" ENCODING = 'unicode'
325
+  (4.8ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
326
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
327
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
328
+  (0.3ms) SELECT version FROM "schema_migrations"
329
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
330
+ Connecting to database specified by database.yml
331
+  (0.2ms) select sqlite_version(*)
332
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
333
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
334
+  (2.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
335
+ Connecting to database specified by database.yml
336
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
337
+ Migrating to CreatePosts (20130407200620)
338
+  (0.1ms) select sqlite_version(*)
339
+  (0.0ms) begin transaction
340
+  (0.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
341
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130407200620')
342
+  (2.2ms) commit transaction
343
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
344
+ Connecting to database specified by database.yml
345
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
346
+  (0.2ms) select sqlite_version(*)
347
+  (1.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
348
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
349
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
350
+  (0.1ms) SELECT version FROM "schema_migrations"
351
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
352
+ Connecting to database specified by database.yml
353
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
354
+  (0.3ms) select sqlite_version(*)
355
+  (2.5ms) DROP TABLE "posts"
356
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
357
+  (0.1ms) SELECT version FROM "schema_migrations"
358
+ Connecting to database specified by database.yml
359
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
360
+  (0.3ms) select sqlite_version(*)
361
+  (2.5ms) DROP TABLE "posts"
362
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
363
+  (0.1ms) SELECT version FROM "schema_migrations"
364
+ Connecting to database specified by database.yml
365
+  (3.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
366
+  (0.2ms) select sqlite_version(*)
367
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
368
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
369
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
370
+  (0.0ms) SELECT version FROM "schema_migrations"
371
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
372
+ Connecting to database specified by database.yml
373
+  (2.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
374
+ Migrating to CreatePosts (20130407200620)
375
+  (0.1ms) select sqlite_version(*)
376
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
377
+ Connecting to database specified by database.yml
378
+  (2.5ms) select sqlite_version(*)
379
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
380
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
381
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
382
+  (0.1ms) SELECT version FROM "schema_migrations"
383
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
384
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
385
+ Connecting to database specified by database.yml
386
+  (2.3ms) select sqlite_version(*)
387
+  (3.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
388
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
389
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
390
+  (0.1ms) SELECT version FROM "schema_migrations"
391
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
392
+  (2.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
393
+ Connecting to database specified by database.yml
394
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
395
+  (0.2ms) select sqlite_version(*)
396
+  (203.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
397
+  (7.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
398
+  (5.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
399
+  (0.1ms) SELECT version FROM "schema_migrations"
400
+  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130407200620')
401
+ Connecting to database specified by database.yml
402
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
403
+  (0.3ms) select sqlite_version(*)
404
+  (3.9ms) DROP TABLE "posts"
405
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
406
+  (0.1ms) SELECT version FROM "schema_migrations"
407
+ Connecting to database specified by database.yml
408
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
409
+  (0.3ms) select sqlite_version(*)
410
+  (2.6ms) DROP TABLE "posts"
411
+  (1.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
412
+  (0.2ms) SELECT version FROM "schema_migrations"
413
+ Connecting to database specified by database.yml
414
+ Connecting to database specified by database.yml
415
+ Connecting to database specified by database.yml
416
+  (0.1ms) select sqlite_version(*)
417
+  (2.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
418
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
419
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
420
+ Connecting to database specified by database.yml
421
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
422
+ Migrating to CreatePosts (20130408032158)
423
+  (0.1ms) select sqlite_version(*)
424
+  (0.1ms) begin transaction
425
+  (0.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
426
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130408032158')
427
+  (2.5ms) commit transaction
428
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
429
+ Connecting to database specified by database.yml
430
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
431
+  (0.2ms) select sqlite_version(*)
432
+  (2.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
433
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
434
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
435
+  (0.1ms) SELECT version FROM "schema_migrations"
436
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130408032158')
437
+ Connecting to database specified by database.yml
438
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
439
+  (0.3ms) select sqlite_version(*)
440
+  (3.5ms) DROP TABLE "posts"
441
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
442
+  (0.1ms) SELECT version FROM "schema_migrations"
443
+ Connecting to database specified by database.yml
444
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
445
+  (0.3ms) select sqlite_version(*)
446
+  (2.4ms) DROP TABLE "posts"
447
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
448
+  (0.1ms) SELECT version FROM "schema_migrations"
449
+ Connecting to database specified by database.yml
450
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
451
+  (0.3ms) select sqlite_version(*)
452
+  (3.6ms) DROP TABLE "posts"
453
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
454
+  (0.1ms) SELECT version FROM "schema_migrations"
455
+ Connecting to database specified by database.yml
456
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
457
+  (0.3ms) select sqlite_version(*)
458
+  (2.4ms) DROP TABLE "posts"
459
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
460
+  (0.1ms) SELECT version FROM "schema_migrations"
461
+ Connecting to database specified by database.yml
462
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
463
+  (0.3ms) select sqlite_version(*)
464
+  (2.0ms) DROP TABLE "posts"
465
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
466
+  (0.1ms) SELECT version FROM "schema_migrations"
467
+ Connecting to database specified by database.yml
468
+  (3.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
469
+  (0.3ms) select sqlite_version(*)
470
+  (2.9ms) DROP TABLE "posts"
471
+  (1.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
472
+  (0.1ms) SELECT version FROM "schema_migrations"
473
+ Connecting to database specified by database.yml
474
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
475
+  (0.3ms) select sqlite_version(*)
476
+  (2.5ms) DROP TABLE "posts"
477
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
478
+  (0.1ms) SELECT version FROM "schema_migrations"
479
+ Connecting to database specified by database.yml
480
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
481
+  (0.3ms) select sqlite_version(*)
482
+  (2.2ms) DROP TABLE "posts"
483
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
484
+  (0.1ms) SELECT version FROM "schema_migrations"
485
+ Connecting to database specified by database.yml
486
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
487
+  (0.3ms) select sqlite_version(*)
488
+  (2.4ms) DROP TABLE "posts"
489
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
490
+  (0.1ms) SELECT version FROM "schema_migrations"
491
+ Connecting to database specified by database.yml
492
+  (3.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
493
+  (0.3ms) select sqlite_version(*)
494
+  (1.8ms) DROP TABLE "posts"
495
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
496
+  (0.5ms) SELECT version FROM "schema_migrations"
497
+ Connecting to database specified by database.yml
498
+ Connecting to database specified by database.yml
499
+ Connecting to database specified by database.yml
500
+ Connecting to database specified by database.yml
501
+ Connecting to database specified by database.yml
502
+ Connecting to database specified by database.yml
503
+ Connecting to database specified by database.yml
504
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
505
+  (0.3ms) select sqlite_version(*)
506
+  (1.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
507
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
508
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
509
+  (0.1ms) SELECT version FROM "schema_migrations"
510
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130408032158')
511
+ Connecting to database specified by database.yml
512
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
513
+  (0.3ms) select sqlite_version(*)
514
+  (2.6ms) DROP TABLE "posts"
515
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
516
+  (0.1ms) SELECT version FROM "schema_migrations"
517
+ Connecting to database specified by database.yml
518
+ Connecting to database specified by database.yml
519
+ Connecting to database specified by database.yml
520
+  (2.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
521
+  (0.4ms) select sqlite_version(*)
522
+  (2.1ms) DROP TABLE "posts"
523
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
524
+  (0.1ms) SELECT version FROM "schema_migrations"
525
+ Connecting to database specified by database.yml
526
+ Connecting to database specified by database.yml
527
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
528
+  (0.3ms) select sqlite_version(*)
529
+  (1.3ms) DROP TABLE "posts"
530
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
531
+  (0.1ms) SELECT version FROM "schema_migrations"
532
+ Connecting to database specified by database.yml
533
+ Connecting to database specified by database.yml
534
+
535
+
536
+ Started GET "/api/posts" for 127.0.0.1 at 2013-04-07 22:54:12 -0500
537
+
538
+ ActionController::RoutingError (No route matches [GET] "/api/posts"):
539
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
540
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
541
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
542
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
543
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
544
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
545
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
546
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
547
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
548
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
549
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
550
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
551
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
552
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
553
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
554
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
555
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
556
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
557
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
558
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
559
+
560
+
561
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (5.0ms)
562
+
563
+
564
+ Started GET "/api/posts" for 127.0.0.1 at 2013-04-07 22:55:25 -0500
565
+
566
+ AbstractController::ActionNotFound (The action 'show' could not be found for Api::ApplicationController):
567
+ actionpack (3.2.13) lib/abstract_controller/base.rb:116:in `process'
568
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
569
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
570
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
571
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
572
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
573
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
574
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
575
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
576
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
577
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
578
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
579
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
580
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
581
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
582
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
583
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
584
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
585
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
586
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
587
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
588
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
589
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
590
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
591
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
592
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
593
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
594
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
595
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
596
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
597
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1585004687824188366__call__3445783787554682766__callbacks'
598
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
599
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
600
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
601
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
602
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
603
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
604
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
605
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
606
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
607
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
608
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
609
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
610
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
611
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
612
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
613
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
614
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
615
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
616
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
617
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
618
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
619
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
620
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
621
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
622
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
623
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
624
+
625
+
626
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
627
+ Connecting to database specified by database.yml
628
+  (3.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
629
+  (0.3ms) select sqlite_version(*)
630
+  (1.3ms) DROP TABLE "posts"
631
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
632
+  (0.1ms) SELECT version FROM "schema_migrations"
633
+ Connecting to database specified by database.yml
634
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
635
+  (0.3ms) select sqlite_version(*)
636
+  (1.3ms) DROP TABLE "posts"
637
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
638
+  (0.1ms) SELECT version FROM "schema_migrations"
639
+
640
+
641
+ Started GET "/api/posts" for 127.0.0.1 at 2013-04-07 22:57:39 -0500
642
+ Processing by Api::ApplicationController#show as HTML
643
+ Completed 404 Not Found in 4ms
644
+
645
+ ActiveRecord::RecordNotFound (Couldn't find Post without an ID):
646
+ activerecord (3.2.13) lib/active_record/relation/finder_methods.rb:312:in `find_with_ids'
647
+ activerecord (3.2.13) lib/active_record/relation/finder_methods.rb:107:in `find'
648
+ activerecord (3.2.13) lib/active_record/querying.rb:5:in `find'
649
+ /Users/steve/api/app/controllers/api/application_controller.rb:9:in `show'
650
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
651
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
652
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
653
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
654
+ activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4141602301134415927__process_action__2494903126952241109__callbacks'
655
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
656
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
657
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
658
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
659
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
660
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
661
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
662
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
663
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
664
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
665
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
666
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
667
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
668
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
669
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
670
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
671
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
672
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
673
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
674
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
675
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
676
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
677
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
678
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
679
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
680
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
681
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
682
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
683
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
684
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
685
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
686
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
687
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
688
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
689
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
690
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
691
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
692
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
693
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
694
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
695
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
696
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
697
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1585004687824188366__call__3445783787554682766__callbacks'
698
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
699
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
700
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
701
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
702
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
703
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
704
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
705
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
706
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
707
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
708
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
709
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
710
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
711
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
712
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
713
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
714
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
715
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
716
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
717
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
718
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
719
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
720
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
721
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
722
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
723
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
724
+
725
+
726
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
727
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
728
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.1ms)
729
+
730
+
731
+ Started GET "/api/posts/1" for 127.0.0.1 at 2013-04-07 22:57:44 -0500
732
+
733
+ ActionController::RoutingError (No route matches [GET] "/api/posts/1"):
734
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
735
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
736
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
737
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
738
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
739
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
740
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
741
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
742
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
743
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
744
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
745
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
746
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
747
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
748
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
749
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
750
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
751
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
752
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
753
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
754
+
755
+
756
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.5ms)
757
+
758
+
759
+ Started GET "/api/posts/1" for 127.0.0.1 at 2013-04-07 22:58:09 -0500
760
+ Processing by Api::ApplicationController#show as HTML
761
+ Parameters: {"id"=>"1"}
762
+ Post Load (1.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
763
+ Completed 404 Not Found in 10ms
764
+
765
+ ActiveRecord::RecordNotFound (Couldn't find Post with id=1):
766
+ activerecord (3.2.13) lib/active_record/relation/finder_methods.rb:343:in `find_one'
767
+ activerecord (3.2.13) lib/active_record/relation/finder_methods.rb:314:in `find_with_ids'
768
+ activerecord (3.2.13) lib/active_record/relation/finder_methods.rb:107:in `find'
769
+ activerecord (3.2.13) lib/active_record/querying.rb:5:in `find'
770
+ /Users/steve/api/app/controllers/api/application_controller.rb:9:in `show'
771
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
772
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
773
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
774
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
775
+ activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__4141602301134415927__process_action__2494903126952241109__callbacks'
776
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
777
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
778
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
779
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
780
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
781
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
782
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
783
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
784
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
785
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
786
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
787
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
788
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
789
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
790
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
791
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
792
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
793
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
794
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
795
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
796
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
797
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
798
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
799
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
800
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
801
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
802
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
803
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
804
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
805
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
806
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
807
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
808
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
809
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
810
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
811
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
812
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
813
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
814
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
815
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
816
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
817
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
818
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__1585004687824188366__call__3445783787554682766__callbacks'
819
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
820
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
821
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
822
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
823
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
824
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
825
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
826
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
827
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
828
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
829
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
830
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
831
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
832
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
833
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
834
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
835
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
836
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
837
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
838
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
839
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
840
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
841
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
842
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
843
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
844
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
845
+
846
+
847
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
848
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
849
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms)
850
+
851
+
852
+ Started GET "/api/posts" for 127.0.0.1 at 2013-04-07 22:58:12 -0500
853
+ Processing by Api::ApplicationController#index as HTML
854
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
855
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms)
856
+ Connecting to database specified by database.yml
857
+ Connecting to database specified by database.yml
858
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
859
+  (0.3ms) select sqlite_version(*)
860
+  (1.3ms) DROP TABLE "posts"
861
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
862
+  (0.1ms) SELECT version FROM "schema_migrations"
863
+ Connecting to database specified by database.yml
864
+ Connecting to database specified by database.yml
865
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
866
+  (0.3ms) select sqlite_version(*)
867
+  (2.3ms) DROP TABLE "posts"
868
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
869
+  (0.5ms) SELECT version FROM "schema_migrations"
870
+ Connecting to database specified by database.yml
871
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
872
+  (0.3ms) select sqlite_version(*)
873
+  (3.0ms) DROP TABLE "posts"
874
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
875
+  (0.1ms) SELECT version FROM "schema_migrations"
876
+ Connecting to database specified by database.yml
877
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
878
+  (0.3ms) select sqlite_version(*)
879
+  (4.0ms) DROP TABLE "posts"
880
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
881
+  (0.1ms) SELECT version FROM "schema_migrations"
882
+ Connecting to database specified by database.yml
883
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
884
+  (0.3ms) select sqlite_version(*)
885
+  (2.6ms) DROP TABLE "posts"
886
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
887
+  (0.1ms) SELECT version FROM "schema_migrations"
888
+
889
+
890
+ Started GET "/api/posts" for 127.0.0.1 at 2013-04-07 23:14:46 -0500
891
+ Processing by Api::ApplicationController#index as HTML
892
+ Parameters: {"model_name"=>"posts"}
893
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
894
+ Completed 200 OK in 11ms (Views: 0.4ms | ActiveRecord: 2.9ms)
895
+
896
+
897
+ Started GET "/api/posts/1" for 127.0.0.1 at 2013-04-07 23:14:48 -0500
898
+ Processing by Api::ApplicationController#show as HTML
899
+ Parameters: {"model_name"=>"posts", "id"=>"1"}
900
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
901
+ Completed 404 Not Found in 3ms
902
+
903
+ ActiveRecord::RecordNotFound (Couldn't find Post with id=1):
904
+ activerecord (3.2.13) lib/active_record/relation/finder_methods.rb:343:in `find_one'
905
+ activerecord (3.2.13) lib/active_record/relation/finder_methods.rb:314:in `find_with_ids'
906
+ activerecord (3.2.13) lib/active_record/relation/finder_methods.rb:107:in `find'
907
+ activerecord (3.2.13) lib/active_record/querying.rb:5:in `find'
908
+ /Users/steve/api/app/controllers/api/application_controller.rb:9:in `show'
909
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
910
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
911
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
912
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
913
+ activesupport (3.2.13) lib/active_support/callbacks.rb:403:in `_run__1734060623304027748__process_action__526209737366287258__callbacks'
914
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
915
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
916
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
917
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
918
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
919
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
920
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
921
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
922
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
923
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
924
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
925
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
926
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
927
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
928
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
929
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
930
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
931
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
932
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
933
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
934
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
935
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
936
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
937
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
938
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
939
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
940
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
941
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
942
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
943
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
944
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
945
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
946
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
947
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
948
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
949
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
950
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
951
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
952
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
953
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
954
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
955
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
956
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4168815995510534148__call__1340456517592453159__callbacks'
957
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
958
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
959
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
960
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
961
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
962
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
963
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
964
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
965
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
966
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
967
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
968
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
969
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
970
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
971
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
972
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
973
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
974
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
975
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
976
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
977
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
978
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
979
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
980
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
981
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
982
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
983
+
984
+
985
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
986
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
987
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.6ms)
988
+ Connecting to database specified by database.yml
989
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
990
+  (0.3ms) select sqlite_version(*)
991
+  (2.3ms) DROP TABLE "posts"
992
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
993
+  (0.1ms) SELECT version FROM "schema_migrations"
994
+ Connecting to database specified by database.yml
995
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
996
+  (0.3ms) select sqlite_version(*)
997
+  (3.5ms) DROP TABLE "posts"
998
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
999
+  (0.1ms) SELECT version FROM "schema_migrations"
1000
+
1001
+
1002
+ Started GET "/api/posts" for 127.0.0.1 at 2013-04-07 23:17:12 -0500
1003
+ Processing by Api::ApplicationController#index as HTML
1004
+ Parameters: {"model_name"=>"posts"}
1005
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1006
+ Completed 200 OK in 8ms (Views: 0.4ms | ActiveRecord: 0.6ms)
1007
+
1008
+
1009
+ Started GET "/" for 127.0.0.1 at 2013-04-07 23:25:45 -0500
1010
+
1011
+ ActionController::RoutingError (No route matches [GET] "/"):
1012
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1013
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1014
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1015
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1016
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1017
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1018
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1019
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1020
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1021
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1022
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1023
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1024
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1025
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1026
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1027
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1028
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1029
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1030
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1031
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1032
+
1033
+
1034
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
1035
+
1036
+
1037
+ Started GET "/" for 127.0.0.1 at 2013-04-07 23:25:51 -0500
1038
+
1039
+ ActionController::RoutingError (No route matches [GET] "/"):
1040
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1041
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1042
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1043
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1044
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1045
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1046
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1047
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1048
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1049
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1050
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1051
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1052
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1053
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1054
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1055
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1056
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1057
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1058
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1059
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1060
+
1061
+
1062
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
1063
+
1064
+
1065
+ Started GET "/api/posts" for 127.0.0.1 at 2013-04-07 23:27:27 -0500
1066
+ Processing by Api::ApplicationController#index as HTML
1067
+ Parameters: {"model_name"=>"posts"}
1068
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1069
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.2ms)
1070
+
1071
+
1072
+ Started GET "/api/posts" for 127.0.0.1 at 2013-04-07 23:45:13 -0500
1073
+ Processing by Api::ApplicationController#index as HTML
1074
+ Parameters: {"model_name"=>"posts"}
1075
+ Post Load (0.6ms) SELECT "posts".* FROM "posts" 
1076
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.6ms)
1077
+
1078
+
1079
+ Started POST "/api/posts" for 127.0.0.1 at 2013-04-07 23:47:34 -0500
1080
+ Error occurred while parsing request parameters.
1081
+ Contents:
1082
+
1083
+
1084
+
1085
+ REXML::ParseException (The document "{ post: { title: 'This is a test' } }" does not have a valid root):
1086
+ activesupport (3.2.13) lib/active_support/xml_mini/rexml.rb:35:in `parse'
1087
+ activesupport (3.2.13) lib/active_support/xml_mini.rb:80:in `parse'
1088
+ activesupport (3.2.13) lib/active_support/core_ext/hash/conversions.rb:98:in `from_xml'
1089
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:41:in `parse_formatted_parameters'
1090
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:17:in `call'
1091
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
1092
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1093
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1094
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1095
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1096
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1097
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1098
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4168815995510534148__call__1340456517592453159__callbacks'
1099
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1100
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1101
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1102
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1103
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1104
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1105
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1106
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1107
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1108
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1109
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1110
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1111
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1112
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1113
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1114
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1115
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1116
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1117
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1118
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1119
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1120
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1121
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1122
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1123
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1124
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1125
+
1126
+
1127
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
1128
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
1129
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.2ms)
1130
+
1131
+
1132
+ Started POST "/api/posts" for 127.0.0.1 at 2013-04-07 23:48:34 -0500
1133
+ Error occurred while parsing request parameters.
1134
+ Contents:
1135
+
1136
+
1137
+
1138
+ REXML::ParseException (The document "post: { title: 'This is a test' }" does not have a valid root):
1139
+ activesupport (3.2.13) lib/active_support/xml_mini/rexml.rb:35:in `parse'
1140
+ activesupport (3.2.13) lib/active_support/xml_mini.rb:80:in `parse'
1141
+ activesupport (3.2.13) lib/active_support/core_ext/hash/conversions.rb:98:in `from_xml'
1142
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:41:in `parse_formatted_parameters'
1143
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:17:in `call'
1144
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
1145
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1146
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1147
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1148
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
1149
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1150
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1151
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4168815995510534148__call__1340456517592453159__callbacks'
1152
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
1153
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1154
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
1155
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1156
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1157
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1158
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1159
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1160
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
1161
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
1162
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
1163
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
1164
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1165
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1166
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1167
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1168
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1169
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
1170
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
1171
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
1172
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1173
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
1174
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1175
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1176
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1177
+ /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1178
+
1179
+
1180
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms)
1181
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
1182
+ Rendered /Users/steve/.rbenv/versions/1.9.3-p392/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.2ms)
1183
+ Connecting to database specified by database.yml
1184
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1185
+  (0.7ms) select sqlite_version(*)
1186
+  (1.7ms) DROP TABLE "posts"
1187
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1188
+  (0.1ms) SELECT version FROM "schema_migrations"
1189
+ Connecting to database specified by database.yml
1190
+ Connecting to database specified by database.yml
1191
+  (8.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1192
+ Migrating to CreatePosts (20130408032158)
1193
+ Migrating to CreateComments (20130414001608)
1194
+  (0.4ms) select sqlite_version(*)
1195
+  (0.1ms) begin transaction
1196
+  (0.5ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1197
+  (0.2ms) CREATE INDEX "index_comments_on_author_id" ON "comments" ("author_id")
1198
+  (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130414001608')
1199
+  (1.2ms) commit transaction
1200
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1201
+ Connecting to database specified by database.yml
1202
+  (5.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1203
+  (0.3ms) select sqlite_version(*)
1204
+  (1.3ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1205
+  (1.2ms) CREATE INDEX "index_comments_on_author_id" ON "comments" ("author_id")
1206
+  (2.3ms) DROP TABLE "posts"
1207
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1208
+  (0.5ms) SELECT version FROM "schema_migrations"
1209
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20130414001608')
1210
+ Connecting to database specified by database.yml
1211
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1212
+  (0.3ms) select sqlite_version(*)
1213
+  (1.5ms) DROP TABLE "comments"
1214
+  (1.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1215
+  (1.0ms) CREATE INDEX "index_comments_on_author_id" ON "comments" ("author_id")
1216
+  (1.2ms) DROP TABLE "posts"
1217
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1218
+  (0.1ms) SELECT version FROM "schema_migrations"
1219
+ Connecting to database specified by database.yml
1220
+  (3.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1221
+  (0.3ms) select sqlite_version(*)
1222
+  (1.4ms) DROP TABLE "comments"
1223
+  (1.2ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1224
+  (1.3ms) CREATE INDEX "index_comments_on_author_id" ON "comments" ("author_id")
1225
+  (1.1ms) DROP TABLE "posts"
1226
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1227
+  (0.1ms) SELECT version FROM "schema_migrations"
1228
+ Connecting to database specified by database.yml
1229
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1230
+  (0.3ms) select sqlite_version(*)
1231
+  (1.3ms) DROP TABLE "comments"
1232
+  (1.3ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1233
+  (1.3ms) CREATE INDEX "index_comments_on_author_id" ON "comments" ("author_id")
1234
+  (1.1ms) DROP TABLE "posts"
1235
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1236
+  (0.2ms) SELECT version FROM "schema_migrations"
1237
+ Connecting to database specified by database.yml
1238
+  (5.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1239
+  (0.3ms) select sqlite_version(*)
1240
+  (3.1ms) DROP TABLE "comments"
1241
+  (1.0ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1242
+  (1.4ms) CREATE INDEX "index_comments_on_author_id" ON "comments" ("author_id")
1243
+  (1.8ms) DROP TABLE "posts"
1244
+  (1.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1245
+  (0.5ms) SELECT version FROM "schema_migrations"
1246
+ Connecting to database specified by database.yml
1247
+  (5.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1248
+  (0.4ms) select sqlite_version(*)
1249
+  (2.6ms) DROP TABLE "comments"
1250
+  (1.1ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "author_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1251
+  (1.3ms) CREATE INDEX "index_comments_on_author_id" ON "comments" ("author_id")
1252
+  (1.6ms) DROP TABLE "posts"
1253
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1254
+  (0.5ms) SELECT version FROM "schema_migrations"
1255
+ Connecting to database specified by database.yml
1256
+  (5.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1257
+  (0.3ms) select sqlite_version(*)
1258
+  (2.2ms) DROP TABLE "posts"
1259
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1260
+  (0.5ms) SELECT version FROM "schema_migrations"
1261
+ Connecting to database specified by database.yml
1262
+  (6.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1263
+  (0.3ms) select sqlite_version(*)
1264
+  (2.2ms) DROP TABLE "posts"
1265
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1266
+  (0.5ms) SELECT version FROM "schema_migrations"
1267
+ Connecting to database specified by database.yml
1268
+  (5.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1269
+  (0.3ms) select sqlite_version(*)
1270
+  (2.3ms) DROP TABLE "posts"
1271
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1272
+  (0.5ms) SELECT version FROM "schema_migrations"
1273
+ Connecting to database specified by database.yml
1274
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1275
+  (0.3ms) select sqlite_version(*)
1276
+  (2.0ms) DROP TABLE "posts"
1277
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1278
+  (0.4ms) SELECT version FROM "schema_migrations"
1279
+ Connecting to database specified by database.yml
1280
+  (3.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1281
+  (0.3ms) select sqlite_version(*)
1282
+  (1.3ms) DROP TABLE "posts"
1283
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1284
+  (0.4ms) SELECT version FROM "schema_migrations"
1285
+ Connecting to database specified by database.yml
1286
+  (3.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1287
+  (0.3ms) select sqlite_version(*)
1288
+  (29.3ms) DROP TABLE "posts"
1289
+  (6.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1290
+  (0.2ms) SELECT version FROM "schema_migrations"
1291
+ Connecting to database specified by database.yml
1292
+  (5.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1293
+  (0.3ms) select sqlite_version(*)
1294
+  (1.9ms) DROP TABLE "posts"
1295
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1296
+  (0.3ms) SELECT version FROM "schema_migrations"
1297
+ Connecting to database specified by database.yml
1298
+  (2.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1299
+  (0.3ms) select sqlite_version(*)
1300
+  (1.2ms) DROP TABLE "posts"
1301
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1302
+  (0.1ms) SELECT version FROM "schema_migrations"
1303
+ Connecting to database specified by database.yml
1304
+  (2.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1305
+  (0.5ms) select sqlite_version(*)
1306
+  (2.1ms) DROP TABLE "posts"
1307
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1308
+  (0.1ms) SELECT version FROM "schema_migrations"
1309
+ Connecting to database specified by database.yml
1310
+  (4.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1311
+  (0.4ms) select sqlite_version(*)
1312
+  (1.3ms) DROP TABLE "posts"
1313
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1314
+  (0.1ms) SELECT version FROM "schema_migrations"
1315
+ Connecting to database specified by database.yml
1316
+  (5.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1317
+  (0.3ms) select sqlite_version(*)
1318
+  (2.7ms) DROP TABLE "posts"
1319
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1320
+  (0.4ms) SELECT version FROM "schema_migrations"
1321
+ Connecting to database specified by database.yml
1322
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1323
+  (0.3ms) select sqlite_version(*)
1324
+  (1.1ms) DROP TABLE "posts"
1325
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1326
+  (0.1ms) SELECT version FROM "schema_migrations"
1327
+ Connecting to database specified by database.yml
1328
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1329
+  (0.4ms) select sqlite_version(*)
1330
+  (2.5ms) DROP TABLE "posts"
1331
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1332
+  (0.1ms) SELECT version FROM "schema_migrations"
1333
+ Connecting to database specified by database.yml
1334
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1335
+  (0.3ms) select sqlite_version(*)
1336
+  (1.2ms) DROP TABLE "posts"
1337
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1338
+  (0.1ms) SELECT version FROM "schema_migrations"
1339
+ Connecting to database specified by database.yml
1340
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1341
+  (0.3ms) select sqlite_version(*)
1342
+  (2.6ms) DROP TABLE "posts"
1343
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1344
+  (0.1ms) SELECT version FROM "schema_migrations"
1345
+ Connecting to database specified by database.yml
1346
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1347
+  (0.3ms) select sqlite_version(*)
1348
+  (1.3ms) DROP TABLE "posts"
1349
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1350
+  (0.1ms) SELECT version FROM "schema_migrations"
1351
+ Connecting to database specified by database.yml
1352
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1353
+  (0.3ms) select sqlite_version(*)
1354
+  (2.3ms) DROP TABLE "posts"
1355
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1356
+  (0.1ms) SELECT version FROM "schema_migrations"
1357
+ Connecting to database specified by database.yml
1358
+  (2.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1359
+  (0.3ms) select sqlite_version(*)
1360
+  (3.0ms) DROP TABLE "posts"
1361
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1362
+  (0.1ms) SELECT version FROM "schema_migrations"
1363
+ Connecting to database specified by database.yml
1364
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1365
+  (0.3ms) select sqlite_version(*)
1366
+  (2.0ms) DROP TABLE "posts"
1367
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1368
+  (0.1ms) SELECT version FROM "schema_migrations"
1369
+ Connecting to database specified by database.yml
1370
+  (12.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1371
+  (1.6ms) select sqlite_version(*)
1372
+  (14.4ms) DROP TABLE "posts"
1373
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1374
+  (0.4ms) SELECT version FROM "schema_migrations"
1375
+ Connecting to database specified by database.yml
1376
+  (5.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1377
+  (0.3ms) select sqlite_version(*)
1378
+  (2.2ms) DROP TABLE "posts"
1379
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1380
+  (0.4ms) SELECT version FROM "schema_migrations"
1381
+ Connecting to database specified by database.yml
1382
+  (3.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1383
+  (0.3ms) select sqlite_version(*)
1384
+  (1.7ms) DROP TABLE "posts"
1385
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1386
+  (0.5ms) SELECT version FROM "schema_migrations"
1387
+ Connecting to database specified by database.yml
1388
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1389
+  (0.3ms) select sqlite_version(*)
1390
+  (1.3ms) DROP TABLE "posts"
1391
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1392
+  (0.1ms) SELECT version FROM "schema_migrations"
1393
+ Connecting to database specified by database.yml
1394
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1395
+  (0.3ms) select sqlite_version(*)
1396
+  (2.3ms) DROP TABLE "posts"
1397
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1398
+  (0.1ms) SELECT version FROM "schema_migrations"
1399
+ Connecting to database specified by database.yml
1400
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1401
+  (0.3ms) select sqlite_version(*)
1402
+  (2.4ms) DROP TABLE "posts"
1403
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1404
+  (0.1ms) SELECT version FROM "schema_migrations"
1405
+ Connecting to database specified by database.yml
1406
+  (2.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1407
+  (0.3ms) select sqlite_version(*)
1408
+  (2.4ms) DROP TABLE "posts"
1409
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1410
+  (0.1ms) SELECT version FROM "schema_migrations"
1411
+ Connecting to database specified by database.yml
1412
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1413
+  (0.3ms) select sqlite_version(*)
1414
+  (2.6ms) DROP TABLE "posts"
1415
+  (1.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1416
+  (0.1ms) SELECT version FROM "schema_migrations"
1417
+ Connecting to database specified by database.yml
1418
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1419
+  (0.3ms) select sqlite_version(*)
1420
+  (2.3ms) DROP TABLE "posts"
1421
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1422
+  (0.1ms) SELECT version FROM "schema_migrations"
1423
+ Connecting to database specified by database.yml
1424
+  (5.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1425
+  (0.3ms) select sqlite_version(*)
1426
+  (2.4ms) DROP TABLE "posts"
1427
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1428
+  (0.5ms) SELECT version FROM "schema_migrations"
1429
+ Connecting to database specified by database.yml
1430
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1431
+  (0.3ms) select sqlite_version(*)
1432
+  (1.3ms) DROP TABLE "posts"
1433
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1434
+  (0.1ms) SELECT version FROM "schema_migrations"
1435
+ Connecting to database specified by database.yml
1436
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1437
+  (0.3ms) select sqlite_version(*)
1438
+  (2.0ms) DROP TABLE "posts"
1439
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1440
+  (0.1ms) SELECT version FROM "schema_migrations"
1441
+ Connecting to database specified by database.yml
1442
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1443
+  (0.3ms) select sqlite_version(*)
1444
+  (1.4ms) DROP TABLE "posts"
1445
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1446
+  (0.1ms) SELECT version FROM "schema_migrations"
1447
+ Connecting to database specified by database.yml
1448
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1449
+  (0.8ms) select sqlite_version(*)
1450
+  (2.6ms) DROP TABLE "posts"
1451
+  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1452
+  (0.5ms) SELECT version FROM "schema_migrations"
1453
+ Connecting to database specified by database.yml
1454
+ Connecting to database specified by database.yml
1455
+ Connecting to database specified by database.yml
1456
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1457
+  (0.9ms) select sqlite_version(*)
1458
+  (2.3ms) DROP TABLE "posts"
1459
+  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1460
+  (0.6ms) SELECT version FROM "schema_migrations"
1461
+ Connecting to database specified by database.yml
1462
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1463
+  (0.5ms) select sqlite_version(*)
1464
+  (2.4ms) DROP TABLE "posts"
1465
+  (1.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1466
+  (0.4ms) SELECT version FROM "schema_migrations"
1467
+ Connecting to database specified by database.yml
1468
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1469
+  (0.3ms) select sqlite_version(*)
1470
+  (1.3ms) DROP TABLE "posts"
1471
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1472
+  (0.1ms) SELECT version FROM "schema_migrations"
1473
+ Connecting to database specified by database.yml
1474
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1475
+  (0.3ms) select sqlite_version(*)
1476
+  (2.4ms) DROP TABLE "posts"
1477
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1478
+  (0.1ms) SELECT version FROM "schema_migrations"
1479
+ Connecting to database specified by database.yml
1480
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1481
+  (0.4ms) select sqlite_version(*)
1482
+  (2.0ms) DROP TABLE "posts"
1483
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1484
+  (0.1ms) SELECT version FROM "schema_migrations"
1485
+ Connecting to database specified by database.yml
1486
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1487
+  (0.3ms) select sqlite_version(*)
1488
+  (2.4ms) DROP TABLE "posts"
1489
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1490
+  (0.1ms) SELECT version FROM "schema_migrations"
1491
+ Connecting to database specified by database.yml
1492
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1493
+  (0.3ms) select sqlite_version(*)
1494
+  (3.0ms) DROP TABLE "posts"
1495
+  (1.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1496
+  (0.1ms) SELECT version FROM "schema_migrations"
1497
+ Connecting to database specified by database.yml
1498
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1499
+  (0.3ms) select sqlite_version(*)
1500
+  (2.2ms) DROP TABLE "posts"
1501
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1502
+  (0.1ms) SELECT version FROM "schema_migrations"
1503
+ Connecting to database specified by database.yml
1504
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1505
+  (0.3ms) select sqlite_version(*)
1506
+  (1.0ms) DROP TABLE "posts"
1507
+  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1508
+  (0.1ms) SELECT version FROM "schema_migrations"
1509
+ Connecting to database specified by database.yml
1510
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1511
+  (0.3ms) select sqlite_version(*)
1512
+  (1.3ms) DROP TABLE "posts"
1513
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1514
+  (0.1ms) SELECT version FROM "schema_migrations"
1515
+ Connecting to database specified by database.yml
1516
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1517
+  (0.3ms) select sqlite_version(*)
1518
+  (218.2ms) DROP TABLE "posts"
1519
+  (3.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1520
+  (0.1ms) SELECT version FROM "schema_migrations"
1521
+ Connecting to database specified by database.yml
1522
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1523
+  (0.3ms) select sqlite_version(*)
1524
+  (2.6ms) DROP TABLE "posts"
1525
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1526
+  (0.1ms) SELECT version FROM "schema_migrations"
1527
+ Connecting to database specified by database.yml
1528
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1529
+  (0.3ms) select sqlite_version(*)
1530
+  (2.6ms) DROP TABLE "posts"
1531
+  (1.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1532
+  (0.1ms) SELECT version FROM "schema_migrations"
1533
+ Connecting to database specified by database.yml
1534
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1535
+  (0.3ms) select sqlite_version(*)
1536
+  (1.9ms) DROP TABLE "posts"
1537
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1538
+  (0.1ms) SELECT version FROM "schema_migrations"
1539
+ Connecting to database specified by database.yml
1540
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1541
+  (0.3ms) select sqlite_version(*)
1542
+  (2.1ms) DROP TABLE "posts"
1543
+  (0.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1544
+  (0.1ms) SELECT version FROM "schema_migrations"
1545
+ Connecting to database specified by database.yml
1546
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1547
+  (0.3ms) select sqlite_version(*)
1548
+  (2.3ms) DROP TABLE "posts"
1549
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1550
+  (0.2ms) SELECT version FROM "schema_migrations"
1551
+ Connecting to database specified by database.yml
1552
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1553
+  (0.3ms) select sqlite_version(*)
1554
+  (1.5ms) DROP TABLE "posts"
1555
+  (1.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1556
+  (0.1ms) SELECT version FROM "schema_migrations"
1557
+ Connecting to database specified by database.yml