(1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (0.1ms) select sqlite_version(*)  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUsers (20140825151402)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140825151402"]]  (1.7ms) commit transaction Migrating to CreatePosts (20140825151509)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "author_id" integer, "created_at" datetime, "updated_at" datetime) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140825151509"]]  (1.3ms) commit transaction Migrating to CreateComments (20140825151605)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "author_id" integer, "post_id" integer, "created_at" datetime, "updated_at" datetime) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140825151605"]]  (1.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "users" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-08-25 20:42:39.180488"], ["name", "Elmer Fudd"], ["updated_at", "2014-08-25 20:42:39.180488"]]  (1.4ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "posts" ("author_id", "body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["author_id", 1], ["body", "Whether tis nobler to sting the bastards or drink mead until ye die."], ["created_at", "2014-08-25 20:44:28.280997"], ["title", "To Bee or Not to Bee"], ["updated_at", "2014-08-25 20:44:28.280997"]]  (6.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "comments" ("author_id", "body", "created_at", "post_id", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["author_id", 1], ["body", "To somebody's ears I suppose, but certainly not mine."], ["created_at", "2014-08-25 20:45:25.199224"], ["post_id", 1], ["title", "Swee Honey"], ["updated_at", "2014-08-25 20:45:25.199224"]]  (6.6ms) commit transaction Started GET "/" for 127.0.0.1 at 2014-08-25 13:48:04 -0700 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/railties-4.1.5/lib/rails/templates/rails/welcome/index.html.erb (2.7ms) Completed 200 OK in 71ms (Views: 70.7ms | ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2014-08-25 13:48:37 -0700 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PostsController#index as HTML Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" ASC LIMIT 100 Completed 406 Not Acceptable in 15ms ActionController::UnknownFormat (ActionController::UnknownFormat): app/controllers/posts_controller.rb:5:in `index' Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (22.0ms) Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (42.4ms) Started GET "/index.json" for 127.0.0.1 at 2014-08-25 13:48:54 -0700 ActionController::RoutingError (No route matches [GET] "/index.json"): actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/noel/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/noel/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/noel/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (68.3ms) Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (162.5ms) Started GET "/posts/json" for 127.0.0.1 at 2014-08-25 13:49:01 -0700 AbstractController::ActionNotFound (The action 'show' could not be found for PostsController): actionpack (4.1.5) lib/abstract_controller/base.rb:131:in `process' actionview (4.1.5) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.5) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.5) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.5) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.5) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.5) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.5) lib/active_record/migration.rb:380:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.5) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.5) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.5) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.5) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.5) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.5) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.5) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.5) lib/rails/engine.rb:514:in `call' railties (4.1.5) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/noel/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/noel/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/noel/.rvm/rubies/ruby-2.0.0-p481/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/noel/.rvm/gems/ruby-2.0.0-p481/gems/actionpack-4.1.5/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.6ms) Started GET "/posts.json" for 127.0.0.1 at 2014-08-25 13:49:04 -0700 Processing by PostsController#index as JSON Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" ASC LIMIT 100 Comment Load (0.3ms) SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = ? [["post_id", 1]] User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 212ms (Views: 207.6ms | ActiveRecord: 1.1ms)