diff --git a/.gitignore b/.gitignore index d6d1164..eba5dcf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,2 @@ -.bundle/ -log/*.log -pkg/ -spec/dummy/db/*.sqlite3 -spec/dummy/db/*.sqlite3-journal -spec/dummy/log/*.log -spec/dummy/tmp/ -spec/dummy/public/assets -spec/dummy/.sass-cache -spec/generators/swagger_rails/tmp -bower_components/* -!bower_components/swagger-ui -bower_components/swagger-ui/* -!bower_components/swagger-ui/dist -.ruby-version -.idea -spec/dummy/swagger/v1_api.json \ No newline at end of file +**/*/tmp +**/*/log diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index dda7175..0000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "swagger-ui"] - path = swagger-ui - url = https://github.com/swagger-api/swagger-ui.git diff --git a/.rspec b/.rspec deleted file mode 100644 index 2cfeec5..0000000 --- a/.rspec +++ /dev/null @@ -1,3 +0,0 @@ ---color ---require spec_helper ---order rand \ No newline at end of file diff --git a/rswag-api/spec/generators/rswag/api/tmp/config/initializers/.gitkeep b/rswag-api/spec/generators/rswag/api/tmp/config/initializers/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/rswag-api/spec/generators/rswag/api/tmp/config/initializers/rswag-api.rb b/rswag-api/spec/generators/rswag/api/tmp/config/initializers/rswag-api.rb deleted file mode 100644 index 5f3ddc4..0000000 --- a/rswag-api/spec/generators/rswag/api/tmp/config/initializers/rswag-api.rb +++ /dev/null @@ -1,14 +0,0 @@ -Rswag::Api.configure do |c| - - # Specify a root folder where Swagger JSON files are located - # This is used by the Swagger middleware to serve requests for API descriptions - # NOTE: If you're using rswag-specs to generate Swagger, you'll need to ensure - # that it's configured to generate files in the same folder - c.swagger_root = Rails.root.to_s + '/swagger' - - # Inject a lamda function to alter the returned Swagger prior to serialization - # The function will have access to the rack env for the current request - # For example, you could leverage this to dynamically assign the "host" property - # - #c.swagger_filter = lambda { |swagger, env| swagger['host'] = env['HTTP_HOST'] } -end diff --git a/rswag-api/spec/generators/rswag/api/tmp/config/routes.rb b/rswag-api/spec/generators/rswag/api/tmp/config/routes.rb deleted file mode 100644 index 4254c4d..0000000 --- a/rswag-api/spec/generators/rswag/api/tmp/config/routes.rb +++ /dev/null @@ -1,4 +0,0 @@ -TestApp::Application.routes.draw do - mount Rswag::Api::Engine => '/api-docs' - -end diff --git a/rswag-specs/spec/generators/rswag/specs/tmp/spec/.gitkeep b/rswag-specs/spec/generators/rswag/specs/tmp/spec/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/rswag-specs/spec/generators/rswag/specs/tmp/spec/swagger_helper.rb b/rswag-specs/spec/generators/rswag/specs/tmp/spec/swagger_helper.rb deleted file mode 100644 index 366d13e..0000000 --- a/rswag-specs/spec/generators/rswag/specs/tmp/spec/swagger_helper.rb +++ /dev/null @@ -1,25 +0,0 @@ -require 'rails_helper' - -RSpec.configure do |config| - # Specify a root folder where Swagger JSON files are generated - # NOTE: If you're using the rswag-api to serve API descriptions, you'll need - # to ensure that it's confiugred to server Swagger from the same folder - config.swagger_root = Rails.root.to_s + '/swagger' - - # Define one or more Swagger documents and provide global metadata for each one - # When you run the 'rswag:specs:to_swagger' rake task, the complete Swagger will - # be generated at the provided relative path under swagger_root - # By default, the operations defined in spec files are added to the first - # document below. You can override this behavior by adding a swagger_doc tag to the - # the root example_group in your specs, e.g. describe '...', swagger_doc: 'v2/swagger.json' - config.swagger_docs = { - 'v1/swagger.json' => { - swagger: '2.0', - info: { - title: 'API V1', - version: 'v1' - }, - paths: {} - } - } -end diff --git a/rswag-ui/spec/generators/rswag/ui/tmp/config/initializers/.gitkeep b/rswag-ui/spec/generators/rswag/ui/tmp/config/initializers/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/rswag-ui/spec/generators/rswag/ui/tmp/config/initializers/rswag-ui.rb b/rswag-ui/spec/generators/rswag/ui/tmp/config/initializers/rswag-ui.rb deleted file mode 100644 index 0805940..0000000 --- a/rswag-ui/spec/generators/rswag/ui/tmp/config/initializers/rswag-ui.rb +++ /dev/null @@ -1,9 +0,0 @@ -Rswag::Ui.configure do |c| - - # List the Swagger endpoints that you want to be documented through the swagger-ui - # The first parameter is the path (absolute or relative to the UI host) to the corresponding - # JSON endpoint and the second is a title that will be displayed in the document selector - # NOTE: If you're using rspec-api to expose Swagger files (under swagger_root) as JSON endpoints, - # then the list below should correspond to the relative paths for those endpoints - c.swagger_endpoint '/api-docs/v1/swagger.json', 'API V1 Docs' -end diff --git a/rswag-ui/spec/generators/rswag/ui/tmp/config/routes.rb b/rswag-ui/spec/generators/rswag/ui/tmp/config/routes.rb deleted file mode 100644 index 316f8ac..0000000 --- a/rswag-ui/spec/generators/rswag/ui/tmp/config/routes.rb +++ /dev/null @@ -1,4 +0,0 @@ -TestApp::Application.routes.draw do - mount Rswag::Ui::Engine => '/api-docs' - -end diff --git a/rswag/spec/generators/rswag/specs/tmp/config/routes.rb b/rswag/spec/generators/rswag/specs/tmp/config/routes.rb deleted file mode 100644 index 9d8e33d..0000000 --- a/rswag/spec/generators/rswag/specs/tmp/config/routes.rb +++ /dev/null @@ -1,2 +0,0 @@ -TestApp::Application.routes.draw do -end diff --git a/rswag/spec/generators/rswag/specs/tmp/spec/.gitkeep b/rswag/spec/generators/rswag/specs/tmp/spec/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/test-app/log/test.log b/test-app/log/test.log deleted file mode 100644 index 9e172d6..0000000 --- a/test-app/log/test.log +++ /dev/null @@ -1,8344 +0,0 @@ -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:04:08 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.6ms (Views: 1.9ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:04:08 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.8ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:04:08 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:04:08 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:04:08 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:04:08 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:06:33 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 19.6ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:06:33 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:06:33 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:06:33 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:06:33 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:06:33 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:08:16 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.0ms (Views: 1.2ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:08:16 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:08:16 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:08:16 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:08:16 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:08:16 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:14:23 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.9ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:14:23 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.3ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:14:23 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:14:23 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:14:23 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:14:23 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:24:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 6.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:24:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.4ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:24:46 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:24:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:24:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:24:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 2.4ms (Views: 1.2ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:25:06 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 10.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:25:06 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:25:06 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:25:06 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:25:06 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:25:06 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 2.3ms (Views: 1.0ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:09 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:09 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.7ms (Views: 2.9ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:09 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:52:10 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:10 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:52:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:52:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:55 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.1ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (1.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:52:55 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.0ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:52:55 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:52:55 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:52:55 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:52:55 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:53:29 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 9.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:53:29 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:53:29 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:53:29 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:53:29 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:53:29 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 2.2ms (Views: 1.0ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:09 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.2ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:09 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:55:09 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:09 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:55:09 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:55:09 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:41 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.7ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:55:41 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:55:41 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:55:41 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:55:41 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:55:41 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:56:02 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.8ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:56:02 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:56:02 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.2ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:56:02 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:56:02 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:56:03 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:07 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.9ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:07 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:59:07 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:07 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:59:07 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:59:07 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 18:59:34 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 8.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 18:59:34 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 18:59:34 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:34 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 18:59:34 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 01:59:34 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 2.5ms (Views: 1.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:01:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.6ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:01:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 19:01:39 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:01:39 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 19:01:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 19:01:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:02:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.9ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:02:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 19:02:38 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:02:38 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 19:02:38 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 19:02:38 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.4ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:03:13 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.2ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 19:03:13 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 19:03:13 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 02:03:13 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 19:03:13 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 19:03:13 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:02:32 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 6.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:02:32 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:02:32 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:32 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:32 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:32 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 2.1ms (Views: 1.0ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:02:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 6.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:02:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:02:39 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.8ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:02:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:02:39 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 2.3ms (Views: 1.0ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:03:24 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.7ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:03:24 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:03:24 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:03:24 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:03:24 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.7ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:03:24 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:04:33 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 6.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:04:33 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:04:33 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:33 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:33 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:33 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 2.9ms (Views: 1.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:43 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.5ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:04:43 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.2ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:04:43 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:04:43 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:04:43 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:04:43 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:06:05 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.7ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:06:05 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:06:05 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:06:05 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:06:05 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:06:05 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:03 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (3.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 21.2ms (Views: 2.7ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:03 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:07:03 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:03 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:07:03 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:07:03 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:12 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.2ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:07:12 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:07:12 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:07:12 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:07:12 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:07:12 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:08:05 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.5ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:08:05 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:08:05 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:08:05 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:08:05 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:08:05 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:13:32 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.3ms (Views: 3.2ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:13:32 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:13:32 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:13:32 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:13:32 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:13:32 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:18:14 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:18:14 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:18:14 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.3ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:18:31 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (4.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:18:31 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:18:31 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.8ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:23:00 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:23:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:23:00 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.2ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:23:19 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:23:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:23:19 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.9ms (Views: 2.4ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:26:56 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 6.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:26:56 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:26:56 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:26:56 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:26:56 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:26:56 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 2.2ms (Views: 1.0ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:17 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.8ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:17 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:29:17 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:17 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:29:17 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:29:17 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:29:55 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 8.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:29:55 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.7ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:29:55 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:55 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:29:55 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:29:55 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 2.6ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:30:14 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (5.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.7ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:30:14 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:30:14 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:30:14 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:30:14 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:30:14 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:32:56 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 7.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:32:56 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:32:56 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:56 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:56 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:56 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 2.1ms (Views: 1.0ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:59 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.7ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:32:59 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:32:59 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:32:59 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:32:59 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:32:59 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:34:05 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (4.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:34:05 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:34:05 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:34:05 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:34:05 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:34:05 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:36:54 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.6ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:36:54 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.7ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:36:54 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:36:54 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:36:54 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.3ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:36:54 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:37:10 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.3ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:37:10 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:37:10 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:37:10 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:37:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:37:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:40:51 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 20.1ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:40:51 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:40:51 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:40:51 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:40:51 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:40:51 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:41:23 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.6ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:41:23 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 5.0ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:41:23 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:41:23 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:41:23 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 4.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:41:23 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:48:51 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.6ms (Views: 1.9ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:48:51 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:48:51 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:48:51 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:48:51 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:48:51 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:53:04 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.8ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:53:04 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 5.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:53:04 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:53:04 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:53:04 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:53:04 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:58:03 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.9ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 22:58:03 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 22:58:03 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 05:58:03 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 22:58:03 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 22:58:03 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:04:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (4.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.9ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:04:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:04:46 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:04:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:04:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:04:47 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:05:00 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.1ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:05:00 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:05:00 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:05:00 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:05:00 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:05:00 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.3ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.7ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:07:38 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:38 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:07:38 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:07:38 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:42 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (5.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.1ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:07:42 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:07:42 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:07:42 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:07:42 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:07:42 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:11:52 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 9.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:11:52 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:11:52 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.1ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:11:52 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:11:52 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.2ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:11:52 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 3.4ms (Views: 1.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:07 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.8ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:07 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:12:07 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:07 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:12:07 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:12:07 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:17 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.0ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:12:17 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:12:17 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:12:17 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:12:17 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.9ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:12:17 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:14:18 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (5.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.6ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:14:18 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:14:18 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:14:18 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:14:18 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:14:18 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:15:32 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.5ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:15:32 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:15:32 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:15:32 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:15:32 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:15:32 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:16:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:16:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:16:38 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.1ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:16:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:16:39 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:16:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:16:39 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:16:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:16:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:23:45 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.0ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-06 23:23:45 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-06 23:23:45 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 06:23:45 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-06 23:23:45 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-06 23:23:45 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:39:36 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.8ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:39:36 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 5.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:39:36 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:39:36 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:39:36 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:39:36 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:17 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.0ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:17 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:40:17 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.1ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:17 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:40:17 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:40:17 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:37 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:40:37 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:40:37 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:40:37 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:40:37 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:40:37 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:42:43 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.5ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:42:43 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.1ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:42:43 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:42:43 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:42:43 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:42:43 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:46:01 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 13:46:01 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 13:46:01 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 20:46:01 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 13:46:01 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 13:46:01 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:44:20 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:44:20 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 14:44:20 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.2ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:44:20 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 14:44:20 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 14:44:20 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:45:24 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 14:45:24 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 14:45:24 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 21:45:24 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 14:45:24 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 14:45:24 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:00:53 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:00:53 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:00:53 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:00:53 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:00:53 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:00:53 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:02:19 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:02:19 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:02:19 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:02:19 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:02:19 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:02:19 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:01 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:01 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:03:01 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:01 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:03:01 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:03:01 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:27 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.1ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:03:27 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:03:27 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:03:27 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:03:27 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:03:27 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.3ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:05:40 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.1ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:05:40 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:05:40 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:05:40 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:05:40 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:05:40 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:06:10 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:06:10 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:06:10 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:06:10 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:06:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:06:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:14:44 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:14:44 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:14:44 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:14:44 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:14:44 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:14:44 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:37 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.8ms (Views: 1.8ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:37 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:37 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:37 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:37 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:37 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.2ms (Views: 1.8ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:38 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:38 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:38 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:38 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.2ms (Views: 1.2ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:39 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:39 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:40 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.4ms (Views: 2.2ms | ActiveRecord: 0.0ms) -  (1.2ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:40 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:40 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:40 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:40 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:40 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:41 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:41 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:42 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:42 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:42 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:42 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:42 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:43 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:43 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:43 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:43 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:43 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:43 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:44 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.0ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:44 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:44 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:44 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:44 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:44 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:45 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.6ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (1.2ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:45 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:45 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:45 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:45 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:45 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (4.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.3ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.0ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:46 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:47 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:47 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:47 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:47 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:47 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.8ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:47 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:48 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.1ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:48 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:48 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:48 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:48 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:48 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:49 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.5ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:49 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:49 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:49 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:49 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:49 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:50 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.5ms (Views: 2.2ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:50 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:50 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:50 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:50 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:50 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:51 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:51 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:51 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:51 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:51 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:51 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:52 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.4ms (Views: 2.4ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:52 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:52 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:52 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:52 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:52 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:53 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.1ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:53 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 6.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:53 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:53 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:53 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:53 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:54 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.5ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:54 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:54 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:54 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:54 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:54 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:55 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:55 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 5.5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:55 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:55 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:55 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:55 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:57 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.5ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:57 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:57 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:57 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:57 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:57 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:58 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:18:58 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:18:58 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:18:58 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:18:58 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:18:58 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:17 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:17 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.0ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:17 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:17 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:17 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:17 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:18 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:18 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:18 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:18 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:18 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:18 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:19 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.3ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:19 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:19 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:19 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:19 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:19 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:20 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.6ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:20 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:20 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:20 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:20 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:20 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:21 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.9ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:21 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:21 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:21 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:21 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:21 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:22 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.9ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:22 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.5ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:22 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:22 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:22 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:22 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:23 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:19:23 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.9ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:19:23 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:19:23 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:19:23 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:19:23 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.0ms (Views: 2.5ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:39 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:39 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:41 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:41 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 5.0ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:41 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:41 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:41 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:41 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:42 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:42 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:42 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:42 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:42 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:42 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:43 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:43 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 5.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:43 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:43 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:43 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:43 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:44 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:44 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 5.0ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:44 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:44 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:44 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:44 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:45 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:45 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:45 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:45 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:45 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:45 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.0ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:46 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:47 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.8ms (Views: 2.4ms | ActiveRecord: 0.0ms) -  (0.7ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:47 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:47 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:47 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:47 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:47 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:48 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.6ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:48 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:48 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:48 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:48 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:48 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:49 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.6ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:49 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:49 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.2ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:49 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:49 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:49 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:50 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.6ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:50 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:50 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:50 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:50 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:50 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.6ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:51 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.9ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:51 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:51 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:51 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:51 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:51 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:52 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (2.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.4ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:52 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:52 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:52 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:52 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:52 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:53 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.1ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:53 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:53 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:53 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:53 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:53 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.4ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:54 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:54 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:54 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:54 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:54 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:55 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:55 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:55 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:55 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:56 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.6ms (Views: 2.4ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:56 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:56 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:56 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:56 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:56 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:57 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.8ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:57 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:57 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:57 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:57 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:57 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:58 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:58 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.4ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:58 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:58 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:58 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:58 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:59 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.7ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:21:59 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:21:59 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:21:59 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:21:59 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:21:59 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:00 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (3.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 18.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:00 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.0ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:00 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:00 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:00 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:00 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:01 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:01 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:01 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:01 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:01 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:01 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.3ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:02 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:02 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:02 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:02 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:02 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:02 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:03 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.8ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:03 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:03 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:03 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:03 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:03 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:34 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.0ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:34 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:34 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:34 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:34 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:34 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.3ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:35 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:22:35 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:22:35 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:22:35 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:22:35 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:22:35 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:08 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.8ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:08 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:08 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:08 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:08 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:08 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:09 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.6ms (Views: 2.0ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:09 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:09 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:09 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:09 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:09 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:51 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.1ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:51 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:51 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:51 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:51 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 4.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:51 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:52 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.1ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:52 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:52 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:52 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:52 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:52 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:53 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.7ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:24:53 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:24:53 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:24:53 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:24:53 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:24:53 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:34 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.0ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:34 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:34 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:34 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:34 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:34 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:35 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.5ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:35 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:35 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:35 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:35 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:35 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:36 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:36 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.4ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:36 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 2.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:36 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:36 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:36 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:37 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.1ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:37 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:26:37 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:37 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:26:37 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:26:37 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:26:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:26:38 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:26:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.0ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:22 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:22 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:22 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.1ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:22 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:22 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:22 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:24 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:24 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:24 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:24 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:24 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:24 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:32 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.8ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:32 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:32 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:32 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:32 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:33 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:34 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.3ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:34 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:34 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:34 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:34 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 4.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:34 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:35 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.1ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:35 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.2ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:35 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:35 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:35 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:35 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:36 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.4ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:36 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:36 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:36 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:36 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:36 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.3ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:37 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.9ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:37 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:37 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:37 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:37 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:37 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 11.9ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:27:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:27:38 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:27:38 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:27:38 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:27:38 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:16 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.7ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:16 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.4ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:31:16 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:16 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:31:16 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:31:16 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:17 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.9ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:17 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.2ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:31:17 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:17 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:31:17 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:31:17 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:18 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:18 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:18 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.6ms (Views: 1.8ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.1ms) rollback transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:28 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:31:28 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:31:28 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:31:28 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:31:28 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:31:28 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:10 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.4ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (1.2ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:10 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.3ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:34:10 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:10 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:34:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.5ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:34:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:56 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.0ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:34:56 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.2ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:34:56 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:34:56 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:34:56 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:34:56 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:36:24 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.3ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:36:24 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:36:24 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:36:24 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:36:24 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:36:24 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:10 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (3.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.9ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (1.2ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:10 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:37:10 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:10 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:37:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.7ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:37:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"content"=>"bar", "title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 17.1ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 15:37:38 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 15:37:38 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00], ["title", "foo"], ["updated_at", Fri, 07 Oct 2016 22:37:38 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 15:37:38 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 15:37:38 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -  (0.3ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:19:01 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:19:01 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 21:19:01 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" -Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 04:19:01 UTC], ["updated_at", 2016-10-08 04:19:01 UTC]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 21:19:01 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] -Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 21:19:01 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] -Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) -  (0.1ms) rollback transaction -  (0.1ms) begin transaction -  (0.2ms) rollback transaction -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:45:07 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 21:45:07 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 21:45:07 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" -Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 04:45:07 UTC], ["updated_at", 2016-10-08 04:45:07 UTC]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 21:45:07 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] -Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) -  (0.9ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 21:45:07 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] -Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.2ms) rollback transaction -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:58:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:58:39 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 22:58:39 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" -Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 05:58:39 UTC], ["updated_at", 2016-10-08 05:58:39 UTC]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 22:58:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] -Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 22:58:39 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] -Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.1ms) rollback transaction -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:59:41 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-07 22:59:41 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-07 22:59:41 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" -Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 05:59:41 UTC], ["updated_at", 2016-10-08 05:59:41 UTC]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-07 22:59:41 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] -Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms) -  (1.2ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-07 22:59:41 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] -Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.1ms) rollback transaction -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:01:50 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -Completed 500 Internal Server Error in 2ms -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:01:50 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -Completed 500 Internal Server Error in 0ms -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:01:50 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} -Completed 500 Internal Server Error in 0ms -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:01:50.949961"], ["updated_at", "2016-10-08 07:01:50.949961"]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:01:50 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 1]] -Completed 500 Internal Server Error in 2ms -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:01:50 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 0]] -Completed 500 Internal Server Error in 0ms -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.1ms) rollback transaction -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:02:18 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -Completed 500 Internal Server Error in 2ms -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:02:18 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -Completed 500 Internal Server Error in 0ms -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:02:18 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" -Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.1ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:02:18.321728"], ["updated_at", "2016-10-08 07:02:18.321728"]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:02:18 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 1]] -Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:02:18 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 0]] -Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.1ms) rollback transaction -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:03:28 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:03:28.606018"], ["updated_at", "2016-10-08 07:03:28.606018"]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16ms (Views: 1.0ms | ActiveRecord: 0.6ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:03:28 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:03:28 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" -Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", "2016-10-08 07:03:28.638087"], ["updated_at", "2016-10-08 07:03:28.638087"]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:03:28 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 1]] -Completed 200 OK in 3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:03:28 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT 1 [["id", 0]] -Completed 404 Not Found in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -  (0.1ms) rollback transaction -  (0.3ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:05:05 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 07:05:05 UTC], ["updated_at", 2016-10-08 07:05:05 UTC]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 11ms (Views: 2.2ms | ActiveRecord: 0.8ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:05:05 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 6ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:05:05 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" -Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("title", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "foo"], ["content", "bar"], ["created_at", 2016-10-08 07:05:05 UTC], ["updated_at", 2016-10-08 07:05:05 UTC]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:05:05 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] -Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.1ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:05:05 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] -Completed 404 Not Found in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.2ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:06:48 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.5ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:06:48 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:06:48 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:06:48 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:06:48 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:06:48 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:14 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:14 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:09:14 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:14 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:09:14 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:09:15 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:55 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.8ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 00:09:55 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.3ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 00:09:55 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00], ["title", "foo"], ["updated_at", Sat, 08 Oct 2016 07:09:55 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 00:09:55 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 4.6ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 00:09:55 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 5.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:46:10 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (4.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 20.2ms (Views: 2.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:46:10 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 5.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 20:46:10 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:46:10 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 20:46:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 5.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 20:46:10 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:47:50 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:47:50 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:47:50 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.7ms (Views: 1.8ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:47:50 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.1ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:49:00 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-08 20:49:00 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-08 20:49:00 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00], ["title", "foo"], ["updated_at", Sun, 09 Oct 2016 03:49:00 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-08 20:49:00 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-08 20:49:00 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:15:48 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.9ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:15:48 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:15:48 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:15:48 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:15:48 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:01 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:01 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:01 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:16:01 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:16:01 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:06 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.4ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:16:06 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.9ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:16:06 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:16:06 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 5.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:16:06 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:17:57 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.8ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:17:57 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.8ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:17:57 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:17:57 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:17:57 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:19:45 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.6ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:19:45 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 09:19:45 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:19:45 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:19:45 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:19:45 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:59:12 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (3.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.3ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.2ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 09:59:12 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 09:59:12 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.6ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.7ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 16:59:12 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 09:59:12 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.0ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 09:59:12 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:19:27 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (11.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:19:27 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:19:27 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 61.7ms (Views: 6.2ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:19:28 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 15.9ms (Views: 0.4ms | ActiveRecord: 0.2ms) -  (0.1ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 13:19:28 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 8.2ms (Views: 0.3ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.1ms) begin transaction -  (0.1ms) SAVEPOINT active_record_1 - SQL (1.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:19:28 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:19:28 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 13:19:28 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 15.3ms (Views: 0.6ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 13:19:28 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.6ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 4.5ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.1ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:27:34 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (10.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 55.7ms (Views: 5.6ms | ActiveRecord: 0.0ms) -  (1.3ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:27:34 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 15.1ms (Views: 0.4ms | ActiveRecord: 0.3ms) -  (0.1ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 13:27:34 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 5.8ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.1ms) begin transaction -  (0.1ms) SAVEPOINT active_record_1 - SQL (0.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:27:34 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 13:27:34 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 11.1ms (Views: 0.4ms | ActiveRecord: 0.0ms) -  (1.3ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 13:27:34 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.4ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 3.7ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.2ms) rollback transaction -  (0.1ms) begin transaction -Connecting to database specified by database.yml -  (0.3ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:28:59 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (10.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 59.4ms (Views: 5.8ms | ActiveRecord: 0.0ms) -  (1.4ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 13:28:59 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 13.8ms (Views: 0.5ms | ActiveRecord: 0.2ms) -  (0.1ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 13:28:59 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 5.6ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.2ms) begin transaction -  (0.1ms) SAVEPOINT active_record_1 - SQL (0.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 20:28:59 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 13:28:59 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 10.7ms (Views: 0.4ms | ActiveRecord: 0.0ms) -  (1.4ms) rollback transaction -  (0.2ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 13:28:59 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 3.5ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.1ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 14:31:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 15.9ms (Views: 1.6ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 14:31:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 14:31:46 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 21:31:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 14:31:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.3ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 14:31:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) rollback transaction -Connecting to database specified by database.yml -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:12:29 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (10.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 60.1ms (Views: 5.5ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.2ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:12:29 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 17.1ms (Views: 0.6ms | ActiveRecord: 0.2ms) -  (0.1ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:12:29 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.3ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 6.6ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.1ms) begin transaction -  (0.1ms) SAVEPOINT active_record_1 - SQL (0.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:12:29 UTC +00:00]] -  (0.1ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:12:29 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.2ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 11.7ms (Views: 0.4ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:12:29 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.3ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:13:22 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.8ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.9ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:13:22 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:13:22 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:13:22 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:13:22 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:13:22 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:17:12 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.6ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:17:12 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:17:12 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:17:12 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:17:12 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:17:12 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:40:23 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.9ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 15:40:23 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 15:40:23 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 22:40:23 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 15:40:23 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 15:40:23 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 16:42:44 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.5ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 16:42:44 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 16:42:44 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00], ["title", "foo"], ["updated_at", Mon, 10 Oct 2016 23:42:44 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 16:42:44 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 16:42:44 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:15 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (3.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.1ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:15 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.6ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:37:15 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:15 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:37:15 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:37:15 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:52 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.2ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:37:52 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:37:52 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:37:52 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:37:52 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:37:52 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:39:41 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:39:41 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.6ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:39:41 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:39:41 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:39:41 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:39:41 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:43:31 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.1ms) SAVEPOINT active_record_1 - SQL (2.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.0ms (Views: 1.5ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 17:43:31 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.5ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 17:43:31 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.4ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 00:43:31 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 17:43:31 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.2ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.7ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 17:43:31 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.1ms) begin transaction -Connecting to database specified by database.yml -  (0.2ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 18:02:04 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.6ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 01:02:04 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 01:02:04 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.6ms (Views: 1.4ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-10 18:02:05 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-10 18:02:05 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 01:02:05 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 01:02:05 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-10 18:02:05 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-10 18:02:05 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (4.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:51:13 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:51:13 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "foo"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 16.2ms (Views: 1.9ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "foo"=>"bar", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 6.6ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar&foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar", "foo"=>"bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 2.0ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.3ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:51:59 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700 -Processing by BlogsController#show as JSON - Parameters: {"foo"=>"bar", "id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid?foo=bar" for 127.0.0.1 at 2016-10-11 10:51:59 -0700 -Processing by BlogsController#show as JSON - Parameters: {"foo"=>"bar", "id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "foo"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -Completed 500 Internal Server Error in 0.4ms -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "foo"=>"bar", "blog"=>{"title"=>"foo"}} -Completed 500 Internal Server Error in 0.1ms -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar&foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar", "foo"=>"bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" -Completed 200 OK in 5.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:52:27 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:52:27 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700 -Processing by BlogsController#show as JSON - Parameters: {"foo"=>"bar", "id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.8ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:27 -0700 -Processing by BlogsController#show as JSON - Parameters: {"foo"=>"bar", "id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "foo"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -Completed 500 Internal Server Error in 0.3ms -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "foo"=>"bar", "blog"=>{"title"=>"foo"}} -Completed 500 Internal Server Error in 0.1ms -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar&foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar", "foo"=>"bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" -Completed 200 OK in 5.1ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:52:40 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:52:40 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700 -Processing by BlogsController#show as JSON - Parameters: {"foo"=>"bar", "id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.5ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid?foo=bar" for 127.0.0.1 at 2016-10-11 10:52:40 -0700 -Processing by BlogsController#show as JSON - Parameters: {"foo"=>"bar", "id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.8ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 17:59:50 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 17:59:50 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -  (0.8ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:00:08 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.5ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:00:08 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:00:08 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:00:08 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:00:09 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:00:09 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:22 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -Completed 500 Internal Server Error in 0.8ms -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:22 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -Completed 500 Internal Server Error in 0.5ms -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:01:22 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} -Completed 500 Internal Server Error in 0.6ms -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:01:22 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:01:22 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:01:22 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} -Completed 500 Internal Server Error in 0.6ms -  (0.9ms) rollback transaction -  (0.1ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:01:22 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} -Completed 500 Internal Server Error in 0.6ms -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:36 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.7ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:01:36 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:01:36 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.5ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:01:36 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:01:36 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:01:36 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:02:19 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.1ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:02:19 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.1ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 5.0ms (Views: 0.2ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:02:19 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:02:19 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:02:19 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:02:19 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.9ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:04:50 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (1.9ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.2ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs" for 127.0.0.1 at 2016-10-11 11:04:50 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar" for 127.0.0.1 at 2016-10-11 11:04:50 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 18:04:50 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1" for 127.0.0.1 at 2016-10-11 11:04:50 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid" for 127.0.0.1 at 2016-10-11 11:04:50 -0700 -Processing by BlogsController#show as JSON - Parameters: {"id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 19:44:30 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 19:44:30 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.0ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 14.4ms (Views: 1.7ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.3ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00], ["title", "foo"], ["updated_at", Tue, 11 Oct 2016 19:50:40 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700 -Processing by BlogsController#show as JSON - Parameters: {"api_key"=>"fake_key", "id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.5ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 12:50:40 -0700 -Processing by BlogsController#show as JSON - Parameters: {"api_key"=>"fake_key", "id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 1.0ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.5ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.0ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 4.3ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:27:46 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"api_key"=>"fake_key", "id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.6ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:27:46 -0700 -Processing by BlogsController#show as JSON - Parameters: {"api_key"=>"fake_key", "id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.0ms) begin transaction -Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 13.4ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.0ms) rollback transaction -  (0.0ms) begin transaction -Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.7ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:29:48 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700 -Processing by BlogsController#show as JSON - Parameters: {"api_key"=>"fake_key", "id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 2.4ms (Views: 0.1ms | ActiveRecord: 0.0ms) -  (0.4ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:29:48 -0700 -Processing by BlogsController#show as JSON - Parameters: {"api_key"=>"fake_key", "id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.7ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.1ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction -Connecting to database specified by database.yml -  (0.1ms) begin transaction -Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "content"=>"bar", "api_key"=>"fake_key", "blog"=>{"title"=>"foo", "content"=>"bar"}} -  (0.0ms) SAVEPOINT active_record_1 - SQL (2.1ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Completed 201 Created in 12.3ms (Views: 1.3ms | ActiveRecord: 0.0ms) -  (1.1ms) rollback transaction -  (0.1ms) begin transaction -Started POST "/blogs?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700 -Processing by BlogsController#create as JSON - Parameters: {"title"=>"foo", "api_key"=>"fake_key", "blog"=>{"title"=>"foo"}} -  (0.0ms) SAVEPOINT active_record_1 -  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1 -Completed 422 Unprocessable Entity in 3.8ms (Views: 0.1ms | ActiveRecord: 0.1ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs?keywords=foo+bar&api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700 -Processing by BlogsController#index as JSON - Parameters: {"keywords"=>"foo bar", "api_key"=>"fake_key"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs"  -Completed 200 OK in 1.4ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -  (0.0ms) SAVEPOINT active_record_1 - SQL (0.2ms) INSERT INTO "blogs" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "bar"], ["created_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00], ["title", "foo"], ["updated_at", Wed, 12 Oct 2016 01:30:31 UTC +00:00]] -  (0.0ms) RELEASE SAVEPOINT active_record_1 -Started GET "/blogs/1?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700 -Processing by BlogsController#show as JSON - Parameters: {"api_key"=>"fake_key", "id"=>"1"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 1 LIMIT 1 -Completed 200 OK in 3.6ms (Views: 0.2ms | ActiveRecord: 0.0ms) -  (0.3ms) rollback transaction -  (0.0ms) begin transaction -Started GET "/blogs/invalid?api_key=fake_key" for 127.0.0.1 at 2016-10-11 18:30:31 -0700 -Processing by BlogsController#show as JSON - Parameters: {"api_key"=>"fake_key", "id"=>"invalid"} - Blog Load (0.1ms) SELECT "blogs".* FROM "blogs" WHERE "blogs"."id" = 0 LIMIT 1 -Completed 404 Not Found in 0.8ms (Views: 0.0ms | ActiveRecord: 0.0ms) -  (0.0ms) rollback transaction -  (0.0ms) begin transaction -Connecting to database specified by database.yml -  (0.1ms) rollback transaction diff --git a/test-app/tmp/cache/assets/C4E/AF0/sprockets%2F7c306050f061626e0f3950e79621e7e4 b/test-app/tmp/cache/assets/C4E/AF0/sprockets%2F7c306050f061626e0f3950e79621e7e4 deleted file mode 100644 index 6202a55..0000000 Binary files a/test-app/tmp/cache/assets/C4E/AF0/sprockets%2F7c306050f061626e0f3950e79621e7e4 and /dev/null differ diff --git a/test-app/tmp/cache/assets/C64/190/sprockets%2F00050310cc269c318fea8890521c033c b/test-app/tmp/cache/assets/C64/190/sprockets%2F00050310cc269c318fea8890521c033c deleted file mode 100644 index b8e8cb0..0000000 Binary files a/test-app/tmp/cache/assets/C64/190/sprockets%2F00050310cc269c318fea8890521c033c and /dev/null differ diff --git a/test-app/tmp/cache/assets/C78/AA0/sprockets%2F7540403ab706922217f46d51cf078d2f b/test-app/tmp/cache/assets/C78/AA0/sprockets%2F7540403ab706922217f46d51cf078d2f deleted file mode 100644 index f32518a..0000000 Binary files a/test-app/tmp/cache/assets/C78/AA0/sprockets%2F7540403ab706922217f46d51cf078d2f and /dev/null differ diff --git a/test-app/tmp/cache/assets/C80/370/sprockets%2Fab6f8830a4155458f0924245c5765a3c b/test-app/tmp/cache/assets/C80/370/sprockets%2Fab6f8830a4155458f0924245c5765a3c deleted file mode 100644 index 3f58d07..0000000 Binary files a/test-app/tmp/cache/assets/C80/370/sprockets%2Fab6f8830a4155458f0924245c5765a3c and /dev/null differ diff --git a/test-app/tmp/cache/assets/C87/590/sprockets%2F427498418547e04b26baf60dc45f7922 b/test-app/tmp/cache/assets/C87/590/sprockets%2F427498418547e04b26baf60dc45f7922 deleted file mode 100644 index bf4a61d..0000000 Binary files a/test-app/tmp/cache/assets/C87/590/sprockets%2F427498418547e04b26baf60dc45f7922 and /dev/null differ diff --git a/test-app/tmp/cache/assets/C87/8C0/sprockets%2F758833f65c3573a325c9b5c293d38d01 b/test-app/tmp/cache/assets/C87/8C0/sprockets%2F758833f65c3573a325c9b5c293d38d01 deleted file mode 100644 index 18519a0..0000000 Binary files a/test-app/tmp/cache/assets/C87/8C0/sprockets%2F758833f65c3573a325c9b5c293d38d01 and /dev/null differ diff --git a/test-app/tmp/cache/assets/CA2/360/sprockets%2F11fb992712bf941fc5444b1081249ab0 b/test-app/tmp/cache/assets/CA2/360/sprockets%2F11fb992712bf941fc5444b1081249ab0 deleted file mode 100644 index 42c5e35..0000000 Binary files a/test-app/tmp/cache/assets/CA2/360/sprockets%2F11fb992712bf941fc5444b1081249ab0 and /dev/null differ diff --git a/test-app/tmp/cache/assets/CA4/590/sprockets%2F5a2393364111291ca6ef1b8c60f261e8 b/test-app/tmp/cache/assets/CA4/590/sprockets%2F5a2393364111291ca6ef1b8c60f261e8 deleted file mode 100644 index e838d8d..0000000 Binary files a/test-app/tmp/cache/assets/CA4/590/sprockets%2F5a2393364111291ca6ef1b8c60f261e8 and /dev/null differ diff --git a/test-app/tmp/cache/assets/CB2/210/sprockets%2F2bd1110ff02ed73884f1e9b559661186 b/test-app/tmp/cache/assets/CB2/210/sprockets%2F2bd1110ff02ed73884f1e9b559661186 deleted file mode 100644 index aaf8394..0000000 Binary files a/test-app/tmp/cache/assets/CB2/210/sprockets%2F2bd1110ff02ed73884f1e9b559661186 and /dev/null differ diff --git a/test-app/tmp/cache/assets/CB7/300/sprockets%2F4f47f6c8456b82a92ff54a533567d010 b/test-app/tmp/cache/assets/CB7/300/sprockets%2F4f47f6c8456b82a92ff54a533567d010 deleted file mode 100644 index 5d733f3..0000000 Binary files a/test-app/tmp/cache/assets/CB7/300/sprockets%2F4f47f6c8456b82a92ff54a533567d010 and /dev/null differ diff --git a/test-app/tmp/cache/assets/CD2/CC0/sprockets%2Fb5f9f7793895a857b56b9c056e41494d b/test-app/tmp/cache/assets/CD2/CC0/sprockets%2Fb5f9f7793895a857b56b9c056e41494d deleted file mode 100644 index c612962..0000000 Binary files a/test-app/tmp/cache/assets/CD2/CC0/sprockets%2Fb5f9f7793895a857b56b9c056e41494d and /dev/null differ diff --git a/test-app/tmp/cache/assets/CD8/4F0/sprockets%2F955386f7956a67dd17889fe10ec9193f b/test-app/tmp/cache/assets/CD8/4F0/sprockets%2F955386f7956a67dd17889fe10ec9193f deleted file mode 100644 index 6f55022..0000000 Binary files a/test-app/tmp/cache/assets/CD8/4F0/sprockets%2F955386f7956a67dd17889fe10ec9193f and /dev/null differ diff --git a/test-app/tmp/cache/assets/CDB/B00/sprockets%2F68c927ba32a73c662b01b349641c9c7b b/test-app/tmp/cache/assets/CDB/B00/sprockets%2F68c927ba32a73c662b01b349641c9c7b deleted file mode 100644 index 977cbb5..0000000 Binary files a/test-app/tmp/cache/assets/CDB/B00/sprockets%2F68c927ba32a73c662b01b349641c9c7b and /dev/null differ diff --git a/test-app/tmp/cache/assets/CDF/B60/sprockets%2Ffcb3a67d2880b0a9415a61c93366691e b/test-app/tmp/cache/assets/CDF/B60/sprockets%2Ffcb3a67d2880b0a9415a61c93366691e deleted file mode 100644 index 367076c..0000000 Binary files a/test-app/tmp/cache/assets/CDF/B60/sprockets%2Ffcb3a67d2880b0a9415a61c93366691e and /dev/null differ diff --git a/test-app/tmp/cache/assets/CE1/870/sprockets%2Ff2fff22f07d184d50c5e4048e5370393 b/test-app/tmp/cache/assets/CE1/870/sprockets%2Ff2fff22f07d184d50c5e4048e5370393 deleted file mode 100644 index 2da88ea..0000000 Binary files a/test-app/tmp/cache/assets/CE1/870/sprockets%2Ff2fff22f07d184d50c5e4048e5370393 and /dev/null differ diff --git a/test-app/tmp/cache/assets/CE4/180/sprockets%2F1a44ff59443798bfb51541f22882eab3 b/test-app/tmp/cache/assets/CE4/180/sprockets%2F1a44ff59443798bfb51541f22882eab3 deleted file mode 100644 index 0a195b3..0000000 Binary files a/test-app/tmp/cache/assets/CE4/180/sprockets%2F1a44ff59443798bfb51541f22882eab3 and /dev/null differ diff --git a/test-app/tmp/cache/assets/CEA/580/sprockets%2F00d7be933e59b0847ee792e7e42a5219 b/test-app/tmp/cache/assets/CEA/580/sprockets%2F00d7be933e59b0847ee792e7e42a5219 deleted file mode 100644 index 2f29bfb..0000000 Binary files a/test-app/tmp/cache/assets/CEA/580/sprockets%2F00d7be933e59b0847ee792e7e42a5219 and /dev/null differ diff --git a/test-app/tmp/cache/assets/CED/8A0/sprockets%2Fbb7eb4c24b93d341d1040283200a2c6d b/test-app/tmp/cache/assets/CED/8A0/sprockets%2Fbb7eb4c24b93d341d1040283200a2c6d deleted file mode 100644 index f7f0272..0000000 Binary files a/test-app/tmp/cache/assets/CED/8A0/sprockets%2Fbb7eb4c24b93d341d1040283200a2c6d and /dev/null differ diff --git a/test-app/tmp/cache/assets/CFE/FF0/sprockets%2Ffd931ba87c789063c98f549369b0df83 b/test-app/tmp/cache/assets/CFE/FF0/sprockets%2Ffd931ba87c789063c98f549369b0df83 deleted file mode 100644 index c4f75c5..0000000 Binary files a/test-app/tmp/cache/assets/CFE/FF0/sprockets%2Ffd931ba87c789063c98f549369b0df83 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D09/E50/sprockets%2F64316d413a73d4addac61374a299a5f7 b/test-app/tmp/cache/assets/D09/E50/sprockets%2F64316d413a73d4addac61374a299a5f7 deleted file mode 100644 index 0f4f0e1..0000000 Binary files a/test-app/tmp/cache/assets/D09/E50/sprockets%2F64316d413a73d4addac61374a299a5f7 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D0A/4A0/sprockets%2F11f5160dd16d1bce2a4838b5e89719b2 b/test-app/tmp/cache/assets/D0A/4A0/sprockets%2F11f5160dd16d1bce2a4838b5e89719b2 deleted file mode 100644 index 3ac3cc1..0000000 Binary files a/test-app/tmp/cache/assets/D0A/4A0/sprockets%2F11f5160dd16d1bce2a4838b5e89719b2 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D0D/6B0/sprockets%2Fcdc2c396ea6666925ce18c1a225334a8 b/test-app/tmp/cache/assets/D0D/6B0/sprockets%2Fcdc2c396ea6666925ce18c1a225334a8 deleted file mode 100644 index e3a28c7..0000000 Binary files a/test-app/tmp/cache/assets/D0D/6B0/sprockets%2Fcdc2c396ea6666925ce18c1a225334a8 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D10/090/sprockets%2Fbd64bc7457667740f7d4a63c2f28a2a2 b/test-app/tmp/cache/assets/D10/090/sprockets%2Fbd64bc7457667740f7d4a63c2f28a2a2 deleted file mode 100644 index aaa1679..0000000 Binary files a/test-app/tmp/cache/assets/D10/090/sprockets%2Fbd64bc7457667740f7d4a63c2f28a2a2 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D10/AF0/sprockets%2F2a62867b314366f2bc2ebe6c10e7c887 b/test-app/tmp/cache/assets/D10/AF0/sprockets%2F2a62867b314366f2bc2ebe6c10e7c887 deleted file mode 100644 index 5b0fae7..0000000 Binary files a/test-app/tmp/cache/assets/D10/AF0/sprockets%2F2a62867b314366f2bc2ebe6c10e7c887 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D11/D90/sprockets%2Fe2f7cf70954a16a5641a9142f1cd865d b/test-app/tmp/cache/assets/D11/D90/sprockets%2Fe2f7cf70954a16a5641a9142f1cd865d deleted file mode 100644 index 3bf6e50..0000000 Binary files a/test-app/tmp/cache/assets/D11/D90/sprockets%2Fe2f7cf70954a16a5641a9142f1cd865d and /dev/null differ diff --git a/test-app/tmp/cache/assets/D28/F90/sprockets%2F1453cb26b51cdf2c7b550360fb0f5d23 b/test-app/tmp/cache/assets/D28/F90/sprockets%2F1453cb26b51cdf2c7b550360fb0f5d23 deleted file mode 100644 index d661cb6..0000000 Binary files a/test-app/tmp/cache/assets/D28/F90/sprockets%2F1453cb26b51cdf2c7b550360fb0f5d23 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D2E/F40/sprockets%2F3ba0a0bc093c0764a2d1c9a9570e0f89 b/test-app/tmp/cache/assets/D2E/F40/sprockets%2F3ba0a0bc093c0764a2d1c9a9570e0f89 deleted file mode 100644 index 2c577f0..0000000 Binary files a/test-app/tmp/cache/assets/D2E/F40/sprockets%2F3ba0a0bc093c0764a2d1c9a9570e0f89 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D30/160/sprockets%2F52922cde7c2a2c5051d7be050018efe7 b/test-app/tmp/cache/assets/D30/160/sprockets%2F52922cde7c2a2c5051d7be050018efe7 deleted file mode 100644 index 81b3f3c..0000000 Binary files a/test-app/tmp/cache/assets/D30/160/sprockets%2F52922cde7c2a2c5051d7be050018efe7 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D34/D00/sprockets%2F4d5f0581380207bda4235f633fce2fbd b/test-app/tmp/cache/assets/D34/D00/sprockets%2F4d5f0581380207bda4235f633fce2fbd deleted file mode 100644 index 2f90c88..0000000 Binary files a/test-app/tmp/cache/assets/D34/D00/sprockets%2F4d5f0581380207bda4235f633fce2fbd and /dev/null differ diff --git a/test-app/tmp/cache/assets/D3D/7B0/sprockets%2Feb7aac183fc50477ae770161df27774a b/test-app/tmp/cache/assets/D3D/7B0/sprockets%2Feb7aac183fc50477ae770161df27774a deleted file mode 100644 index 04d10d9..0000000 Binary files a/test-app/tmp/cache/assets/D3D/7B0/sprockets%2Feb7aac183fc50477ae770161df27774a and /dev/null differ diff --git a/test-app/tmp/cache/assets/D41/BD0/sprockets%2F1691608e154bc20d7bdef63e73de47c5 b/test-app/tmp/cache/assets/D41/BD0/sprockets%2F1691608e154bc20d7bdef63e73de47c5 deleted file mode 100644 index 42e6f69..0000000 Binary files a/test-app/tmp/cache/assets/D41/BD0/sprockets%2F1691608e154bc20d7bdef63e73de47c5 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D42/5F0/sprockets%2F42e9a797c5f0e492bdb23764610ecfe0 b/test-app/tmp/cache/assets/D42/5F0/sprockets%2F42e9a797c5f0e492bdb23764610ecfe0 deleted file mode 100644 index 21ea99b..0000000 Binary files a/test-app/tmp/cache/assets/D42/5F0/sprockets%2F42e9a797c5f0e492bdb23764610ecfe0 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D48/8E0/sprockets%2Fb3abb7b107c259387cdc987229fbe547 b/test-app/tmp/cache/assets/D48/8E0/sprockets%2Fb3abb7b107c259387cdc987229fbe547 deleted file mode 100644 index 19ed0ed..0000000 Binary files a/test-app/tmp/cache/assets/D48/8E0/sprockets%2Fb3abb7b107c259387cdc987229fbe547 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D49/540/sprockets%2F5c700ef877e083db25d4996c8dbe414a b/test-app/tmp/cache/assets/D49/540/sprockets%2F5c700ef877e083db25d4996c8dbe414a deleted file mode 100644 index c2d1a0a..0000000 Binary files a/test-app/tmp/cache/assets/D49/540/sprockets%2F5c700ef877e083db25d4996c8dbe414a and /dev/null differ diff --git a/test-app/tmp/cache/assets/D4B/370/sprockets%2F7cd89d513796f56bb19c3a05daa7f249 b/test-app/tmp/cache/assets/D4B/370/sprockets%2F7cd89d513796f56bb19c3a05daa7f249 deleted file mode 100644 index 30a7cfe..0000000 Binary files a/test-app/tmp/cache/assets/D4B/370/sprockets%2F7cd89d513796f56bb19c3a05daa7f249 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D51/0A0/sprockets%2F4f64ebb7e1c55e37f601d892d16e79b9 b/test-app/tmp/cache/assets/D51/0A0/sprockets%2F4f64ebb7e1c55e37f601d892d16e79b9 deleted file mode 100644 index 238064c..0000000 Binary files a/test-app/tmp/cache/assets/D51/0A0/sprockets%2F4f64ebb7e1c55e37f601d892d16e79b9 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D52/B50/sprockets%2Fc489047dc6d75e7ebde47371785b61af b/test-app/tmp/cache/assets/D52/B50/sprockets%2Fc489047dc6d75e7ebde47371785b61af deleted file mode 100644 index 68659d8..0000000 Binary files a/test-app/tmp/cache/assets/D52/B50/sprockets%2Fc489047dc6d75e7ebde47371785b61af and /dev/null differ diff --git a/test-app/tmp/cache/assets/D58/B00/sprockets%2Fddd71f3676faf7d597112f758eec0479 b/test-app/tmp/cache/assets/D58/B00/sprockets%2Fddd71f3676faf7d597112f758eec0479 deleted file mode 100644 index d14cb7a..0000000 Binary files a/test-app/tmp/cache/assets/D58/B00/sprockets%2Fddd71f3676faf7d597112f758eec0479 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D62/150/sprockets%2F5078f84b3f0449a40bef0ac0f6d1c52c b/test-app/tmp/cache/assets/D62/150/sprockets%2F5078f84b3f0449a40bef0ac0f6d1c52c deleted file mode 100644 index 7e4e87d..0000000 Binary files a/test-app/tmp/cache/assets/D62/150/sprockets%2F5078f84b3f0449a40bef0ac0f6d1c52c and /dev/null differ diff --git a/test-app/tmp/cache/assets/D69/420/sprockets%2Fe4a1588aab113dd81f5f3e227477db2e b/test-app/tmp/cache/assets/D69/420/sprockets%2Fe4a1588aab113dd81f5f3e227477db2e deleted file mode 100644 index 9d8c2e7..0000000 Binary files a/test-app/tmp/cache/assets/D69/420/sprockets%2Fe4a1588aab113dd81f5f3e227477db2e and /dev/null differ diff --git a/test-app/tmp/cache/assets/D6D/070/sprockets%2F6f3c1168b3aafef0781da6472da0c689 b/test-app/tmp/cache/assets/D6D/070/sprockets%2F6f3c1168b3aafef0781da6472da0c689 deleted file mode 100644 index 985a1de..0000000 Binary files a/test-app/tmp/cache/assets/D6D/070/sprockets%2F6f3c1168b3aafef0781da6472da0c689 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D6E/FA0/sprockets%2F9387eef4ddc01a41fb7386f0002f7ab9 b/test-app/tmp/cache/assets/D6E/FA0/sprockets%2F9387eef4ddc01a41fb7386f0002f7ab9 deleted file mode 100644 index 6befae5..0000000 Binary files a/test-app/tmp/cache/assets/D6E/FA0/sprockets%2F9387eef4ddc01a41fb7386f0002f7ab9 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D72/640/sprockets%2F8a78810bd25bbf77cb24c6fe4424c5d7 b/test-app/tmp/cache/assets/D72/640/sprockets%2F8a78810bd25bbf77cb24c6fe4424c5d7 deleted file mode 100644 index 881a39b..0000000 Binary files a/test-app/tmp/cache/assets/D72/640/sprockets%2F8a78810bd25bbf77cb24c6fe4424c5d7 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D7D/B00/sprockets%2F68cf59942b931ea4643d029ffba6dfd5 b/test-app/tmp/cache/assets/D7D/B00/sprockets%2F68cf59942b931ea4643d029ffba6dfd5 deleted file mode 100644 index 317fbc4..0000000 Binary files a/test-app/tmp/cache/assets/D7D/B00/sprockets%2F68cf59942b931ea4643d029ffba6dfd5 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D93/240/sprockets%2F0bf174208d2cbe8aad74a7a2c9a19d91 b/test-app/tmp/cache/assets/D93/240/sprockets%2F0bf174208d2cbe8aad74a7a2c9a19d91 deleted file mode 100644 index 14badc7..0000000 Binary files a/test-app/tmp/cache/assets/D93/240/sprockets%2F0bf174208d2cbe8aad74a7a2c9a19d91 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D96/9C0/sprockets%2F102b13e4fc5fc8eb572f4f3062da5b7f b/test-app/tmp/cache/assets/D96/9C0/sprockets%2F102b13e4fc5fc8eb572f4f3062da5b7f deleted file mode 100644 index 689821e..0000000 Binary files a/test-app/tmp/cache/assets/D96/9C0/sprockets%2F102b13e4fc5fc8eb572f4f3062da5b7f and /dev/null differ diff --git a/test-app/tmp/cache/assets/D9C/F40/sprockets%2Fb4a9b5cff3ed835f9028c49cd0e50d00 b/test-app/tmp/cache/assets/D9C/F40/sprockets%2Fb4a9b5cff3ed835f9028c49cd0e50d00 deleted file mode 100644 index 897c160..0000000 Binary files a/test-app/tmp/cache/assets/D9C/F40/sprockets%2Fb4a9b5cff3ed835f9028c49cd0e50d00 and /dev/null differ diff --git a/test-app/tmp/cache/assets/D9F/6B0/sprockets%2Fd7b1c1d7f4f4046dba224d4d5e6c9c77 b/test-app/tmp/cache/assets/D9F/6B0/sprockets%2Fd7b1c1d7f4f4046dba224d4d5e6c9c77 deleted file mode 100644 index 69221d5..0000000 Binary files a/test-app/tmp/cache/assets/D9F/6B0/sprockets%2Fd7b1c1d7f4f4046dba224d4d5e6c9c77 and /dev/null differ diff --git a/test-app/tmp/cache/assets/DA2/B20/sprockets%2Fcd96057c71f9d40539be8a3bbfbaa619 b/test-app/tmp/cache/assets/DA2/B20/sprockets%2Fcd96057c71f9d40539be8a3bbfbaa619 deleted file mode 100644 index 9c65fd3..0000000 Binary files a/test-app/tmp/cache/assets/DA2/B20/sprockets%2Fcd96057c71f9d40539be8a3bbfbaa619 and /dev/null differ diff --git a/test-app/tmp/cache/assets/DA3/690/sprockets%2Fe7a3e2b664d989f57a1c82ba67eea1c0 b/test-app/tmp/cache/assets/DA3/690/sprockets%2Fe7a3e2b664d989f57a1c82ba67eea1c0 deleted file mode 100644 index c192955..0000000 Binary files a/test-app/tmp/cache/assets/DA3/690/sprockets%2Fe7a3e2b664d989f57a1c82ba67eea1c0 and /dev/null differ diff --git a/test-app/tmp/cache/assets/DA6/3D0/sprockets%2Fe227ccc2cf546b7c209f571469f0fdfd b/test-app/tmp/cache/assets/DA6/3D0/sprockets%2Fe227ccc2cf546b7c209f571469f0fdfd deleted file mode 100644 index 10f282f..0000000 Binary files a/test-app/tmp/cache/assets/DA6/3D0/sprockets%2Fe227ccc2cf546b7c209f571469f0fdfd and /dev/null differ diff --git a/test-app/tmp/cache/assets/DB2/820/sprockets%2Fa99e88d06c0e4cb3797ef037a7fbc9c5 b/test-app/tmp/cache/assets/DB2/820/sprockets%2Fa99e88d06c0e4cb3797ef037a7fbc9c5 deleted file mode 100644 index c82d7af..0000000 Binary files a/test-app/tmp/cache/assets/DB2/820/sprockets%2Fa99e88d06c0e4cb3797ef037a7fbc9c5 and /dev/null differ diff --git a/test-app/tmp/cache/assets/DB9/820/sprockets%2F15cbbf713e1fa1c0acebfe9416f20822 b/test-app/tmp/cache/assets/DB9/820/sprockets%2F15cbbf713e1fa1c0acebfe9416f20822 deleted file mode 100644 index 865b3f3..0000000 Binary files a/test-app/tmp/cache/assets/DB9/820/sprockets%2F15cbbf713e1fa1c0acebfe9416f20822 and /dev/null differ diff --git a/test-app/tmp/cache/assets/DCC/FC0/sprockets%2F91ddbbd1eb330ac823df75eeb571e469 b/test-app/tmp/cache/assets/DCC/FC0/sprockets%2F91ddbbd1eb330ac823df75eeb571e469 deleted file mode 100644 index 4526c44..0000000 Binary files a/test-app/tmp/cache/assets/DCC/FC0/sprockets%2F91ddbbd1eb330ac823df75eeb571e469 and /dev/null differ diff --git a/test-app/tmp/cache/assets/DD1/6A0/sprockets%2F488c28f2ccc4b46bf191bfd442b5c8ce b/test-app/tmp/cache/assets/DD1/6A0/sprockets%2F488c28f2ccc4b46bf191bfd442b5c8ce deleted file mode 100644 index e3ad23b..0000000 Binary files a/test-app/tmp/cache/assets/DD1/6A0/sprockets%2F488c28f2ccc4b46bf191bfd442b5c8ce and /dev/null differ diff --git a/test-app/tmp/cache/assets/DDB/FB0/sprockets%2F2ac4f7f4bdde1a79afeb7783f762664a b/test-app/tmp/cache/assets/DDB/FB0/sprockets%2F2ac4f7f4bdde1a79afeb7783f762664a deleted file mode 100644 index 50d28d5..0000000 Binary files a/test-app/tmp/cache/assets/DDB/FB0/sprockets%2F2ac4f7f4bdde1a79afeb7783f762664a and /dev/null differ diff --git a/test-app/tmp/cache/assets/DF4/5D0/sprockets%2F8ccbedb61902c4252e51d5bcfba792fa b/test-app/tmp/cache/assets/DF4/5D0/sprockets%2F8ccbedb61902c4252e51d5bcfba792fa deleted file mode 100644 index a5de4b4..0000000 Binary files a/test-app/tmp/cache/assets/DF4/5D0/sprockets%2F8ccbedb61902c4252e51d5bcfba792fa and /dev/null differ diff --git a/test-app/tmp/cache/assets/DF6/9A0/sprockets%2Fcc50cd4b22c3bdc9f646932129ebcebe b/test-app/tmp/cache/assets/DF6/9A0/sprockets%2Fcc50cd4b22c3bdc9f646932129ebcebe deleted file mode 100644 index e197839..0000000 Binary files a/test-app/tmp/cache/assets/DF6/9A0/sprockets%2Fcc50cd4b22c3bdc9f646932129ebcebe and /dev/null differ diff --git a/test-app/tmp/cache/assets/DFB/100/sprockets%2Fdecdca31df0156ec27e61c68b8f2b46e b/test-app/tmp/cache/assets/DFB/100/sprockets%2Fdecdca31df0156ec27e61c68b8f2b46e deleted file mode 100644 index cd5a04f..0000000 Binary files a/test-app/tmp/cache/assets/DFB/100/sprockets%2Fdecdca31df0156ec27e61c68b8f2b46e and /dev/null differ diff --git a/test-app/tmp/cache/assets/E2E/9A0/sprockets%2Fdc4cae860ed25cdea928ca3a9d75de33 b/test-app/tmp/cache/assets/E2E/9A0/sprockets%2Fdc4cae860ed25cdea928ca3a9d75de33 deleted file mode 100644 index b6a8c21..0000000 Binary files a/test-app/tmp/cache/assets/E2E/9A0/sprockets%2Fdc4cae860ed25cdea928ca3a9d75de33 and /dev/null differ diff --git a/test-app/tmp/cache/assets/E5B/060/sprockets%2Fc9be6e359dfaada1324e3ddaf3158bef b/test-app/tmp/cache/assets/E5B/060/sprockets%2Fc9be6e359dfaada1324e3ddaf3158bef deleted file mode 100644 index 59098e3..0000000 Binary files a/test-app/tmp/cache/assets/E5B/060/sprockets%2Fc9be6e359dfaada1324e3ddaf3158bef and /dev/null differ diff --git a/test-app/tmp/cache/assets/E7B/B30/sprockets%2Ff9a4ddabcbb1fd40d740c7d1faf82c0b b/test-app/tmp/cache/assets/E7B/B30/sprockets%2Ff9a4ddabcbb1fd40d740c7d1faf82c0b deleted file mode 100644 index 7106f49..0000000 Binary files a/test-app/tmp/cache/assets/E7B/B30/sprockets%2Ff9a4ddabcbb1fd40d740c7d1faf82c0b and /dev/null differ diff --git a/test-app/tmp/cache/assets/EED/630/sprockets%2F2ec8ea4f9f0fb9b3a1bcb6dadebf7d5e b/test-app/tmp/cache/assets/EED/630/sprockets%2F2ec8ea4f9f0fb9b3a1bcb6dadebf7d5e deleted file mode 100644 index 7118812..0000000 Binary files a/test-app/tmp/cache/assets/EED/630/sprockets%2F2ec8ea4f9f0fb9b3a1bcb6dadebf7d5e and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/-T/-TfUYkKMSHMTIZRZ3arsYIOT39Pk5Sk16LDI8RIOGjE.cache b/test-app/tmp/cache/assets/sprockets/v3.0/-T/-TfUYkKMSHMTIZRZ3arsYIOT39Pk5Sk16LDI8RIOGjE.cache deleted file mode 100644 index 30f7f97..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/-T/-TfUYkKMSHMTIZRZ3arsYIOT39Pk5Sk16LDI8RIOGjE.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/0v/0v1ONTmfvy85EBksq352dlZ9kMuSarIVqiMw3joQKzY.cache b/test-app/tmp/cache/assets/sprockets/v3.0/0v/0v1ONTmfvy85EBksq352dlZ9kMuSarIVqiMw3joQKzY.cache deleted file mode 100644 index 9b6f45c..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/0v/0v1ONTmfvy85EBksq352dlZ9kMuSarIVqiMw3joQKzY.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/object-assign-pollyfill.js?type=application/javascript&id=5229498770521a363247c60402e9fa84384affc5e47c05b56b2e4ca6894973e9:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/1i/1iKQqsVNaH1HXKv720Gp91YLSpZGv7i9GqmQvggPUNY.cache b/test-app/tmp/cache/assets/sprockets/v3.0/1i/1iKQqsVNaH1HXKv720Gp91YLSpZGv7i9GqmQvggPUNY.cache deleted file mode 100644 index 10f663c..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/1i/1iKQqsVNaH1HXKv720Gp91YLSpZGv7i9GqmQvggPUNY.cache +++ /dev/null @@ -1 +0,0 @@ -"%BT^T(~YPu7e%W \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/1k/1kIm2IvnycK2RhzI2uoY_v73C3L0QhjWGNuZ6xBtlNo.cache b/test-app/tmp/cache/assets/sprockets/v3.0/1k/1kIm2IvnycK2RhzI2uoY_v73C3L0QhjWGNuZ6xBtlNo.cache deleted file mode 100644 index 948a90d..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/1k/1kIm2IvnycK2RhzI2uoY_v73C3L0QhjWGNuZ6xBtlNo.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/swagger-ui.min.js?type=application/javascript&id=a59c808afb12537e5db3623da47efc57c0aed31a859dbb4603019af7f50cbd17:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/2W/2WlO5cq2bv-yK4y2ZFOHCGPJtlo6VHg4cSkBSEYHDnc.cache b/test-app/tmp/cache/assets/sprockets/v3.0/2W/2WlO5cq2bv-yK4y2ZFOHCGPJtlo6VHg4cSkBSEYHDnc.cache deleted file mode 100644 index 54eaa14..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/2W/2WlO5cq2bv-yK4y2ZFOHCGPJtlo6VHg4cSkBSEYHDnc.cache +++ /dev/null @@ -1 +0,0 @@ -"%J@ˊ SIDX'+9ORrk/FfPe \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/2h/2hmXinPpyPZTqeUBjN_KOkuS9l5VIiRX3IFdmc2K5Sw.cache b/test-app/tmp/cache/assets/sprockets/v3.0/2h/2hmXinPpyPZTqeUBjN_KOkuS9l5VIiRX3IFdmc2K5Sw.cache deleted file mode 100644 index 5aaf85b..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/2h/2hmXinPpyPZTqeUBjN_KOkuS9l5VIiRX3IFdmc2K5Sw.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"pfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery.wiggle.min.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/2m/2m-T7rNJfhFi5vQmkns50Q-IHQHCfv-9l9xTEm_-ki0.cache b/test-app/tmp/cache/assets/sprockets/v3.0/2m/2m-T7rNJfhFi5vQmkns50Q-IHQHCfv-9l9xTEm_-ki0.cache deleted file mode 100644 index 74a4a5d..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/2m/2m-T7rNJfhFi5vQmkns50Q-IHQHCfv-9l9xTEm_-ki0.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/2u/2uELoQWvYUyWCLHxSW-K-YhgS_0a77xfIjxBlSaeuuw.cache b/test-app/tmp/cache/assets/sprockets/v3.0/2u/2uELoQWvYUyWCLHxSW-K-YhgS_0a77xfIjxBlSaeuuw.cache deleted file mode 100644 index 65aa646..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/2u/2uELoQWvYUyWCLHxSW-K-YhgS_0a77xfIjxBlSaeuuw.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/35/35p_RJyk_LQ4gwd7maAX6ITqbsTRJrmeU3nd6sUsCTQ.cache b/test-app/tmp/cache/assets/sprockets/v3.0/35/35p_RJyk_LQ4gwd7maAX6ITqbsTRJrmeU3nd6sUsCTQ.cache deleted file mode 100644 index 5888807..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/35/35p_RJyk_LQ4gwd7maAX6ITqbsTRJrmeU3nd6sUsCTQ.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"jfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/typography.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/3h/3hZJZhA0BX-yZFD_tmTwWvFCcCQFl7w_HpoMC4RPK8Y.cache b/test-app/tmp/cache/assets/sprockets/v3.0/3h/3hZJZhA0BX-yZFD_tmTwWvFCcCQFl7w_HpoMC4RPK8Y.cache deleted file mode 100644 index c898dab..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/3h/3hZJZhA0BX-yZFD_tmTwWvFCcCQFl7w_HpoMC4RPK8Y.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"ofile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery-1.8.0.min.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/4M/4M5ebMVeS3C_jl4NZ2lHLSSo1yra6lHGg51Ef6R2JiI.cache b/test-app/tmp/cache/assets/sprockets/v3.0/4M/4M5ebMVeS3C_jl4NZ2lHLSSo1yra6lHGg51Ef6R2JiI.cache deleted file mode 100644 index d2bda8f..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/4M/4M5ebMVeS3C_jl4NZ2lHLSSo1yra6lHGg51Ef6R2JiI.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery-1.8.0.min.js?type=application/javascript&id=90dcfacd848c923835bcbb5b9f23fa53a6d4b92b299c8dbfcb8babae4358fb27:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/4O/4OLBTVFzH8xWTgMO5u_M9O4xicfTAM0PLC_t2qhaUTE.cache b/test-app/tmp/cache/assets/sprockets/v3.0/4O/4OLBTVFzH8xWTgMO5u_M9O4xicfTAM0PLC_t2qhaUTE.cache deleted file mode 100644 index 08479e3..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/4O/4OLBTVFzH8xWTgMO5u_M9O4xicfTAM0PLC_t2qhaUTE.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/marked.js?type=application/javascript&pipeline=self&id=659cce685356901e5137ef20e29d685c53a0793258ab4f0d8c0264b430601392:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/4X/4XihhGszAnIK51olnaezt4SMKQ5-hYTN821lcQ2MtGs.cache b/test-app/tmp/cache/assets/sprockets/v3.0/4X/4XihhGszAnIK51olnaezt4SMKQ5-hYTN821lcQ2MtGs.cache deleted file mode 100644 index ec5aefb..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/4X/4XihhGszAnIK51olnaezt4SMKQ5-hYTN821lcQ2MtGs.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jsoneditor.min.js?type=application/javascript&pipeline=self&id=6b69a9c6c48c05ec4806436c110f31dafabc9110a09ebff88b8a84c9f1dc2bb1:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/4d/4dGwlKI9te1HnfhsQ5usZOHhfYngDuwf794kbxNYrTM.cache b/test-app/tmp/cache/assets/sprockets/v3.0/4d/4dGwlKI9te1HnfhsQ5usZOHhfYngDuwf794kbxNYrTM.cache deleted file mode 100644 index e127a18..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/4d/4dGwlKI9te1HnfhsQ5usZOHhfYngDuwf794kbxNYrTM.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/4v/4vZHE-1k74NbceIcQqTs8hldUBF8xiTFCYIHXvEsVMg.cache b/test-app/tmp/cache/assets/sprockets/v3.0/4v/4vZHE-1k74NbceIcQqTs8hldUBF8xiTFCYIHXvEsVMg.cache deleted file mode 100644 index 98c65f9..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/4v/4vZHE-1k74NbceIcQqTs8hldUBF8xiTFCYIHXvEsVMg.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/53/53b0rdhR_vrOJmP0iN4Jew4CA8ps049jy_MIMUqTS2A.cache b/test-app/tmp/cache/assets/sprockets/v3.0/53/53b0rdhR_vrOJmP0iN4Jew4CA8ps049jy_MIMUqTS2A.cache deleted file mode 100644 index 8759618..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/53/53b0rdhR_vrOJmP0iN4Jew4CA8ps049jy_MIMUqTS2A.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/5W/5W6yIIGr8CpVcuoxj0O0424U6kltTpzK_umgjwAHQXE.cache b/test-app/tmp/cache/assets/sprockets/v3.0/5W/5W6yIIGr8CpVcuoxj0O0424U6kltTpzK_umgjwAHQXE.cache deleted file mode 100644 index 7da6baf..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/5W/5W6yIIGr8CpVcuoxj0O0424U6kltTpzK_umgjwAHQXE.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/images/logo_small.png?type=image/png&id=6cd604278a7d2a3f2201f0c73cd941b39cdfb6e6fb4aa9a38a96a3893e4175c5:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/5X/5XayFNMZdpYC02ECUCHnFIxlNCPVUGRvwund9Xtewo4.cache b/test-app/tmp/cache/assets/sprockets/v3.0/5X/5XayFNMZdpYC02ECUCHnFIxlNCPVUGRvwund9Xtewo4.cache deleted file mode 100644 index 951b043..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/5X/5XayFNMZdpYC02ECUCHnFIxlNCPVUGRvwund9Xtewo4.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"efile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/marked.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/6S/6Sgwo9fiP4AlsXfqGaxMbr9uHchampTH5U9yw3Bdx2g.cache b/test-app/tmp/cache/assets/sprockets/v3.0/6S/6Sgwo9fiP4AlsXfqGaxMbr9uHchampTH5U9yw3Bdx2g.cache deleted file mode 100644 index df560ce..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/6S/6Sgwo9fiP4AlsXfqGaxMbr9uHchampTH5U9yw3Bdx2g.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/6t/6t4-k6hj8Ax1NfUrPo8lrDvy7qxybes0ND-bLx68j_o.cache b/test-app/tmp/cache/assets/sprockets/v3.0/6t/6t4-k6hj8Ax1NfUrPo8lrDvy7qxybes0ND-bLx68j_o.cache deleted file mode 100644 index 007afbc..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/6t/6t4-k6hj8Ax1NfUrPo8lrDvy7qxybes0ND-bLx68j_o.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"pfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery.ba-bbq.min.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/75/75hU8oIX_X9m7sxibJOCQWM_qwXdc1z0beURtdIcUYQ.cache b/test-app/tmp/cache/assets/sprockets/v3.0/75/75hU8oIX_X9m7sxibJOCQWM_qwXdc1z0beURtdIcUYQ.cache deleted file mode 100644 index 757332a..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/75/75hU8oIX_X9m7sxibJOCQWM_qwXdc1z0beURtdIcUYQ.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/7D/7D3WKj4JXEuX5QZGzLI2s8HnrS_XPxEHIq858Cj3_5Q.cache b/test-app/tmp/cache/assets/sprockets/v3.0/7D/7D3WKj4JXEuX5QZGzLI2s8HnrS_XPxEHIq858Cj3_5Q.cache deleted file mode 100644 index b009c7e..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/7D/7D3WKj4JXEuX5QZGzLI2s8HnrS_XPxEHIq858Cj3_5Q.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/7w/7wkzuoAnHC12M0J4CMcGdwpfxjV0OMbK-SLwKMe4zTo.cache b/test-app/tmp/cache/assets/sprockets/v3.0/7w/7wkzuoAnHC12M0J4CMcGdwpfxjV0OMbK-SLwKMe4zTo.cache deleted file mode 100644 index 1364926..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/7w/7wkzuoAnHC12M0J4CMcGdwpfxjV0OMbK-SLwKMe4zTo.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"jfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/typography.css;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/8R/8R839cUoQX8tKI44ZUocDieu8rsyi2TkMaDotqvEVQQ.cache b/test-app/tmp/cache/assets/sprockets/v3.0/8R/8R839cUoQX8tKI44ZUocDieu8rsyi2TkMaDotqvEVQQ.cache deleted file mode 100644 index 1262eab..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/8R/8R839cUoQX8tKI44ZUocDieu8rsyi2TkMaDotqvEVQQ.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/swagger-ui.min.js?type=application/javascript&pipeline=self&id=ff01759c5c0f6451a160fcdf7e4dfce05b0ba9728211aba574341a8c906e137b:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/8y/8yz-zAhtr6khXijMX_XYY-me6MZIdM1Quv-tUvGbPBI.cache b/test-app/tmp/cache/assets/sprockets/v3.0/8y/8yz-zAhtr6khXijMX_XYY-me6MZIdM1Quv-tUvGbPBI.cache deleted file mode 100644 index 56876c2..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/8y/8yz-zAhtr6khXijMX_XYY-me6MZIdM1Quv-tUvGbPBI.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"efile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/print.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/AF/AF2B7X5uhZqq4NFKYvbERnBIuwyL9jmzN26Tqfdjk-Q.cache b/test-app/tmp/cache/assets/sprockets/v3.0/AF/AF2B7X5uhZqq4NFKYvbERnBIuwyL9jmzN26Tqfdjk-Q.cache deleted file mode 100644 index 287ead0..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/AF/AF2B7X5uhZqq4NFKYvbERnBIuwyL9jmzN26Tqfdjk-Q.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/AN/ANELXr02iyUwMQO5hPtpThbaoxRuKXE_P87TVWg_IJU.cache b/test-app/tmp/cache/assets/sprockets/v3.0/AN/ANELXr02iyUwMQO5hPtpThbaoxRuKXE_P87TVWg_IJU.cache deleted file mode 100644 index b814334..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/AN/ANELXr02iyUwMQO5hPtpThbaoxRuKXE_P87TVWg_IJU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/highlight.9.1.0.pack_extended.js?type=application/javascript&id=b57bdfe539697b5bd9fe38096b38cca3c194240a8194e0ab706d15cf0b401273:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Ai/AiVqU_GM86p-_JYDWZugzD4ihdbhsjdwKrRaUTF5nyU.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Ai/AiVqU_GM86p-_JYDWZugzD4ihdbhsjdwKrRaUTF5nyU.cache deleted file mode 100644 index ac45c10..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/Ai/AiVqU_GM86p-_JYDWZugzD4ihdbhsjdwKrRaUTF5nyU.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Ak/AkFsU9OQZM1UBgnscrldY2nxlLphnE1mMcffFHHpTo4.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Ak/AkFsU9OQZM1UBgnscrldY2nxlLphnE1mMcffFHHpTo4.cache deleted file mode 100644 index 279eeb2..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/Ak/AkFsU9OQZM1UBgnscrldY2nxlLphnE1mMcffFHHpTo4.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"|file-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/highlight.9.1.0.pack_extended.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Ax/AxHTmqIFLxrR4Q6obLQXmK7SKpCbIbLxzCgEdtuEemQ.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Ax/AxHTmqIFLxrR4Q6obLQXmK7SKpCbIbLxzCgEdtuEemQ.cache deleted file mode 100644 index 31c2462..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/Ax/AxHTmqIFLxrR4Q6obLQXmK7SKpCbIbLxzCgEdtuEemQ.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/images/throbber.gif?type=image/gif&id=92fd1b3458d8c7906690bdf143febba2efad10324ac9bdaa670ae9679cd5dcd7:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/BZ/BZh4ur30TSLaPDerUJvyj7h_7yua17w3NFWBXrpk4-8.cache b/test-app/tmp/cache/assets/sprockets/v3.0/BZ/BZh4ur30TSLaPDerUJvyj7h_7yua17w3NFWBXrpk4-8.cache deleted file mode 100644 index 01cc856..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/BZ/BZh4ur30TSLaPDerUJvyj7h_7yua17w3NFWBXrpk4-8.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/CB/CBu2LfZ0AhiAmy6B9X9riEMt8P3QPQ-9glxclOpq2HU.cache b/test-app/tmp/cache/assets/sprockets/v3.0/CB/CBu2LfZ0AhiAmy6B9X9riEMt8P3QPQ-9glxclOpq2HU.cache deleted file mode 100644 index 515c6f0..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/CB/CBu2LfZ0AhiAmy6B9X9riEMt8P3QPQ-9glxclOpq2HU.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Eo/EohYG_xq8OARDftwZNkEkzV0es51BqPQErJmiH9eoLc.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Eo/EohYG_xq8OARDftwZNkEkzV0es51BqPQErJmiH9eoLc.cache deleted file mode 100644 index 833785c..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/Eo/EohYG_xq8OARDftwZNkEkzV0es51BqPQErJmiH9eoLc.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jsoneditor.min.js?type=application/javascript&id=1020e726765355e8762e6fb1b879fdafcf3b4aa34ac5ca52ac2eaa135278d83f:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/FD/FDnS4rs3Qq1aRHBH0cBzT1FmNHZlLLzCUQJyADCZqC8.cache b/test-app/tmp/cache/assets/sprockets/v3.0/FD/FDnS4rs3Qq1aRHBH0cBzT1FmNHZlLLzCUQJyADCZqC8.cache deleted file mode 100644 index 193d601..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/FD/FDnS4rs3Qq1aRHBH0cBzT1FmNHZlLLzCUQJyADCZqC8.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/FU/FU9uG6mlGYNlUB7qvsTYA__8nuwVfFo8V1IRNWBijNk.cache b/test-app/tmp/cache/assets/sprockets/v3.0/FU/FU9uG6mlGYNlUB7qvsTYA__8nuwVfFo8V1IRNWBijNk.cache deleted file mode 100644 index 3d64346..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/FU/FU9uG6mlGYNlUB7qvsTYA__8nuwVfFo8V1IRNWBijNk.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"kfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/backbone-min.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Fn/Fn4iVqPepDqEGd0GdRVmKJ8vh63hNftsKC-atFsoYLU.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Fn/Fn4iVqPepDqEGd0GdRVmKJ8vh63hNftsKC-atFsoYLU.cache deleted file mode 100644 index 21ba84c..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/Fn/Fn4iVqPepDqEGd0GdRVmKJ8vh63hNftsKC-atFsoYLU.cache +++ /dev/null @@ -1,2 +0,0 @@ -"%WN -9mpd`tJnFK1 \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/H_/H_CvrXPH5m9l1rKkqQr28R4_VDnn09MAJSp6XnB2UmE.cache b/test-app/tmp/cache/assets/sprockets/v3.0/H_/H_CvrXPH5m9l1rKkqQr28R4_VDnn09MAJSp6XnB2UmE.cache deleted file mode 100644 index b2f1fd4..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/H_/H_CvrXPH5m9l1rKkqQr28R4_VDnn09MAJSp6XnB2UmE.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"ifile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/lodash.min.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Hs/Hsl2l11txotmeXpqOnLn9uBw_HQyQqCJLlaZ7p0ERoE.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Hs/Hsl2l11txotmeXpqOnLn9uBw_HQyQqCJLlaZ7p0ERoE.cache deleted file mode 100644 index 8795913..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/Hs/Hsl2l11txotmeXpqOnLn9uBw_HQyQqCJLlaZ7p0ERoE.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/print.css?type=text/css&id=fbd5e5bb108f96ba6d6af2c1dcc167cb3e1c4d8f91600e45f289bced8f91b179:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/IC/ICoeFSiKk-djrANYoPQ_IexE0De1b7eMGMrwGRaR7RU.cache b/test-app/tmp/cache/assets/sprockets/v3.0/IC/ICoeFSiKk-djrANYoPQ_IexE0De1b7eMGMrwGRaR7RU.cache deleted file mode 100644 index 6d9daaa..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/IC/ICoeFSiKk-djrANYoPQ_IexE0De1b7eMGMrwGRaR7RU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery.slideto.min.js?type=application/javascript&id=ee9e8ac009f99d78f1a820ab3533c7d928e5667f187f10f37de6cc4f7fede551:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/IZ/IZvE-uc8bQfwYf42hROM24uOYU9cWr_0MfDuOIpNQrY.cache b/test-app/tmp/cache/assets/sprockets/v3.0/IZ/IZvE-uc8bQfwYf42hROM24uOYU9cWr_0MfDuOIpNQrY.cache deleted file mode 100644 index 15b3eff..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/IZ/IZvE-uc8bQfwYf42hROM24uOYU9cWr_0MfDuOIpNQrY.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/reset.css?type=text/css&pipeline=self&id=7d7e080d41b1b34d0c66d0b1e0a6d6029a2c48d6a0d8d47a12e3d53ec68e4e9b:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Iv/IvxOEtSKbSek1n9vUXAu_TNT1HGZgudxaabCxdZOBy0.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Iv/IvxOEtSKbSek1n9vUXAu_TNT1HGZgudxaabCxdZOBy0.cache deleted file mode 100644 index 51d6996..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/Iv/IvxOEtSKbSek1n9vUXAu_TNT1HGZgudxaabCxdZOBy0.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Iv/ivDZdCjIS_VJLtS4NwA8sXV9eiY8xJ3oJxmFPXimBA0.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Iv/ivDZdCjIS_VJLtS4NwA8sXV9eiY8xJ3oJxmFPXimBA0.cache deleted file mode 100644 index c2171dd..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/Iv/ivDZdCjIS_VJLtS4NwA8sXV9eiY8xJ3oJxmFPXimBA0.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/handlebars-4.0.5.js?type=application/javascript&pipeline=self&id=29fd4c2c31d9160362f17f734a2e109b79147227b13d441c20c70be72b343d51:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/JS/JSXzsLgtWO5PBTmu9MNUXI5qTfb3MUQv_tvWAXGmmN8.cache b/test-app/tmp/cache/assets/sprockets/v3.0/JS/JSXzsLgtWO5PBTmu9MNUXI5qTfb3MUQv_tvWAXGmmN8.cache deleted file mode 100644 index b2fec88..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/JS/JSXzsLgtWO5PBTmu9MNUXI5qTfb3MUQv_tvWAXGmmN8.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"ffile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/screen.css;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/JT/JTSffA7hb9zN13uy5O7PlpQ3qDZyQGgxfZ-7x3bRnVk.cache b/test-app/tmp/cache/assets/sprockets/v3.0/JT/JTSffA7hb9zN13uy5O7PlpQ3qDZyQGgxfZ-7x3bRnVk.cache deleted file mode 100644 index 9e75ab4..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/JT/JTSffA7hb9zN13uy5O7PlpQ3qDZyQGgxfZ-7x3bRnVk.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"qfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery.slideto.min.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Jm/JmIzdDwcn1o_2r6HmKZaANeHpMkKucZ65gbxTWUz66M.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Jm/JmIzdDwcn1o_2r6HmKZaANeHpMkKucZ65gbxTWUz66M.cache deleted file mode 100644 index 6cbf87b..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/Jm/JmIzdDwcn1o_2r6HmKZaANeHpMkKucZ65gbxTWUz66M.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/object-assign-pollyfill.js?type=application/javascript&pipeline=self&id=bf22a345dd5ed57f1062a5116e4b6d3c39837ad805e4c8091a87dd487aabefac:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/KK/KKIjkgVUSdwRQvf9UTlga4r3yJ2xre5pmLZweDkJL0s.cache b/test-app/tmp/cache/assets/sprockets/v3.0/KK/KKIjkgVUSdwRQvf9UTlga4r3yJ2xre5pmLZweDkJL0s.cache deleted file mode 100644 index 2620726..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/KK/KKIjkgVUSdwRQvf9UTlga4r3yJ2xre5pmLZweDkJL0s.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/highlight.9.1.0.pack_extended.js?type=application/javascript&pipeline=self&id=336df5deadc645c563e6183d99402b387d46a318850b4ef88a777f68d1741a91:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/LP/LPF2tHTl8QLGOm0dm4LGZtrzHG2H6VfjZEWx9jdpfOU.cache b/test-app/tmp/cache/assets/sprockets/v3.0/LP/LPF2tHTl8QLGOm0dm4LGZtrzHG2H6VfjZEWx9jdpfOU.cache deleted file mode 100644 index 668f8d7..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/LP/LPF2tHTl8QLGOm0dm4LGZtrzHG2H6VfjZEWx9jdpfOU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/marked.js?type=application/javascript&id=7544e84e1d870c88b743f12c50d6d08d718458e7c9b921f465c800c51340a9a5:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/LU/LUTqrINdwqs3fe4Fjificw2INCC_B3ClDtFCzNRTM_o.cache b/test-app/tmp/cache/assets/sprockets/v3.0/LU/LUTqrINdwqs3fe4Fjificw2INCC_B3ClDtFCzNRTM_o.cache deleted file mode 100644 index 9257f9f..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/LU/LUTqrINdwqs3fe4Fjificw2INCC_B3ClDtFCzNRTM_o.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"|file-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/highlight.9.1.0.pack_extended.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/MR/MRndOg0czdRhylYUw4ivW0mdL1MQmhRd_ugcirhvlL0.cache b/test-app/tmp/cache/assets/sprockets/v3.0/MR/MRndOg0czdRhylYUw4ivW0mdL1MQmhRd_ugcirhvlL0.cache deleted file mode 100644 index 65c864f..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/MR/MRndOg0czdRhylYUw4ivW0mdL1MQmhRd_ugcirhvlL0.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"lfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/swagger-oauth.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/N8/N8izuhHJYPxDdKROhXzErPbYnB8uQSqmOC0fkpICQC4.cache b/test-app/tmp/cache/assets/sprockets/v3.0/N8/N8izuhHJYPxDdKROhXzErPbYnB8uQSqmOC0fkpICQC4.cache deleted file mode 100644 index 6fba682..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/N8/N8izuhHJYPxDdKROhXzErPbYnB8uQSqmOC0fkpICQC4.cache +++ /dev/null @@ -1 +0,0 @@ -"%z0BuȊ_TdBO۶/'eA \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Na/NaxTKLRwaHiv8ljQoILjlLavJlEhGibSd7P6Au3oWiQ.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Na/NaxTKLRwaHiv8ljQoILjlLavJlEhGibSd7P6Au3oWiQ.cache deleted file mode 100644 index a106e5c..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/Na/NaxTKLRwaHiv8ljQoILjlLavJlEhGibSd7P6Au3oWiQ.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/O1/O11ox3E0XURQYRJVc4Ajy5CAoTqvPntWnn7QOCvF_N0.cache b/test-app/tmp/cache/assets/sprockets/v3.0/O1/O11ox3E0XURQYRJVc4Ajy5CAoTqvPntWnn7QOCvF_N0.cache deleted file mode 100644 index a854518..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/O1/O11ox3E0XURQYRJVc4Ajy5CAoTqvPntWnn7QOCvF_N0.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/O6/O6XL1DtzTI1lZHoB5L2X_rdNxV1C2vYon1c09HDNOb4.cache b/test-app/tmp/cache/assets/sprockets/v3.0/O6/O6XL1DtzTI1lZHoB5L2X_rdNxV1C2vYon1c09HDNOb4.cache deleted file mode 100644 index d2e791b..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/O6/O6XL1DtzTI1lZHoB5L2X_rdNxV1C2vYon1c09HDNOb4.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"mfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jsoneditor.min.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/OG/OG9uGHaeC8r8KobSJXnHbTjBgbttO62WuyzRehyx-gs.cache b/test-app/tmp/cache/assets/sprockets/v3.0/OG/OG9uGHaeC8r8KobSJXnHbTjBgbttO62WuyzRehyx-gs.cache deleted file mode 100644 index 8f87ec6..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/OG/OG9uGHaeC8r8KobSJXnHbTjBgbttO62WuyzRehyx-gs.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"2processors:type=image/png&file_type=image/png;TTI"mfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/images/logo_small.png;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/OS/OSST0O3KT7hPeDyKIXIHWon6EQKwd4m1fwnAuJPUyfA.cache b/test-app/tmp/cache/assets/sprockets/v3.0/OS/OSST0O3KT7hPeDyKIXIHWon6EQKwd4m1fwnAuJPUyfA.cache deleted file mode 100644 index 628438d..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/OS/OSST0O3KT7hPeDyKIXIHWon6EQKwd4m1fwnAuJPUyfA.cache +++ /dev/null @@ -1 +0,0 @@ -"%7#P?Af5OzRvJ߱!V \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/OS/oS5xhiDYEtPGUin3F4RDDxXD8x8rcr6sbVxyccrqLCA.cache b/test-app/tmp/cache/assets/sprockets/v3.0/OS/oS5xhiDYEtPGUin3F4RDDxXD8x8rcr6sbVxyccrqLCA.cache deleted file mode 100644 index b7b4db4..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/OS/oS5xhiDYEtPGUin3F4RDDxXD8x8rcr6sbVxyccrqLCA.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Oa/OaRoX0UHm6BCpM-f5XPgRE6zdp_tjRGRaIs_dG0MXEo.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Oa/OaRoX0UHm6BCpM-f5XPgRE6zdp_tjRGRaIs_dG0MXEo.cache deleted file mode 100644 index 5b1c871..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/Oa/OaRoX0UHm6BCpM-f5XPgRE6zdp_tjRGRaIs_dG0MXEo.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/P7/P7cRQ0OwcSKapRJAHMTkTt2pBqw5eGwhKw1VykhMkrs.cache b/test-app/tmp/cache/assets/sprockets/v3.0/P7/P7cRQ0OwcSKapRJAHMTkTt2pBqw5eGwhKw1VykhMkrs.cache deleted file mode 100644 index 2a71278..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/P7/P7cRQ0OwcSKapRJAHMTkTt2pBqw5eGwhKw1VykhMkrs.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"ifile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/swagger-ui.min.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/PK/PKieAG9AeATLE3UbtWwTCuvpn0h17Fl-cog1_JiWRqc.cache b/test-app/tmp/cache/assets/sprockets/v3.0/PK/PKieAG9AeATLE3UbtWwTCuvpn0h17Fl-cog1_JiWRqc.cache deleted file mode 100644 index 036817a..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/PK/PKieAG9AeATLE3UbtWwTCuvpn0h17Fl-cog1_JiWRqc.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/PZ/PZmg7NtMtDtxpld-5yjlzuilJmfMjfE1pPoa3yBbPrE.cache b/test-app/tmp/cache/assets/sprockets/v3.0/PZ/PZmg7NtMtDtxpld-5yjlzuilJmfMjfE1pPoa3yBbPrE.cache deleted file mode 100644 index 93ceeeb..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/PZ/PZmg7NtMtDtxpld-5yjlzuilJmfMjfE1pPoa3yBbPrE.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/backbone-min.js?type=application/javascript&pipeline=self&id=75c1abbd146872189a890789f2c6ca4065e20baaf7f1c259b37043d46ac9382d:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/QW/QWVQ6AqNWTj7PLKkigjJwFzYsC2gHLpnEDq-JBLALOE.cache b/test-app/tmp/cache/assets/sprockets/v3.0/QW/QWVQ6AqNWTj7PLKkigjJwFzYsC2gHLpnEDq-JBLALOE.cache deleted file mode 100644 index ce83407..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/QW/QWVQ6AqNWTj7PLKkigjJwFzYsC2gHLpnEDq-JBLALOE.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"ofile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/handlebars-4.0.5.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/RI/RImd_G27OlI5tNPRlNBpRWGHm6lZ9e5uaNtEcn09vMQ.cache b/test-app/tmp/cache/assets/sprockets/v3.0/RI/RImd_G27OlI5tNPRlNBpRWGHm6lZ9e5uaNtEcn09vMQ.cache deleted file mode 100644 index a07d4df..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/RI/RImd_G27OlI5tNPRlNBpRWGHm6lZ9e5uaNtEcn09vMQ.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"mfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jsoneditor.min.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Ra/RaywOtR5jBWDGVHKg_SQHczy6qUzYXUplV1OXTd4F8Q.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Ra/RaywOtR5jBWDGVHKg_SQHczy6qUzYXUplV1OXTd4F8Q.cache deleted file mode 100644 index bfd34b9..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/Ra/RaywOtR5jBWDGVHKg_SQHczy6qUzYXUplV1OXTd4F8Q.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/print.css?type=text/css&pipeline=self&id=d40db40230d33d33b44cb0b5e216257b6ba43d97b5dd59f319b23f3866d440e7:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/SG/SGtvfET419Y_Ur63YtpWNYglQZQPRO_OBnVS9xH9NwI.cache b/test-app/tmp/cache/assets/sprockets/v3.0/SG/SGtvfET419Y_Ur63YtpWNYglQZQPRO_OBnVS9xH9NwI.cache deleted file mode 100644 index 740b778..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/SG/SGtvfET419Y_Ur63YtpWNYglQZQPRO_OBnVS9xH9NwI.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Sc/ScIs1PTad7Xs9tPWRHlLP9L2EFtqpwhBMaTpLQVG0Ng.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Sc/ScIs1PTad7Xs9tPWRHlLP9L2EFtqpwhBMaTpLQVG0Ng.cache deleted file mode 100644 index fbf89ae..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/Sc/ScIs1PTad7Xs9tPWRHlLP9L2EFtqpwhBMaTpLQVG0Ng.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/T1/T1kZg-Ut2Bv3EBo0ANWpTAro8vFWbLoZpNELZaZ3usk.cache b/test-app/tmp/cache/assets/sprockets/v3.0/T1/T1kZg-Ut2Bv3EBo0ANWpTAro8vFWbLoZpNELZaZ3usk.cache deleted file mode 100644 index 9ddf9da..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/T1/T1kZg-Ut2Bv3EBo0ANWpTAro8vFWbLoZpNELZaZ3usk.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/T2/T23n6RFh41g5Hxi4qxltv0mHMBPgRPxyRRvLxa89JQ0.cache b/test-app/tmp/cache/assets/sprockets/v3.0/T2/T23n6RFh41g5Hxi4qxltv0mHMBPgRPxyRRvLxa89JQ0.cache deleted file mode 100644 index 59ae6d2..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/T2/T23n6RFh41g5Hxi4qxltv0mHMBPgRPxyRRvLxa89JQ0.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/swagger-oauth.js?type=application/javascript&pipeline=self&id=972099a5b34055c3e726ddab70ae2efb3fd4faebecd34de3630c809fa36e89ab:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/T7/T7_iT6DBTW8CbaAxzRmHbVERtvIzeEUYcOw0QXeXCQw.cache b/test-app/tmp/cache/assets/sprockets/v3.0/T7/T7_iT6DBTW8CbaAxzRmHbVERtvIzeEUYcOw0QXeXCQw.cache deleted file mode 100644 index 0c345bf..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/T7/T7_iT6DBTW8CbaAxzRmHbVERtvIzeEUYcOw0QXeXCQw.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/handlebars-4.0.5.js?type=application/javascript&id=12d88e2038592d9068d20fabfd326455a455667bdfdaaf93846db3012d48cf6d:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/TB/TBk2EMiQ6qy45zmSv1JsIj4ocITUk7Vy_ph8WVNczjU.cache b/test-app/tmp/cache/assets/sprockets/v3.0/TB/TBk2EMiQ6qy45zmSv1JsIj4ocITUk7Vy_ph8WVNczjU.cache deleted file mode 100644 index 6ccc8f6..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/TB/TBk2EMiQ6qy45zmSv1JsIj4ocITUk7Vy_ph8WVNczjU.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/TC/TCxEziIwkURjDq2tV-yG53zfh2fYRGQ4j7HFrjWm3c4.cache b/test-app/tmp/cache/assets/sprockets/v3.0/TC/TCxEziIwkURjDq2tV-yG53zfh2fYRGQ4j7HFrjWm3c4.cache deleted file mode 100644 index 4075b86..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/TC/TCxEziIwkURjDq2tV-yG53zfh2fYRGQ4j7HFrjWm3c4.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/lodash.min.js?type=application/javascript&pipeline=self&id=22b4e3788440965a13943a606a394d03d73db3d003af947eb49fd540f76c913e:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/TG/TGf-TNdFvzGuTtlds_v0iarosDMcYisn4yM7w2qa91Q.cache b/test-app/tmp/cache/assets/sprockets/v3.0/TG/TGf-TNdFvzGuTtlds_v0iarosDMcYisn4yM7w2qa91Q.cache deleted file mode 100644 index a3f52ef..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/TG/TGf-TNdFvzGuTtlds_v0iarosDMcYisn4yM7w2qa91Q.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/U0/U0TKpkBjuBdoIF9K53GJk9D-gB5u2d6YtS_IBNp3PJs.cache b/test-app/tmp/cache/assets/sprockets/v3.0/U0/U0TKpkBjuBdoIF9K53GJk9D-gB5u2d6YtS_IBNp3PJs.cache deleted file mode 100644 index 609ce4e..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/U0/U0TKpkBjuBdoIF9K53GJk9D-gB5u2d6YtS_IBNp3PJs.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/Ui/UiM9WFY5qNWlMG3rY6YGQJiGihk7SAJy9hyg0vNtZKA.cache b/test-app/tmp/cache/assets/sprockets/v3.0/Ui/UiM9WFY5qNWlMG3rY6YGQJiGihk7SAJy9hyg0vNtZKA.cache deleted file mode 100644 index 0ea44f3..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/Ui/UiM9WFY5qNWlMG3rY6YGQJiGihk7SAJy9hyg0vNtZKA.cache +++ /dev/null @@ -1 +0,0 @@ -"%g)I޹processors:type=text/css&file_type=text/css&pipeline=self;TTI"efile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/print.css;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/_g/_g5y0yCpQNDZzFw_jyeQphmfPPLNgGykUzp4MHJUMsk.cache b/test-app/tmp/cache/assets/sprockets/v3.0/_g/_g5y0yCpQNDZzFw_jyeQphmfPPLNgGykUzp4MHJUMsk.cache deleted file mode 100644 index 4498b13..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/_g/_g5y0yCpQNDZzFw_jyeQphmfPPLNgGykUzp4MHJUMsk.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"ifile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/swagger-ui.min.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/bI/bIolJsq1TIvOun3lZYFrvxDJx2znvH3ml-yzwrrwC5o.cache b/test-app/tmp/cache/assets/sprockets/v3.0/bI/bIolJsq1TIvOun3lZYFrvxDJx2znvH3ml-yzwrrwC5o.cache deleted file mode 100644 index 2697863..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/bI/bIolJsq1TIvOun3lZYFrvxDJx2znvH3ml-yzwrrwC5o.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery.wiggle.min.js?type=application/javascript&id=f5daac1e0594eda70df5a8d463a89e3122b6cdef609c0d897871c0e3816fd53b:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/bb/bbGc584Re4k91_hCoUilorWyIRBL-LE8Ep30ueKDqEU.cache b/test-app/tmp/cache/assets/sprockets/v3.0/bb/bbGc584Re4k91_hCoUilorWyIRBL-LE8Ep30ueKDqEU.cache deleted file mode 100644 index 101dbe8..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/bb/bbGc584Re4k91_hCoUilorWyIRBL-LE8Ep30ueKDqEU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/screen.css?type=text/css&pipeline=self&id=f9cea9f2cca6f0edd7545df94e9db94b530e5d8d5c601f2417fa91444b7c1208:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/bv/bvb6c1TZq7yjR7D2huDarYAO-2nIoHiVc-DL6ptR454.cache b/test-app/tmp/cache/assets/sprockets/v3.0/bv/bvb6c1TZq7yjR7D2huDarYAO-2nIoHiVc-DL6ptR454.cache deleted file mode 100644 index 3815315..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/bv/bvb6c1TZq7yjR7D2huDarYAO-2nIoHiVc-DL6ptR454.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"sfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/highlight.9.1.0.pack.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/dV/dVKP2nv7tbbr1cyL5HPznumqNv0DrlnldsosP6-jEso.cache b/test-app/tmp/cache/assets/sprockets/v3.0/dV/dVKP2nv7tbbr1cyL5HPznumqNv0DrlnldsosP6-jEso.cache deleted file mode 100644 index 531d4eb..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/dV/dVKP2nv7tbbr1cyL5HPznumqNv0DrlnldsosP6-jEso.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/highlight.9.1.0.pack.js?type=application/javascript&pipeline=self&id=96ed67c19adf6e2eead32602318d58d6917e7bae34eeff57f0a058a0ed5253e2:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/de/deyI2Tzru2cPQZ3FrxJZKVk5W9q-3LZwfCKlGrg4kLs.cache b/test-app/tmp/cache/assets/sprockets/v3.0/de/deyI2Tzru2cPQZ3FrxJZKVk5W9q-3LZwfCKlGrg4kLs.cache deleted file mode 100644 index fe831f6..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/de/deyI2Tzru2cPQZ3FrxJZKVk5W9q-3LZwfCKlGrg4kLs.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"efile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/marked.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/dy/dy1YgVnd0lW0bwaUQWyw7iznP9KxQdk2HkDIzc2H8Sw.cache b/test-app/tmp/cache/assets/sprockets/v3.0/dy/dy1YgVnd0lW0bwaUQWyw7iznP9KxQdk2HkDIzc2H8Sw.cache deleted file mode 100644 index 88b03ba..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/dy/dy1YgVnd0lW0bwaUQWyw7iznP9KxQdk2HkDIzc2H8Sw.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/eY/eYyyS68PIe5uyAXrk5UGy3MAvWuS4vy3oqg94VuOuew.cache b/test-app/tmp/cache/assets/sprockets/v3.0/eY/eYyyS68PIe5uyAXrk5UGy3MAvWuS4vy3oqg94VuOuew.cache deleted file mode 100644 index 6b8865f..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/eY/eYyyS68PIe5uyAXrk5UGy3MAvWuS4vy3oqg94VuOuew.cache +++ /dev/null @@ -1 +0,0 @@ -"%YN4_[ucL226 f~ \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/gK/gKHvQOeMniLw7ja2OCF_nwbTy8OcudWnthCudwmzjFk.cache b/test-app/tmp/cache/assets/sprockets/v3.0/gK/gKHvQOeMniLw7ja2OCF_nwbTy8OcudWnthCudwmzjFk.cache deleted file mode 100644 index bb78b3b..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/gK/gKHvQOeMniLw7ja2OCF_nwbTy8OcudWnthCudwmzjFk.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TTI"efile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/reset.css;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/gq/gQ2gj-uTLrvctplyB-3jZX1xE4FnLxIVFQlATnKxpGI.cache b/test-app/tmp/cache/assets/sprockets/v3.0/gq/gQ2gj-uTLrvctplyB-3jZX1xE4FnLxIVFQlATnKxpGI.cache deleted file mode 100644 index a149383..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/gq/gQ2gj-uTLrvctplyB-3jZX1xE4FnLxIVFQlATnKxpGI.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/backbone-min.js?type=application/javascript&id=ba99c37b53ac41e2ef41e2992ca29ba38bdd4cc6e617502b26806a99b440a9a7:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/gq/gqOi5JB-EW5ckTa4WPtlIsZQrmJhSvlqq0wphCdquo0.cache b/test-app/tmp/cache/assets/sprockets/v3.0/gq/gqOi5JB-EW5ckTa4WPtlIsZQrmJhSvlqq0wphCdquo0.cache deleted file mode 100644 index f2d361e..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/gq/gqOi5JB-EW5ckTa4WPtlIsZQrmJhSvlqq0wphCdquo0.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"efile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/reset.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/h1/h1NkBlkWUXcK6aEG7wPPHJkkX8D-TscozIMmwk_-pIU.cache b/test-app/tmp/cache/assets/sprockets/v3.0/h1/h1NkBlkWUXcK6aEG7wPPHJkkX8D-TscozIMmwk_-pIU.cache deleted file mode 100644 index 767fb75..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/h1/h1NkBlkWUXcK6aEG7wPPHJkkX8D-TscozIMmwk_-pIU.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/typography.css?type=text/css&id=2713f9ffd9861446047fc0440054d7001b6a34b5f5abeed9be519333f37ea34b:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/iO/iO8VElIL-lYIa3kPnwi8hwRitZldAsJlF0GA1yLPW2I.cache b/test-app/tmp/cache/assets/sprockets/v3.0/iO/iO8VElIL-lYIa3kPnwi8hwRitZldAsJlF0GA1yLPW2I.cache deleted file mode 100644 index 3e6048b..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/iO/iO8VElIL-lYIa3kPnwi8hwRitZldAsJlF0GA1yLPW2I.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/jr/jrPAWq1Tmic8O1ULEIytPdC-s2a3W-ome5_yPV2THH4.cache b/test-app/tmp/cache/assets/sprockets/v3.0/jr/jrPAWq1Tmic8O1ULEIytPdC-s2a3W-ome5_yPV2THH4.cache deleted file mode 100644 index 25a7ea2..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/jr/jrPAWq1Tmic8O1ULEIytPdC-s2a3W-ome5_yPV2THH4.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/k9/k9SVZrt-rhYeNNXrEFNtCCkPxYPn-11MacKVjd9lp9M.cache b/test-app/tmp/cache/assets/sprockets/v3.0/k9/k9SVZrt-rhYeNNXrEFNtCCkPxYPn-11MacKVjd9lp9M.cache deleted file mode 100644 index add6696..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/k9/k9SVZrt-rhYeNNXrEFNtCCkPxYPn-11MacKVjd9lp9M.cache +++ /dev/null @@ -1 +0,0 @@ -"%fcyFp9ﮥ怦hGpG* ,2 \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/kO/kOHCcxg_41A5QGfXDXyFVCVx5sLeRS6Kw9x70_y6Ciw.cache b/test-app/tmp/cache/assets/sprockets/v3.0/kO/kOHCcxg_41A5QGfXDXyFVCVx5sLeRS6Kw9x70_y6Ciw.cache deleted file mode 100644 index fee8bb0..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/kO/kOHCcxg_41A5QGfXDXyFVCVx5sLeRS6Kw9x70_y6Ciw.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/kR/Krphgd_z5C2Z4nD_ndnTJ_bI1wmnXn70nNsATLfA5_E.cache b/test-app/tmp/cache/assets/sprockets/v3.0/kR/Krphgd_z5C2Z4nD_ndnTJ_bI1wmnXn70nNsATLfA5_E.cache deleted file mode 100644 index 5a7ceb9..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/kR/Krphgd_z5C2Z4nD_ndnTJ_bI1wmnXn70nNsATLfA5_E.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/kR/kR67XDov7pmnvvGN0ylShdhibaAC3VFMkyH26JkOJSk.cache b/test-app/tmp/cache/assets/sprockets/v3.0/kR/kR67XDov7pmnvvGN0ylShdhibaAC3VFMkyH26JkOJSk.cache deleted file mode 100644 index aaa6031..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/kR/kR67XDov7pmnvvGN0ylShdhibaAC3VFMkyH26JkOJSk.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"vfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/object-assign-pollyfill.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/ku/kuHal3FzFQqClBLCq2N85DiTd8xLl12RG8uRfRmKLbQ.cache b/test-app/tmp/cache/assets/sprockets/v3.0/ku/kuHal3FzFQqClBLCq2N85DiTd8xLl12RG8uRfRmKLbQ.cache deleted file mode 100644 index 329abdd..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/ku/kuHal3FzFQqClBLCq2N85DiTd8xLl12RG8uRfRmKLbQ.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/kx/kxR1WBMiNEJJB5c5CAcppl7c-Q5tL7E4X7coarmN9_k.cache b/test-app/tmp/cache/assets/sprockets/v3.0/kx/kxR1WBMiNEJJB5c5CAcppl7c-Q5tL7E4X7coarmN9_k.cache deleted file mode 100644 index 440018d..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/kx/kxR1WBMiNEJJB5c5CAcppl7c-Q5tL7E4X7coarmN9_k.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/lF/lFxlr-_l3_UESGZifD7F0nCUxZywqwEnsTJBctqkATc.cache b/test-app/tmp/cache/assets/sprockets/v3.0/lF/lFxlr-_l3_UESGZifD7F0nCUxZywqwEnsTJBctqkATc.cache deleted file mode 100644 index fbe9a0f..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/lF/lFxlr-_l3_UESGZifD7F0nCUxZywqwEnsTJBctqkATc.cache +++ /dev/null @@ -1 +0,0 @@ -"%!\AXɹMJ{1$! b \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/lq/lqpoJFMrmwWIcESwk6xMcpxSGCg87TUndiE3yUaWXyw.cache b/test-app/tmp/cache/assets/sprockets/v3.0/lq/lqpoJFMrmwWIcESwk6xMcpxSGCg87TUndiE3yUaWXyw.cache deleted file mode 100644 index 3c3d0c1..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/lq/lqpoJFMrmwWIcESwk6xMcpxSGCg87TUndiE3yUaWXyw.cache +++ /dev/null @@ -1 +0,0 @@ -"%c_Xa/٠|y; \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/mK/mK-pQ7Y8vx5YvHrGdzFUZadOj7gYU2ob6bS66uLMRBA.cache b/test-app/tmp/cache/assets/sprockets/v3.0/mK/mK-pQ7Y8vx5YvHrGdzFUZadOj7gYU2ob6bS66uLMRBA.cache deleted file mode 100644 index e9ca311..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/mK/mK-pQ7Y8vx5YvHrGdzFUZadOj7gYU2ob6bS66uLMRBA.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/mc/mcjZfI65nyzyxZFoh0ExQmRNrjD6c0q3TlNbNuAl5zQ.cache b/test-app/tmp/cache/assets/sprockets/v3.0/mc/mcjZfI65nyzyxZFoh0ExQmRNrjD6c0q3TlNbNuAl5zQ.cache deleted file mode 100644 index 24e008b..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/mc/mcjZfI65nyzyxZFoh0ExQmRNrjD6c0q3TlNbNuAl5zQ.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"vfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/object-assign-pollyfill.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/mn/mnRkw00oC-jGuXKZkjSBH5vzcYw1YALeD0ebws0Z6-k.cache b/test-app/tmp/cache/assets/sprockets/v3.0/mn/mnRkw00oC-jGuXKZkjSBH5vzcYw1YALeD0ebws0Z6-k.cache deleted file mode 100644 index 151ea9e..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/mn/mnRkw00oC-jGuXKZkjSBH5vzcYw1YALeD0ebws0Z6-k.cache +++ /dev/null @@ -1,5 +0,0 @@ -{:uriI"file:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/images/logo_small.png?type=image/png&id=6cd604278a7d2a3f2201f0c73cd941b39cdfb6e6fb4aa9a38a96a3893e4175c5:ET:load_pathI">/Users/richie/src/rswag/rswag-ui/vendor/assets/components;T: filenameI"_/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/images/logo_small.png;T: nameI"!swagger-ui/images/logo_small;T:logical_pathI"%swagger-ui/images/logo_small.png;T:content_typeI"image/png;T: source0: metadata{: digest"%,cVtN"_v97Lb: lengthi:dependencieso:Set: -@hash{ -I"environment-version;TTI"environment-paths;TTI"rails-env;TTI"2processors:type=image/png&file_type=image/png;TTI"mfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/images/logo_small.png;TT:dependencies_digest"%8M ,rtݗ -MS"c:idI"E6cd604278a7d2a3f2201f0c73cd941b39cdfb6e6fb4aa9a38a96a3893e4175c5;F: -mtimel+W \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/nX/nXgEOftu7xA6bpMnHc--ipxfZMu4yCJMiU4NKL_mlos.cache b/test-app/tmp/cache/assets/sprockets/v3.0/nX/nXgEOftu7xA6bpMnHc--ipxfZMu4yCJMiU4NKL_mlos.cache deleted file mode 100644 index 9d8fbb1..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/nX/nXgEOftu7xA6bpMnHc--ipxfZMu4yCJMiU4NKL_mlos.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/swagger-oauth.js?type=application/javascript&id=78dd5896eb795db0bb7b2673ddfd8ff2b5ab148c0836c8fa66e12537cab50490:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/nZ/nZ9flIV4ipJ3xBPmLHwSWhpt7OhY3ufuFLvqvLrv_uI.cache b/test-app/tmp/cache/assets/sprockets/v3.0/nZ/nZ9flIV4ipJ3xBPmLHwSWhpt7OhY3ufuFLvqvLrv_uI.cache deleted file mode 100644 index ca049cd..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/nZ/nZ9flIV4ipJ3xBPmLHwSWhpt7OhY3ufuFLvqvLrv_uI.cache +++ /dev/null @@ -1 +0,0 @@ -"%L7qMe/gz2·d"U \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/nb/nb5sTMc1sqUaFmyyvTgBAQJE2c5z4Y1LkFBOJ6Ow2K0.cache b/test-app/tmp/cache/assets/sprockets/v3.0/nb/nb5sTMc1sqUaFmyyvTgBAQJE2c5z4Y1LkFBOJ6Ow2K0.cache deleted file mode 100644 index 4575338..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/nb/nb5sTMc1sqUaFmyyvTgBAQJE2c5z4Y1LkFBOJ6Ow2K0.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery.wiggle.min.js?type=application/javascript&pipeline=self&id=a80c6ca294ee3bd74795c938d5b5c0ab8422aae8121453ec194dd48a07aa86b0:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/oe/oeE0hX76Av73DaWS3YGck4xFDX4jGDdIsE-7TQNwr_Q.cache b/test-app/tmp/cache/assets/sprockets/v3.0/oe/oeE0hX76Av73DaWS3YGck4xFDX4jGDdIsE-7TQNwr_Q.cache deleted file mode 100644 index e6981bb..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/oe/oeE0hX76Av73DaWS3YGck4xFDX4jGDdIsE-7TQNwr_Q.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/q3/q3SEkL-krNQFj3RpAXgANR38tlmtCoE3gvFs3cJSWB0.cache b/test-app/tmp/cache/assets/sprockets/v3.0/q3/q3SEkL-krNQFj3RpAXgANR38tlmtCoE3gvFs3cJSWB0.cache deleted file mode 100644 index c697114..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/q3/q3SEkL-krNQFj3RpAXgANR38tlmtCoE3gvFs3cJSWB0.cache +++ /dev/null @@ -1 +0,0 @@ -"%%mN`ݪ{[{텎iD OBXDnn9͜ \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/q9/q9j-4PChQy7_Eg7Pox07YjNO2E8PDOB3c5jjJXUnRK4.cache b/test-app/tmp/cache/assets/sprockets/v3.0/q9/q9j-4PChQy7_Eg7Pox07YjNO2E8PDOB3c5jjJXUnRK4.cache deleted file mode 100644 index 74a50ca..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/q9/q9j-4PChQy7_Eg7Pox07YjNO2E8PDOB3c5jjJXUnRK4.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"kfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/backbone-min.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/qL/qLVY0YArYZIRqTcXxAvcpDIoCkGwydv2oRVHOwX-b9c.cache b/test-app/tmp/cache/assets/sprockets/v3.0/qL/qLVY0YArYZIRqTcXxAvcpDIoCkGwydv2oRVHOwX-b9c.cache deleted file mode 100644 index ea62ee3..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/qL/qLVY0YArYZIRqTcXxAvcpDIoCkGwydv2oRVHOwX-b9c.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/typography.css?type=text/css&pipeline=self&id=ff0956e7129d4cbe211f1c12f119192837af96ec58ccc2945d456e8f861c6c8a:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/qZ/qZqIXzhRVfrWL6qBhVL3Dkozr_6vlMGDfKtbmZ8MrXk.cache b/test-app/tmp/cache/assets/sprockets/v3.0/qZ/qZqIXzhRVfrWL6qBhVL3Dkozr_6vlMGDfKtbmZ8MrXk.cache deleted file mode 100644 index bc59b79..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/qZ/qZqIXzhRVfrWL6qBhVL3Dkozr_6vlMGDfKtbmZ8MrXk.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"ifile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/lodash.min.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/qk/qk9_CfYx8m75xdzgrkhA8vhQmPGk2qaGqkIDjCQ7Qdc.cache b/test-app/tmp/cache/assets/sprockets/v3.0/qk/qk9_CfYx8m75xdzgrkhA8vhQmPGk2qaGqkIDjCQ7Qdc.cache deleted file mode 100644 index 9b49bc6..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/qk/qk9_CfYx8m75xdzgrkhA8vhQmPGk2qaGqkIDjCQ7Qdc.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"ofile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/handlebars-4.0.5.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/rW/rW-0m-SifvGE1h3yL9PP3ks7pqk05zlHwDpIn9douXI.cache b/test-app/tmp/cache/assets/sprockets/v3.0/rW/rW-0m-SifvGE1h3yL9PP3ks7pqk05zlHwDpIn9douXI.cache deleted file mode 100644 index 2cdba6e..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/rW/rW-0m-SifvGE1h3yL9PP3ks7pqk05zlHwDpIn9douXI.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"0processors:type=text/css&file_type=text/css;TTI"ffile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/screen.css;TTI">processors:type=text/css&file_type=text/css&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/rY/rYZFf_Gas2MSD9kB0tLZh4zQacG-wNeuQdHBnMGvC1s.cache b/test-app/tmp/cache/assets/sprockets/v3.0/rY/rYZFf_Gas2MSD9kB0tLZh4zQacG-wNeuQdHBnMGvC1s.cache deleted file mode 100644 index ab72852..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/rY/rYZFf_Gas2MSD9kB0tLZh4zQacG-wNeuQdHBnMGvC1s.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/highlight.9.1.0.pack.js?type=application/javascript&id=fae62d163818a6d62e0e4aa0121b7e735d50b65a811791c1bc3fddcc97ca62d5:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/s7/s7yzMGKzCD1r_zS3DMMX4u_4_xrNCHXWPrAsCWnFVdc.cache b/test-app/tmp/cache/assets/sprockets/v3.0/s7/s7yzMGKzCD1r_zS3DMMX4u_4_xrNCHXWPrAsCWnFVdc.cache deleted file mode 100644 index f6f7e4e..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/s7/s7yzMGKzCD1r_zS3DMMX4u_4_xrNCHXWPrAsCWnFVdc.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"pfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery.wiggle.min.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/tI/tI0HNOcTNdbHY9GTEtSktihb--UacCef319epJGucmw.cache b/test-app/tmp/cache/assets/sprockets/v3.0/tI/tI0HNOcTNdbHY9GTEtSktihb--UacCef319epJGucmw.cache deleted file mode 100644 index b7f56a5..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/tI/tI0HNOcTNdbHY9GTEtSktihb--UacCef319epJGucmw.cache +++ /dev/null @@ -1,3 +0,0 @@ -[o:Set: -@hash{ -I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TTI"pfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery.ba-bbq.min.js;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/tp/tpSiX-xHFGGCDq9uOpbefot50KhxX4owOJqkUSdTl8E.cache b/test-app/tmp/cache/assets/sprockets/v3.0/tp/tpSiX-xHFGGCDq9uOpbefot50KhxX4owOJqkUSdTl8E.cache deleted file mode 100644 index 586ce4e..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/tp/tpSiX-xHFGGCDq9uOpbefot50KhxX4owOJqkUSdTl8E.cache +++ /dev/null @@ -1,2 +0,0 @@ -[o:Set: -@hash{ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"Lprocessors:type=application/javascript&file_type=application/javascript;TTI"lfile-digest:///Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/swagger-oauth.js;TTI"Zprocessors:type=application/javascript&file_type=application/javascript&pipeline=self;TT \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/ud/ud4SNIsQXRtsMeotM9wkfvtXQwFzlnlGroXMdfRmKKk.cache b/test-app/tmp/cache/assets/sprockets/v3.0/ud/ud4SNIsQXRtsMeotM9wkfvtXQwFzlnlGroXMdfRmKKk.cache deleted file mode 100644 index e6a127b..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/ud/ud4SNIsQXRtsMeotM9wkfvtXQwFzlnlGroXMdfRmKKk.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/css/screen.css?type=text/css&id=12f99f2ad980616277b9b47e1de8ffc6dce3a1e276c46eddef5bbaaafbb9e19e:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/v3/v3OUqzxgM6Thu0ODRnQo3coGAM5TAyrDP9khQasIUPI.cache b/test-app/tmp/cache/assets/sprockets/v3.0/v3/v3OUqzxgM6Thu0ODRnQo3coGAM5TAyrDP9khQasIUPI.cache deleted file mode 100644 index 7a24378..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/v3/v3OUqzxgM6Thu0ODRnQo3coGAM5TAyrDP9khQasIUPI.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery.ba-bbq.min.js?type=application/javascript&pipeline=self&id=f93a66d30241de3318b3dbaabbb06eab41b7fdff88df3eec94932d12ed9ec1d5:ET \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/wz/wzFbU2kMPIfwnpouD1N2jm0PY7NOcW5jEhd-TxvTo6k.cache b/test-app/tmp/cache/assets/sprockets/v3.0/wz/wzFbU2kMPIfwnpouD1N2jm0PY7NOcW5jEhd-TxvTo6k.cache deleted file mode 100644 index 6af95af..0000000 Binary files a/test-app/tmp/cache/assets/sprockets/v3.0/wz/wzFbU2kMPIfwnpouD1N2jm0PY7NOcW5jEhd-TxvTo6k.cache and /dev/null differ diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/xn/xnwxfmw846xN4WfJnzOAflrLQfid6sBwZQQu_YX72Wk.cache b/test-app/tmp/cache/assets/sprockets/v3.0/xn/xnwxfmw846xN4WfJnzOAflrLQfid6sBwZQQu_YX72Wk.cache deleted file mode 100644 index 354c364..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/xn/xnwxfmw846xN4WfJnzOAflrLQfid6sBwZQQu_YX72Wk.cache +++ /dev/null @@ -1 +0,0 @@ -"%JZ3\r4 >K<. h~H \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/y4/y4NGH_-sGDYixTRXfmGaAERQvEVYgJ8bntrK1RYngeQ.cache b/test-app/tmp/cache/assets/sprockets/v3.0/y4/y4NGH_-sGDYixTRXfmGaAERQvEVYgJ8bntrK1RYngeQ.cache deleted file mode 100644 index 9edf30e..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/y4/y4NGH_-sGDYixTRXfmGaAERQvEVYgJ8bntrK1RYngeQ.cache +++ /dev/null @@ -1 +0,0 @@ -"%bJ[lDr*fёVw? \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/zX/zXTuF0gpCWb1cV0rm6TFeLPYpdoNPq8rH_X5X-rMZXE.cache b/test-app/tmp/cache/assets/sprockets/v3.0/zX/zXTuF0gpCWb1cV0rm6TFeLPYpdoNPq8rH_X5X-rMZXE.cache deleted file mode 100644 index dc307e4..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/zX/zXTuF0gpCWb1cV0rm6TFeLPYpdoNPq8rH_X5X-rMZXE.cache +++ /dev/null @@ -1 +0,0 @@ -"%,cVtN"_v97Lb \ No newline at end of file diff --git a/test-app/tmp/cache/assets/sprockets/v3.0/zb/zbYNO3K3pWsAxTzs-zMe7TRrlu644MDeNAgVTIIrOYE.cache b/test-app/tmp/cache/assets/sprockets/v3.0/zb/zbYNO3K3pWsAxTzs-zMe7TRrlu644MDeNAgVTIIrOYE.cache deleted file mode 100644 index 904696a..0000000 --- a/test-app/tmp/cache/assets/sprockets/v3.0/zb/zbYNO3K3pWsAxTzs-zMe7TRrlu644MDeNAgVTIIrOYE.cache +++ /dev/null @@ -1 +0,0 @@ -I"/Users/richie/src/rswag/rswag-ui/vendor/assets/components/swagger-ui/lib/jquery-1.8.0.min.js?type=application/javascript&pipeline=self&id=674289cfb408ea5bdd2e657fd98c6d9e51005069726396f35ac003a3376bdb04:ET \ No newline at end of file