Started GET "/books/new" for ::1 at 2014-12-29 17:59:12 +0000

ActiveRecord::PendingMigrationError (

Migrations are pending. To resolve this issue, run:

	bin/rake db:migrate RAILS_ENV=development

):
  activerecord (4.2.0.beta4) lib/active_record/migration.rb:393:in `check_pending!'
  activerecord (4.2.0.beta4) lib/active_record/migration.rb:374:in `call'
  actionpack (4.2.0.beta4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
  activesupport (4.2.0.beta4) lib/active_support/callbacks.rb:88:in `call'
  activesupport (4.2.0.beta4) lib/active_support/callbacks.rb:88:in `_run_callbacks'
  activesupport (4.2.0.beta4) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
  activesupport (4.2.0.beta4) lib/active_support/callbacks.rb:81:in `run_callbacks'
  actionpack (4.2.0.beta4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
  actionpack (4.2.0.beta4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
  actionpack (4.2.0.beta4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
  actionpack (4.2.0.beta4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
  actionpack (4.2.0.beta4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
  railties (4.2.0.beta4) lib/rails/rack/logger.rb:38:in `call_app'
  railties (4.2.0.beta4) lib/rails/rack/logger.rb:20:in `block in call'
  activesupport (4.2.0.beta4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
  activesupport (4.2.0.beta4) lib/active_support/tagged_logging.rb:26:in `tagged'
  activesupport (4.2.0.beta4) lib/active_support/tagged_logging.rb:68:in `tagged'
  railties (4.2.0.beta4) lib/rails/rack/logger.rb:20:in `call'
  actionpack (4.2.0.beta4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
  rack (1.6.0.beta) lib/rack/methodoverride.rb:22:in `call'
  rack (1.6.0.beta) lib/rack/runtime.rb:17:in `call'
  activesupport (4.2.0.beta4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
  rack (1.6.0.beta) lib/rack/lock.rb:17:in `call'
  actionpack (4.2.0.beta4) lib/action_dispatch/middleware/static.rb:113:in `call'
  rack (1.6.0.beta) lib/rack/sendfile.rb:113:in `call'
  railties (4.2.0.beta4) lib/rails/engine.rb:514:in `call'
  railties (4.2.0.beta4) lib/rails/application.rb:161:in `call'
  rack (1.6.0.beta) lib/rack/tempfile_reaper.rb:15:in `call'
  rack (1.6.0.beta) lib/rack/lint.rb:49:in `_call'
  rack (1.6.0.beta) lib/rack/lint.rb:37:in `call'
  rack (1.6.0.beta) lib/rack/showexceptions.rb:24:in `call'
  rack (1.6.0.beta) lib/rack/commonlogger.rb:33:in `call'
  rack (1.6.0.beta) lib/rack/chunked.rb:54:in `call'
  rack (1.6.0.beta) lib/rack/content_length.rb:15:in `call'
  rack (1.6.0.beta) lib/rack/handler/webrick.rb:89:in `service'
  /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
  /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
  /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'


  Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.2.0.beta4/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
  Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.2.0.beta4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
  Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.2.0.beta4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
  Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.2.0.beta4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (27.6ms)
   (13.6ms)  CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
   (0.1ms)  select sqlite_version(*)
   (1.7ms)  CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
  ActiveRecord::SchemaMigration Load (0.2ms)  SELECT "schema_migrations".* FROM "schema_migrations"
Migrating to CreateBooks (20141116110032)
   (0.1ms)  begin transaction
   (0.8ms)  CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "author" varchar, "description" text, "price" float, "published_at" datetime, "discounted" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
  SQL (0.3ms)  INSERT INTO "schema_migrations" ("version") VALUES (?)  [["version", "20141116110032"]]
   (1.6ms)  commit transaction
  ActiveRecord::SchemaMigration Load (0.2ms)  SELECT "schema_migrations".* FROM "schema_migrations"


Started GET "/books/new" for ::1 at 2014-12-29 17:59:42 +0000
  ActiveRecord::SchemaMigration Load (0.2ms)  SELECT "schema_migrations".* FROM "schema_migrations"
Processing by BooksController#new as HTML
  Rendered books/_form.html.erb (185.1ms)
  Rendered books/new.html.erb within layouts/application (210.3ms)
Completed 200 OK in 410ms (Views: 394.0ms | ActiveRecord: 0.5ms)


Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 17:59:42 +0000


Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 17:59:42 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 17:59:42 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 17:59:42 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 17:59:42 +0000


Started GET "/books" for ::1 at 2014-12-29 17:59:48 +0000
Processing by BooksController#index as HTML
  Book Load (0.3ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (4.2ms)
Completed 200 OK in 97ms (Views: 95.9ms | ActiveRecord: 0.3ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 17:59:48 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 17:59:48 +0000


Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 17:59:48 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 17:59:48 +0000


Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 17:59:48 +0000


Started GET "/books/new" for ::1 at 2014-12-29 17:59:53 +0000
Processing by BooksController#new as HTML
  Rendered books/_form.html.erb (10.9ms)
  Rendered books/new.html.erb within layouts/application (11.9ms)
Completed 200 OK in 43ms (Views: 42.6ms | ActiveRecord: 0.0ms)


Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 17:59:53 +0000


Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 17:59:53 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 17:59:53 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 17:59:53 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 17:59:53 +0000


Started POST "/books" for ::1 at 2014-12-29 18:02:38 +0000
Processing by BooksController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"a/nN2sMvmPLOQKFitluxkADo6lu/lU9uhK+4lvVZuopcXz2+m690hqF7X41zfb2EhS5DaoilnovsSJmoAhw8vw==", "book"=>{"title"=>"1984", "author"=>"George Orwell", "description"=>"Written in 1948, 1984 was George Orwell’s chilling prophecy about the future. And while 1984 has come and gone, Orwell’s narrative is timelier than ever. 1984 presents a startling and haunting vision of the world, so powerful that it is completely convincing from start to finish. No one can deny the power of this novel, its hold on the imaginations of multiple generations of readers, or the resiliency of its admonitions—a legacy that seems only to grow with the passage of time.", "price"=>"$11.86", "published_at(1i)"=>"2010", "published_at(2i)"=>"7", "published_at(3i)"=>"1", "published_at(4i)"=>"17", "published_at(5i)"=>"59", "discounted"=>"0"}, "commit"=>"Create Book"}
   (0.1ms)  begin transaction
  SQL (0.6ms)  INSERT INTO "books" ("author", "created_at", "description", "discounted", "price", "published_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["author", "George Orwell"], ["created_at", "2014-12-29 18:02:38.991123"], ["description", "Written in 1948, 1984 was George Orwell’s chilling prophecy about the future. And while 1984 has come and gone, Orwell’s narrative is timelier than ever. 1984 presents a startling and haunting vision of the world, so powerful that it is completely convincing from start to finish. No one can deny the power of this novel, its hold on the imaginations of multiple generations of readers, or the resiliency of its admonitions—a legacy that seems only to grow with the passage of time."], ["discounted", "f"], ["price", 0.0], ["published_at", "2010-07-01 17:59:00.000000"], ["title", "1984"], ["updated_at", "2014-12-29 18:02:38.991123"]]
   (2.1ms)  commit transaction
Redirected to http://localhost:3000/books/1
Completed 302 Found in 20ms (ActiveRecord: 2.8ms)


Started GET "/books/1" for ::1 at 2014-12-29 18:02:39 +0000
Processing by BooksController#show as HTML
  Parameters: {"id"=>"1"}
  Book Load (0.5ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 1]]
  Rendered books/show.html.erb within layouts/application (2.3ms)
Completed 200 OK in 75ms (Views: 29.4ms | ActiveRecord: 0.5ms)


Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 18:02:39 +0000


Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 18:02:39 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:02:39 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:02:39 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:02:39 +0000


Started GET "/books" for ::1 at 2014-12-29 18:02:44 +0000
Processing by BooksController#index as HTML
  Book Load (0.3ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (6.0ms)
Completed 200 OK in 107ms (Views: 105.9ms | ActiveRecord: 0.3ms)


Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 18:02:45 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:02:45 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:02:45 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:02:45 +0000


Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 18:02:45 +0000


Started GET "/books/1/edit" for ::1 at 2014-12-29 18:03:04 +0000
Processing by BooksController#edit as HTML
  Parameters: {"id"=>"1"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 1]]
  Rendered books/_form.html.erb (10.6ms)
  Rendered books/edit.html.erb within layouts/application (15.1ms)
Completed 200 OK in 48ms (Views: 46.6ms | ActiveRecord: 0.2ms)


Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 18:03:04 +0000


Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 18:03:04 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:03:04 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:03:04 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:03:04 +0000


Started PATCH "/books/1" for ::1 at 2014-12-29 18:03:09 +0000
Processing by BooksController#update as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tp2/gGzpcVQIyh1W9PYmhUoQ1MKWxDayibinQfGRokJ5O0/kNGmdIGfx47kx0CqRz9Z986H051fhX4Z/BtQkdw==", "book"=>{"title"=>"1984", "author"=>"George Orwell", "description"=>"Written in 1948, 1984 was George Orwell’s chilling prophecy about the future. And while 1984 has come and gone, Orwell’s narrative is timelier than ever. 1984 presents a startling and haunting vision of the world, so powerful that it is completely convincing from start to finish. No one can deny the power of this novel, its hold on the imaginations of multiple generations of readers, or the resiliency of its admonitions—a legacy that seems only to grow with the passage of time.", "price"=>"11.89", "published_at(1i)"=>"2010", "published_at(2i)"=>"7", "published_at(3i)"=>"1", "published_at(4i)"=>"17", "published_at(5i)"=>"59", "discounted"=>"0"}, "commit"=>"Update Book", "id"=>"1"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 1]]
   (0.1ms)  begin transaction
  SQL (0.8ms)  UPDATE "books" SET "price" = ?, "updated_at" = ? WHERE "books"."id" = 1  [["price", 11.89], ["updated_at", "2014-12-29 18:03:09.367910"]]
   (1.9ms)  commit transaction
Redirected to http://localhost:3000/books/1
Completed 302 Found in 14ms (ActiveRecord: 3.0ms)


Started GET "/books/1" for ::1 at 2014-12-29 18:03:09 +0000
Processing by BooksController#show as HTML
  Parameters: {"id"=>"1"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 1]]
  Rendered books/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 91ms (Views: 89.7ms | ActiveRecord: 0.2ms)


Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 18:03:09 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:03:09 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:03:09 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:03:09 +0000


Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 18:03:09 +0000


Started GET "/books" for ::1 at 2014-12-29 18:03:11 +0000
Processing by BooksController#index as HTML
  Book Load (0.3ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (7.8ms)
Completed 200 OK in 40ms (Views: 39.0ms | ActiveRecord: 0.3ms)


Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 18:03:12 +0000


Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 18:03:12 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:03:12 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:03:12 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:03:12 +0000


Started GET "/books" for ::1 at 2014-12-29 18:03:30 +0000
Processing by BooksController#index as HTML
  Book Load (0.3ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (5.0ms)
Completed 200 OK in 110ms (Views: 109.1ms | ActiveRecord: 0.3ms)


Started GET "/assets/skins-air-37e23b1c8dd705e15cfaccab8f944678.css?body=1" for ::1 at 2014-12-29 18:03:30 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:03:30 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:03:30 +0000


Started GET "/assets/application-cc8f44ee36547dc978d14a6603ae7cee.css?body=1" for ::1 at 2014-12-29 18:03:30 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:03:30 +0000


Started GET "/books/1/edit" for ::1 at 2014-12-29 18:04:15 +0000
Processing by BooksController#edit as HTML
  Parameters: {"id"=>"1"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 1]]
  Rendered books/_form.html.erb (11.3ms)
  Rendered books/edit.html.erb within layouts/application (12.6ms)
Completed 200 OK in 42ms (Views: 40.4ms | ActiveRecord: 0.2ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:04:15 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:04:15 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:04:15 +0000


Started PATCH "/books/1" for ::1 at 2014-12-29 18:04:22 +0000
Processing by BooksController#update as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"oBgWMwvw3dFGWPO6LOqxFJRm2CCOJoZtAiIHX3WePl+XvuZXU3AxpSljDVXpzL0AEaBxEbkWV4hqxSZhgtu4ag==", "book"=>{"title"=>"1984", "author"=>"George Orwell", "description"=>"Written in 1948, 1984 was George Orwell’s chilling prophecy about the future.", "price"=>"11.89", "published_at(1i)"=>"2010", "published_at(2i)"=>"7", "published_at(3i)"=>"1", "published_at(4i)"=>"17", "published_at(5i)"=>"59", "discounted"=>"0"}, "commit"=>"Update Book", "id"=>"1"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 1]]
   (0.2ms)  begin transaction
  SQL (0.5ms)  UPDATE "books" SET "description" = ?, "updated_at" = ? WHERE "books"."id" = 1  [["description", "Written in 1948, 1984 was George Orwell’s chilling prophecy about the future."], ["updated_at", "2014-12-29 18:04:22.141021"]]
   (1.7ms)  commit transaction
Redirected to http://localhost:3000/books/1
Completed 302 Found in 84ms (ActiveRecord: 2.6ms)


Started GET "/books/1" for ::1 at 2014-12-29 18:04:22 +0000
Processing by BooksController#show as HTML
  Parameters: {"id"=>"1"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 1]]
  Rendered books/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 32ms (Views: 30.6ms | ActiveRecord: 0.2ms)


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:04:22 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:04:22 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:04:22 +0000


Started GET "/books" for ::1 at 2014-12-29 18:04:23 +0000
Processing by BooksController#index as HTML
  Book Load (0.2ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (4.4ms)
Completed 200 OK in 39ms (Views: 38.4ms | ActiveRecord: 0.2ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:04:23 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:04:23 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:04:23 +0000


Started DELETE "/books/1" for ::1 at 2014-12-29 18:05:01 +0000
Processing by BooksController#destroy as HTML
  Parameters: {"authenticity_token"=>"+I5XznQAPHMUkWCw24e6i/va+6EkPFVHG0xHZyK1JbfPKKeqLIDQB3uqnl8eobaffhxSkBMMhKJzq2ZZ1fCjgg==", "id"=>"1"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 1]]
   (0.1ms)  begin transaction
  SQL (3.9ms)  DELETE FROM "books" WHERE "books"."id" = ?  [["id", 1]]
   (2.7ms)  commit transaction
Redirected to http://localhost:3000/books
Completed 302 Found in 12ms (ActiveRecord: 6.9ms)


Started GET "/books" for ::1 at 2014-12-29 18:05:01 +0000
Processing by BooksController#index as HTML
  Book Load (1.7ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (4.9ms)
Completed 200 OK in 86ms (Views: 83.8ms | ActiveRecord: 1.7ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:05:01 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:05:01 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:05:01 +0000


Started GET "/books/new" for ::1 at 2014-12-29 18:05:03 +0000
Processing by BooksController#new as HTML
  Rendered books/_form.html.erb (11.1ms)
  Rendered books/new.html.erb within layouts/application (12.8ms)
Completed 200 OK in 43ms (Views: 42.4ms | ActiveRecord: 0.0ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:05:03 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:05:03 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:05:03 +0000


Started POST "/books" for ::1 at 2014-12-29 18:06:08 +0000
Processing by BooksController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"PBh2dJWxiPxHH/MN5bmDUTgaUzopxcCkrR0PlTiKaRELvoYQzTFkiCgkDeIgn49Fvdz6Cx71EUHF+i6rz8/vJA==", "book"=>{"title"=>"Everything I Never Told You: A Novel", "author"=>"Celeste Ng", "description"=>"Lydia is dead. But they don’t know this yet . . . ", "price"=>"15.22", "published_at(1i)"=>"2014", "published_at(2i)"=>"6", "published_at(3i)"=>"1", "published_at(4i)"=>"18", "published_at(5i)"=>"05", "discounted"=>"0"}, "commit"=>"Create Book"}
   (0.1ms)  begin transaction
  SQL (0.5ms)  INSERT INTO "books" ("author", "created_at", "description", "discounted", "price", "published_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["author", "Celeste Ng"], ["created_at", "2014-12-29 18:06:08.192260"], ["description", "Lydia is dead. But they don’t know this yet . . . "], ["discounted", "f"], ["price", 15.22], ["published_at", "2014-06-01 18:05:00.000000"], ["title", "Everything I Never Told You: A Novel"], ["updated_at", "2014-12-29 18:06:08.192260"]]
   (1.3ms)  commit transaction
Redirected to http://localhost:3000/books/2
Completed 302 Found in 14ms (ActiveRecord: 1.9ms)


Started GET "/books/2" for ::1 at 2014-12-29 18:06:08 +0000
Processing by BooksController#show as HTML
  Parameters: {"id"=>"2"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 2]]
  Rendered books/show.html.erb within layouts/application (1.3ms)
Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.2ms)


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:06:08 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:06:08 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:06:08 +0000


Started GET "/books" for ::1 at 2014-12-29 18:06:10 +0000
Processing by BooksController#index as HTML
  Book Load (0.6ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (4.4ms)
Completed 200 OK in 37ms (Views: 35.6ms | ActiveRecord: 0.6ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:06:10 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:06:10 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:06:10 +0000


Started GET "/books/new" for ::1 at 2014-12-29 18:06:17 +0000
Processing by BooksController#new as HTML
  Rendered books/_form.html.erb (10.0ms)
  Rendered books/new.html.erb within layouts/application (10.9ms)
Completed 200 OK in 44ms (Views: 43.7ms | ActiveRecord: 0.0ms)


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:06:17 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:06:17 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:06:17 +0000


Started POST "/books" for ::1 at 2014-12-29 18:07:36 +0000
Processing by BooksController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"eLfl8Gt4a1iQ6FuQ43dM05V0E5nsExTyBdIZCGPzYB9PERWUM/iHLP/TpX8mUUDHELK6qNsjxRdtNTg2lLbmKg==", "book"=>{"title"=>"All the Light We Cannot See: A Novel", "author"=>"Anthony Doerr", "description"=>"The New York Times bestseller about a blind French girl and a German boy whose paths collide in occupied France as both try to survive the devastation of World War II", "price"=>"17.16", "published_at(1i)"=>"2014", "published_at(2i)"=>"5", "published_at(3i)"=>"6", "published_at(4i)"=>"18", "published_at(5i)"=>"06", "discounted"=>"0"}, "commit"=>"Create Book"}
   (0.1ms)  begin transaction
  SQL (0.6ms)  INSERT INTO "books" ("author", "created_at", "description", "discounted", "price", "published_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["author", "Anthony Doerr"], ["created_at", "2014-12-29 18:07:36.614784"], ["description", "The New York Times bestseller about a blind French girl and a German boy whose paths collide in occupied France as both try to survive the devastation of World War II"], ["discounted", "f"], ["price", 17.16], ["published_at", "2014-05-06 18:06:00.000000"], ["title", "All the Light We Cannot See: A Novel"], ["updated_at", "2014-12-29 18:07:36.614784"]]
   (2.2ms)  commit transaction
Redirected to http://localhost:3000/books/3
Completed 302 Found in 18ms (ActiveRecord: 2.9ms)


Started GET "/books/3" for ::1 at 2014-12-29 18:07:36 +0000
Processing by BooksController#show as HTML
  Parameters: {"id"=>"3"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 3]]
  Rendered books/show.html.erb within layouts/application (1.4ms)
Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.2ms)


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:07:36 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:07:36 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:07:36 +0000


Started GET "/books" for ::1 at 2014-12-29 18:07:39 +0000
Processing by BooksController#index as HTML
  Book Load (0.3ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (5.5ms)
Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.3ms)


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:07:40 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:07:40 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:07:40 +0000


Started GET "/books/new" for ::1 at 2014-12-29 18:07:56 +0000
Processing by BooksController#new as HTML
  Rendered books/_form.html.erb (8.1ms)
  Rendered books/new.html.erb within layouts/application (9.6ms)
Completed 200 OK in 42ms (Views: 41.9ms | ActiveRecord: 0.0ms)


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:07:56 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:07:56 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:07:56 +0000


Started POST "/books" for ::1 at 2014-12-29 18:10:11 +0000
Processing by BooksController#create as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"hbJ69dMQYX8ApNrd+PFg8eF1a9dmpfm4ho5lvlLPeeGyFIqRi5CNC2+fJDI912zlZLPC5lGVKF3uaUSApYr/1A==", "book"=>{"title"=>"Gray Mountain", "author"=>"John Grisham", "description"=>"The year is 2008 and Samantha Kofer’s career at a huge Wall Street law firm is on the fast track...", "price"=>"14.48", "published_at(1i)"=>"2014", "published_at(2i)"=>"10", "published_at(3i)"=>"21", "published_at(4i)"=>"18", "published_at(5i)"=>"07", "discounted"=>"0"}, "commit"=>"Create Book"}
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "books" ("author", "created_at", "description", "discounted", "price", "published_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["author", "John Grisham"], ["created_at", "2014-12-29 18:10:11.486402"], ["description", "The year is 2008 and Samantha Kofer’s career at a huge Wall Street law firm is on the fast track..."], ["discounted", "f"], ["price", 14.48], ["published_at", "2014-10-21 18:07:00.000000"], ["title", "Gray Mountain"], ["updated_at", "2014-12-29 18:10:11.486402"]]
   (2.1ms)  commit transaction
Redirected to http://localhost:3000/books/4
Completed 302 Found in 10ms (ActiveRecord: 2.6ms)


Started GET "/books/4" for ::1 at 2014-12-29 18:10:11 +0000
Processing by BooksController#show as HTML
  Parameters: {"id"=>"4"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 4]]
  Rendered books/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 76ms (Views: 74.7ms | ActiveRecord: 0.2ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:10:11 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:10:11 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:10:11 +0000


Started GET "/books" for ::1 at 2014-12-29 18:10:13 +0000
Processing by BooksController#index as HTML
  Book Load (0.2ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (5.3ms)
Completed 200 OK in 38ms (Views: 37.6ms | ActiveRecord: 0.2ms)


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:10:13 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:10:13 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:10:13 +0000


Started GET "/books" for ::1 at 2014-12-29 18:11:25 +0000
Processing by BooksController#index as HTML
  Book Load (0.3ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (7.7ms)
Completed 200 OK in 54ms (Views: 53.1ms | ActiveRecord: 0.3ms)


Started GET "/assets/application-7cb3e8f270a3454dd4827b5f81b0c661.css?body=1" for ::1 at 2014-12-29 18:11:25 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:11:25 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:11:25 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:11:25 +0000


Started GET "/assets/skins-air-04c81545cbbb97bc5771ee94d1d26494.css?body=1" for ::1 at 2014-12-29 18:11:25 +0000


Started GET "/books" for ::1 at 2014-12-29 18:11:38 +0000
Processing by BooksController#index as HTML
  Book Load (0.2ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (6.3ms)
Completed 200 OK in 47ms (Views: 46.3ms | ActiveRecord: 0.2ms)


Started GET "/assets/skins-air-d35ea3eabf4b2eed7195da02f1639f50.css?body=1" for ::1 at 2014-12-29 18:11:38 +0000


Started GET "/assets/application-ca351ff641c9546d7066f2702ef3b43c.css?body=1" for ::1 at 2014-12-29 18:11:38 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:11:38 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:11:38 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:11:38 +0000


Started GET "/books" for ::1 at 2014-12-29 18:11:45 +0000
Processing by BooksController#index as HTML
  Book Load (0.3ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (6.0ms)
Completed 200 OK in 120ms (Views: 119.7ms | ActiveRecord: 0.3ms)


Started GET "/assets/skins-air-451206268eefc91bb451a969d934fe32.css?body=1" for ::1 at 2014-12-29 18:11:45 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:11:45 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:11:45 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:11:45 +0000


Started GET "/assets/application-80b6affb1496899ccc058d0904300dd2.css?body=1" for ::1 at 2014-12-29 18:11:45 +0000


Started GET "/books/2/edit" for ::1 at 2014-12-29 18:12:03 +0000
Processing by BooksController#edit as HTML
  Parameters: {"id"=>"2"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 2]]
  Rendered books/_form.html.erb (11.9ms)
  Rendered books/edit.html.erb within layouts/application (13.1ms)
Completed 200 OK in 43ms (Views: 42.2ms | ActiveRecord: 0.2ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:03 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:03 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:03 +0000


Started PATCH "/books/2" for ::1 at 2014-12-29 18:12:11 +0000
Processing by BooksController#update as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"YUUgyY9/LxkAKtUdq85mPENfF1+nllp6bZ2Tq64QQlhW49Ct1//DbW8RK/Ju6Gooxpm+bpCmi58FerKVWVXEbQ==", "book"=>{"title"=>"Everything I Never Told You", "author"=>"Celeste Ng", "description"=>"Lydia is dead. But they don’t know this yet . . . ", "price"=>"15.22", "published_at(1i)"=>"2014", "published_at(2i)"=>"6", "published_at(3i)"=>"1", "published_at(4i)"=>"18", "published_at(5i)"=>"05", "discounted"=>"0"}, "commit"=>"Update Book", "id"=>"2"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 2]]
   (0.1ms)  begin transaction
  SQL (0.7ms)  UPDATE "books" SET "title" = ?, "updated_at" = ? WHERE "books"."id" = 2  [["title", "Everything I Never Told You"], ["updated_at", "2014-12-29 18:12:11.985782"]]
   (1.5ms)  commit transaction
Redirected to http://localhost:3000/books/2
Completed 302 Found in 10ms (ActiveRecord: 2.5ms)


Started GET "/books/2" for ::1 at 2014-12-29 18:12:11 +0000
Processing by BooksController#show as HTML
  Parameters: {"id"=>"2"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 2]]
  Rendered books/show.html.erb within layouts/application (1.1ms)
Completed 200 OK in 76ms (Views: 74.6ms | ActiveRecord: 0.2ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:12 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:12 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:12 +0000


Started GET "/books" for ::1 at 2014-12-29 18:12:13 +0000
Processing by BooksController#index as HTML
  Book Load (0.3ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (8.5ms)
Completed 200 OK in 113ms (Views: 111.6ms | ActiveRecord: 0.3ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:13 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:14 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:14 +0000


Started GET "/books/3/edit" for ::1 at 2014-12-29 18:12:16 +0000
Processing by BooksController#edit as HTML
  Parameters: {"id"=>"3"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 3]]
  Rendered books/_form.html.erb (8.6ms)
  Rendered books/edit.html.erb within layouts/application (9.7ms)
Completed 200 OK in 40ms (Views: 38.9ms | ActiveRecord: 0.2ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:16 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:16 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:16 +0000


Started PATCH "/books/3" for ::1 at 2014-12-29 18:12:22 +0000
Processing by BooksController#update as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"BBZlYOEcctTzO4RqqINGkhkiGQsSW3EKJaz34EPhlfkzsJUEuZyeoJwAeoVtpUqGnOSwOiVroO9NS9betKQTzA==", "book"=>{"title"=>"All the Light We Cannot See", "author"=>"Anthony Doerr", "description"=>"The New York Times bestseller about a blind French girl and a German boy whose paths collide in occupied France as both try to survive the devastation of World War II", "price"=>"17.16", "published_at(1i)"=>"2014", "published_at(2i)"=>"5", "published_at(3i)"=>"6", "published_at(4i)"=>"18", "published_at(5i)"=>"06", "discounted"=>"0"}, "commit"=>"Update Book", "id"=>"3"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 3]]
   (0.1ms)  begin transaction
  SQL (0.5ms)  UPDATE "books" SET "title" = ?, "updated_at" = ? WHERE "books"."id" = 3  [["title", "All the Light We Cannot See"], ["updated_at", "2014-12-29 18:12:22.831298"]]
   (5.1ms)  commit transaction
Redirected to http://localhost:3000/books/3
Completed 302 Found in 17ms (ActiveRecord: 5.9ms)


Started GET "/books/3" for ::1 at 2014-12-29 18:12:22 +0000
Processing by BooksController#show as HTML
  Parameters: {"id"=>"3"}
  Book Load (0.2ms)  SELECT  "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1  [["id", 3]]
  Rendered books/show.html.erb within layouts/application (1.2ms)
Completed 200 OK in 33ms (Views: 32.5ms | ActiveRecord: 0.2ms)


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:22 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:22 +0000


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:22 +0000


Started GET "/books" for ::1 at 2014-12-29 18:12:24 +0000
Processing by BooksController#index as HTML
  Book Load (0.2ms)  SELECT "books".* FROM "books"
  Rendered books/index.html.erb within layouts/application (58.2ms)
Completed 200 OK in 90ms (Views: 89.0ms | ActiveRecord: 0.2ms)


Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:24 +0000


Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:24 +0000


Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:24 +0000