(1.0ms) select sqlite_version(*)  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20110927222742)  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "settings" text, "created_at" datetime, "updated_at" datetime)  (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110927222742')  (1.0ms) select sqlite_version(*)  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (1.0ms) PRAGMA index_list("users")  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20110927222742)  (1.0ms) select sqlite_version(*)  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (1.0ms) PRAGMA index_list("users")  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (1.0ms) select sqlite_version(*)  (5.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "settings" text, "created_at" datetime, "updated_at" datetime)   (7.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (1.0ms) PRAGMA index_list("schema_migrations")  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (2.0ms) SELECT version FROM "schema_migrations"  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110927222742') Started GET "/" for 127.0.0.1 at 2011-12-02 17:56:14 -0800 Processing by MainController#index as HTML Rendered main/index.html.erb within layouts/application (3.0ms) Compiled application.css (2ms) (pid 20134) Compiled main.css (0ms) (pid 20134) Compiled scaffold.css (0ms) (pid 20134) Compiled users.css (0ms) (pid 20134) Compiled application.js (4ms) (pid 20134) Compiled jquery.js (3ms) (pid 20134) Compiled jquery_ujs.js (0ms) (pid 20134) Compiled main.js (0ms) (pid 20134) Compiled users.js (0ms) (pid 20134) Completed 200 OK in 189ms (Views: 188.2ms | ActiveRecord: 0.0ms) Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2011-12-02 17:56:15 -0800 Served asset /scaffold.css - 200 OK (4ms) Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2011-12-02 17:56:15 -0800 Served asset /users.css - 200 OK (3ms) Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2011-12-02 17:56:15 -0800 Served asset /users.js - 200 OK (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-02 17:56:15 -0800 Served asset /jquery.js - 200 OK (8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-02 17:56:15 -0800 Served asset /application.css - 200 OK (0ms) Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-02 17:56:15 -0800 Served asset /main.css - 200 OK (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-02 17:56:15 -0800 Served asset /jquery_ujs.js - 200 OK (2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-02 17:56:15 -0800 Served asset /application.js - 200 OK (0ms) Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-02 17:56:15 -0800 Served asset /main.js - 200 OK (1ms) Started GET "/users" for 127.0.0.1 at 2011-12-02 17:56:17 -0800 Processing by UsersController#index as HTML User Load (0.1ms) SELECT "users".* FROM "users"  Rendered users/index.html.erb within layouts/application (1.0ms) Completed 200 OK in 51ms (Views: 25.8ms | ActiveRecord: 0.9ms) Started GET "/users/new" for 127.0.0.1 at 2011-12-02 17:56:18 -0800 Processing by UsersController#new as HTML Rendered users/_form.html.erb (9.6ms) Rendered users/new.html.erb within layouts/application (13.5ms) Completed 200 OK in 51ms (Views: 19.4ms | ActiveRecord: 0.6ms) Started POST "/users" for 127.0.0.1 at 2011-12-02 17:56:24 -0800 Processing by UsersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"c0PKUGFzfNP0RgKHBlmBR++qRjO5B4ItDyZK8vkXrN0=", "user"=>{"name"=>"Kevin", "email"=>"", "fb_share"=>"1", "tw_share"=>"1", "tumblr_share"=>"true"}, "commit"=>"Create User"} SQL (5.3ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 03 Dec 2011 01:56:24 UTC +00:00], ["email", ""], ["name", "Kevin"], ["settings", "---\n:fb_share: true\n:tw_share: true\n:tumblr_share: true\n"], ["updated_at", Sat, 03 Dec 2011 01:56:24 UTC +00:00]] Redirected to http://localhost:3000/users/1 Completed 302 Found in 49ms Started GET "/users/1" for 127.0.0.1 at 2011-12-02 17:56:24 -0800 Processing by UsersController#show as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]] Rendered users/show.html.erb within layouts/application (6.7ms) Completed 200 OK in 22ms (Views: 13.7ms | ActiveRecord: 0.8ms) Started GET "/users/1/edit" for 127.0.0.1 at 2011-12-02 17:56:26 -0800 Processing by UsersController#edit as HTML Parameters: {"id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]] Rendered users/_form.html.erb (8.1ms) Rendered users/edit.html.erb within layouts/application (9.9ms) Completed 200 OK in 21ms (Views: 15.8ms | ActiveRecord: 0.7ms) Started PUT "/users/1" for 127.0.0.1 at 2011-12-02 17:56:27 -0800 Processing by UsersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"c0PKUGFzfNP0RgKHBlmBR++qRjO5B4ItDyZK8vkXrN0=", "user"=>{"name"=>"Kevin", "email"=>"", "fb_share"=>"1", "tw_share"=>"1", "tumblr_share"=>"false"}, "commit"=>"Update User", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]  (0.3ms) UPDATE "users" SET "updated_at" = '2011-12-03 01:56:27.873633', "settings" = '--- :fb_share: true :tw_share: true :tumblr_share: false ' WHERE "users"."id" = 1 Redirected to http://localhost:3000/users/1 Completed 302 Found in 19ms Started GET "/users/1" for 127.0.0.1 at 2011-12-02 17:56:27 -0800 Processing by UsersController#show as HTML Parameters: {"id"=>"1"} User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]] Rendered users/show.html.erb within layouts/application (5.6ms) Completed 200 OK in 19ms (Views: 12.2ms | ActiveRecord: 0.8ms) Started GET "/users/1/edit" for 127.0.0.1 at 2011-12-02 17:56:29 -0800 Processing by UsersController#edit as HTML Parameters: {"id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]] Rendered users/_form.html.erb (7.8ms) Rendered users/edit.html.erb within layouts/application (9.3ms) Completed 200 OK in 21ms (Views: 15.5ms | ActiveRecord: 0.6ms) Started PUT "/users/1" for 127.0.0.1 at 2011-12-02 17:56:30 -0800 Processing by UsersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"c0PKUGFzfNP0RgKHBlmBR++qRjO5B4ItDyZK8vkXrN0=", "user"=>{"name"=>"Kevin", "email"=>"", "fb_share"=>"1", "tw_share"=>"1", "tumblr_share"=>"true"}, "commit"=>"Update User", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]  (0.3ms) UPDATE "users" SET "updated_at" = '2011-12-03 01:56:30.814349', "settings" = '--- :fb_share: true :tw_share: true :tumblr_share: true ' WHERE "users"."id" = 1 Redirected to http://localhost:3000/users/1 Completed 302 Found in 23ms Started GET "/users/1" for 127.0.0.1 at 2011-12-02 17:56:30 -0800 Processing by UsersController#show as HTML Parameters: {"id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]] Rendered users/show.html.erb within layouts/application (5.9ms) Completed 200 OK in 18ms (Views: 11.9ms | ActiveRecord: 0.6ms) Started GET "/users/1/edit" for 127.0.0.1 at 2011-12-02 17:56:32 -0800 Processing by UsersController#edit as HTML Parameters: {"id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]] Rendered users/_form.html.erb (8.6ms) Rendered users/edit.html.erb within layouts/application (10.1ms) Completed 200 OK in 22ms (Views: 16.3ms | ActiveRecord: 0.6ms) Started PUT "/users/1" for 127.0.0.1 at 2011-12-02 17:56:33 -0800 Processing by UsersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"c0PKUGFzfNP0RgKHBlmBR++qRjO5B4ItDyZK8vkXrN0=", "user"=>{"name"=>"Kevin", "email"=>"", "fb_share"=>"1", "tw_share"=>"1", "tumblr_share"=>"false"}, "commit"=>"Update User", "id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]]  (0.4ms) UPDATE "users" SET "updated_at" = '2011-12-03 01:56:33.962584', "settings" = '--- :fb_share: true :tw_share: true :tumblr_share: false ' WHERE "users"."id" = 1 Redirected to http://localhost:3000/users/1 Completed 302 Found in 19ms Started GET "/users/1" for 127.0.0.1 at 2011-12-02 17:56:34 -0800 Processing by UsersController#show as HTML Parameters: {"id"=>"1"} User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1"]] Rendered users/show.html.erb within layouts/application (6.3ms) Completed 200 OK in 18ms (Views: 12.0ms | ActiveRecord: 0.7ms)  (0.2ms) select sqlite_version(*)  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) PRAGMA index_list("schema_migrations")  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateUsers (20110927222742)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "settings" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110927222742')  (1.0ms) commit transaction  (0.3ms) select sqlite_version(*)  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) PRAGMA index_list("users")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.2ms) select sqlite_version(*)  (1.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "settings" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20110927222742')