(1.7ms)  CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "email" varchar(255), "title" varchar(255), "dob" datetime, "is_manager" boolean, "created_at" datetime, "updated_at" datetime) 
   (1.3ms)  CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
   (0.1ms)  select sqlite_version(*)
   (1.3ms)  CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
   (0.1ms)  SELECT version FROM "schema_migrations"
   (1.2ms)  INSERT INTO "schema_migrations" (version) VALUES ('20140711034542')
  ActiveRecord::SchemaMigration Load (0.1ms)  SELECT "schema_migrations".* FROM "schema_migrations"
   (1.6ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.1ms)  DELETE FROM sqlite_sequence where name = 'people';
Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#new as HTML
  Rendered people/_form.html.haml (46.6ms)
  Rendered people/new.html.haml within layouts/application (55.4ms)
  Rendered application/_flash_messages.html.haml (10.3ms)
Completed 200 OK in 391ms (Views: 385.9ms | ActiveRecord: 0.5ms)
Started POST "/people" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#create as HTML
  Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"01", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}
   (0.1ms)  begin transaction
   (0.1ms)  rollback transaction
  Rendered application/_validation_errors.html.haml (2.5ms)
  Rendered people/_form.html.haml (9.9ms)
  Rendered people/new.html.haml within layouts/application (10.2ms)
  Rendered application/_flash_messages.html.haml (0.1ms)
Completed 200 OK in 21ms (Views: 12.1ms | ActiveRecord: 0.2ms)
   (1.6ms)  DELETE FROM "people";
   (0.2ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.1ms)  DELETE FROM sqlite_sequence where name = 'people';
Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#new as HTML
  Rendered people/_form.html.haml (9.0ms)
  Rendered people/new.html.haml within layouts/application (9.2ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
Started POST "/people" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#create as HTML
  Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"01", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload"}
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:45.754375"], ["dob", "2014-07-30 01:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 01:54:45.754375"]]
   (0.9ms)  commit transaction
Redirected to http://www.example.com/people/new
Completed 302 Found in 8ms (ActiveRecord: 1.4ms)
Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#new as HTML
  Rendered people/_form.html.haml (8.4ms)
  Rendered people/new.html.haml within layouts/application (8.7ms)
  Rendered application/_flash_messages.html.haml (0.4ms)
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
   (1.1ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.9ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:45.786236"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_1@domain.com"], ["first_name", "John_1"], ["is_manager", "f"], ["last_name", "Doe_1"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:45.786236"]]
   (0.9ms)  commit transaction
Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#edit as HTML
  Parameters: {"id"=>"1"}
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE "people"."id" = ? LIMIT 1  [["id", 1]]
  Rendered people/_form.html.haml (10.9ms)
  Rendered people/edit.html.haml within layouts/application (12.0ms)
  Rendered application/_flash_messages.html.haml (0.3ms)
Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.2ms)
Started PATCH "/people/1" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#update as HTML
  Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"Doe_1", "email"=>"johndoe_1@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"1984", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"01", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_reload"=>"Save & Reload", "id"=>"1"}
  Person Load (0.1ms)  SELECT  "people".* FROM "people"  WHERE "people"."id" = ? LIMIT 1  [["id", 1]]
   (0.1ms)  begin transaction
  SQL (0.4ms)  UPDATE "people" SET "dob" = ?, "first_name" = ?, "updated_at" = ? WHERE "people"."id" = 1  [["dob", "1984-07-30 01:54:00.000000"], ["first_name", "John"], ["updated_at", "2014-07-30 01:54:45.823439"]]
   (0.9ms)  commit transaction
Redirected to http://www.example.com/people/1/edit
Completed 302 Found in 6ms (ActiveRecord: 1.5ms)
Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#edit as HTML
  Parameters: {"id"=>"1"}
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE "people"."id" = ? LIMIT 1  [["id", 1]]
  Rendered people/_form.html.haml (8.7ms)
  Rendered people/edit.html.haml within layouts/application (9.0ms)
  Rendered application/_flash_messages.html.haml (0.4ms)
Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.2ms)
   (1.1ms)  DELETE FROM "people";
   (0.3ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (3.2ms)  DELETE FROM sqlite_sequence where name = 'people';
Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#new as HTML
  Rendered people/_form.html.haml (14.0ms)
  Rendered people/new.html.haml within layouts/application (14.4ms)
  Rendered application/_flash_messages.html.haml (0.3ms)
Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms)
Started POST "/people" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#create as HTML
  Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"John", "last_name"=>"", "email"=>"", "title"=>"", "dob(1i)"=>"2014", "dob(2i)"=>"7", "dob(3i)"=>"30", "dob(4i)"=>"01", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:45.904309"], ["dob", "2014-07-30 01:54:00.000000"], ["email", ""], ["first_name", "John"], ["is_manager", "f"], ["last_name", ""], ["title", ""], ["updated_at", "2014-07-30 01:54:45.904309"]]
   (1.1ms)  commit transaction
Redirected to http://www.example.com/people
Completed 302 Found in 5ms (ActiveRecord: 1.6ms)
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (2.4ms)
  Rendered application/_search_form.html.haml (2.3ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (5.6ms)
  Rendered people/index.html.haml within layouts/application (22.1ms)
  Rendered application/_flash_messages.html.haml (0.6ms)
Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.6ms)
   (1.6ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.0ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:45.947211"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_2@domain.com"], ["first_name", "John_2"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:45.947211"]]
   (0.8ms)  commit transaction
Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#edit as HTML
  Parameters: {"id"=>"1"}
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE "people"."id" = ? LIMIT 1  [["id", 1]]
  Rendered people/_form.html.haml (8.0ms)
  Rendered people/edit.html.haml within layouts/application (8.3ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.2ms)
   (1.2ms)  DELETE FROM "people";
   (0.2ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.8ms)  DELETE FROM sqlite_sequence where name = 'people';
Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#new as HTML
  Rendered people/_form.html.haml (6.1ms)
  Rendered people/new.html.haml within layouts/application (6.4ms)
  Rendered application/_flash_messages.html.haml (0.3ms)
Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
   (0.9ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.1ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:45.989980"], ["dob", "2012-07-30 01:54:45.989033"], ["email", "johndoe_3@domain.com"], ["first_name", "John_3"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:45.989980"]]
   (0.8ms)  commit transaction
Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 21:54:45 -0400
Processing by PeopleController#edit as HTML
  Parameters: {"id"=>"1"}
  Person Load (0.1ms)  SELECT  "people".* FROM "people"  WHERE "people"."id" = ? LIMIT 1  [["id", 1]]
  Rendered people/_form.html.haml (6.5ms)
  Rendered people/edit.html.haml within layouts/application (6.8ms)
  Rendered application/_flash_messages.html.haml (0.3ms)
Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms)
Started PATCH "/people/1" for 127.0.0.1 at 2014-07-29 21:54:46 -0400
Processing by PeopleController#update as HTML
  Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Jerry", "last_name"=>"James", "email"=>"jjames@domain.com", "title"=>"Manager", "dob(1i)"=>"2013", "dob(2i)"=>"7", "dob(3i)"=>"29", "dob(4i)"=>"21", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List", "id"=>"1"}
  Person Load (0.1ms)  SELECT  "people".* FROM "people"  WHERE "people"."id" = ? LIMIT 1  [["id", 1]]
   (0.1ms)  begin transaction
  SQL (0.4ms)  UPDATE "people" SET "dob" = ?, "email" = ?, "first_name" = ?, "last_name" = ?, "title" = ?, "updated_at" = ? WHERE "people"."id" = 1  [["dob", "2013-07-29 21:54:00.000000"], ["email", "jjames@domain.com"], ["first_name", "Jerry"], ["last_name", "James"], ["title", "Manager"], ["updated_at", "2014-07-30 01:54:46.037086"]]
   (0.9ms)  commit transaction
Redirected to http://www.example.com/people
Completed 302 Found in 5ms (ActiveRecord: 1.5ms)
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:46 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.5ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (1.6ms)
  Rendered people/index.html.haml within layouts/application (4.2ms)
  Rendered application/_flash_messages.html.haml (0.4ms)
Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms)
   (1.8ms)  DELETE FROM "people";
   (0.2ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.1ms)  DELETE FROM sqlite_sequence where name = 'people';
  ActiveRecord::SchemaMigration Load (0.1ms)  SELECT "schema_migrations".* FROM "schema_migrations"
   (0.1ms)  begin transaction
----------------------------------------------------------------------------------------------------
ExtControllerScaffoldingGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions
----------------------------------------------------------------------------------------------------
   (0.1ms)  rollback transaction
   (0.1ms)  begin transaction
----------------------------------------------------------------------
ExtControllerScaffoldingGeneratorTest: test_Routes_were_added_properly
----------------------------------------------------------------------
   (0.1ms)  rollback transaction
   (0.1ms)  begin transaction
------------------------------------------------------------------------------
ControllerScaffoldingGeneratorTest: test_Assert_all_files_are_properly_created
------------------------------------------------------------------------------
   (0.1ms)  rollback transaction
   (0.1ms)  begin transaction
------------------------------------------------------------------------------------------
ControllerScaffoldingGeneratorTest: test_Assert_lines_have_been_inserted_into_proper_files
------------------------------------------------------------------------------------------
   (0.1ms)  rollback transaction
   (0.1ms)  begin transaction
---------------------------------------------------------------------------------------
SomeActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions
---------------------------------------------------------------------------------------
   (0.1ms)  rollback transaction
   (1.9ms)  begin transaction
--------------------------------------------------------------------------------------
AllActionsGeneratorTest: test_Controller_was_created_properly_with_appropriate_actions
--------------------------------------------------------------------------------------
   (0.1ms)  rollback transaction
   (0.1ms)  begin transaction
-------------------------------------
ControllerScaffoldingTest: test_truth
-------------------------------------
   (0.1ms)  rollback transaction
Started GET "/people/new" for 127.0.0.1 at 2014-07-29 21:54:49 -0400
Processing by PeopleController#new as HTML
  Rendered people/_form.html.haml (20.3ms)
  Rendered people/new.html.haml within layouts/application (20.9ms)
  Rendered application/_flash_messages.html.haml (0.5ms)
Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms)
Started GET "/assets/application.js" for 127.0.0.1 at 2014-07-29 21:54:49 -0400
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:49 -0400
Started POST "/people" for 127.0.0.1 at 2014-07-29 21:54:50 -0400
Processing by PeopleController#create as HTML
  Parameters: {"utf8"=>"✓", "person"=>{"first_name"=>"Johnathan", "last_name"=>"Jones", "email"=>"jj@domain.com", "title"=>"Sales Rep", "dob(1i)"=>"2012", "dob(2i)"=>"7", "dob(3i)"=>"29", "dob(4i)"=>"21", "dob(5i)"=>"54", "is_manager"=>"0"}, "btn_index"=>"Save & Back to List"}
   (0.3ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:50.602041"], ["dob", "2012-07-29 21:54:00.000000"], ["email", "jj@domain.com"], ["first_name", "Johnathan"], ["is_manager", "f"], ["last_name", "Jones"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:50.602041"]]
   (1.0ms)  commit transaction
Redirected to http://127.0.0.1:50121/people
Completed 302 Found in 6ms (ActiveRecord: 1.7ms)
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:50 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.5ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.4ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Person Load (0.1ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (1.6ms)
  Rendered people/index.html.haml within layouts/application (4.8ms)
  Rendered application/_flash_messages.html.haml (0.4ms)
Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.5ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:50 -0400
   (0.9ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.8ms)  DELETE FROM sqlite_sequence where name = 'people';
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:51 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.6ms)
  Rendered application/_search_form.html.haml (0.4ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Rendered application/_pagination.html.haml (1.6ms)
  Rendered people/index.html.haml within layouts/application (4.9ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.3ms)
   (1.1ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.1ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:51.480442"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_4@domain.com"], ["first_name", "John_4"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:51.480442"]]
   (0.9ms)  commit transaction
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:51 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.9ms)
  Rendered application/_search_form.html.haml (0.4ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (1.7ms)
  Rendered people/index.html.haml within layouts/application (5.9ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.5ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:51 -0400
   (0.2ms)  SELECT COUNT(*) FROM "people"
Started DELETE "/people/1" for 127.0.0.1 at 2014-07-29 21:54:52 -0400
Processing by PeopleController#destroy as HTML
  Parameters: {"id"=>"1"}
  Person Load (0.1ms)  SELECT  "people".* FROM "people"  WHERE "people"."id" = ? LIMIT 1  [["id", 1]]
   (0.1ms)  begin transaction
  SQL (0.5ms)  DELETE FROM "people" WHERE "people"."id" = ?  [["id", 1]]
   (0.9ms)  commit transaction
Redirected to http://127.0.0.1:50121/people
Completed 302 Found in 4ms (ActiveRecord: 1.6ms)
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:52 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.6ms)
  Rendered application/_search_form.html.haml (0.3ms)
  Person Load (0.4ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Rendered application/_pagination.html.haml (1.2ms)
  Rendered people/index.html.haml within layouts/application (4.2ms)
  Rendered application/_flash_messages.html.haml (0.5ms)
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:52 -0400
   (0.3ms)  SELECT COUNT(*) FROM "people"
   (1.2ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.0ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:53.585124"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_5@domain.com"], ["first_name", "John_5"], ["is_manager", "f"], ["last_name", "Doe_5"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:53.585124"]]
   (1.1ms)  commit transaction
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:53 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.5ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Person Load (0.1ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (1.4ms)
  Rendered people/index.html.haml within layouts/application (4.1ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.4ms)
Started GET "/people/1/edit" for 127.0.0.1 at 2014-07-29 21:54:53 -0400
Processing by PeopleController#edit as HTML
  Parameters: {"id"=>"1"}
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE "people"."id" = ? LIMIT 1  [["id", 1]]
  Rendered people/_form.html.haml (6.2ms)
  Rendered people/edit.html.haml within layouts/application (6.5ms)
  Rendered application/_flash_messages.html.haml (0.4ms)
Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.2ms)
   (1.7ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.0ms)  DELETE FROM sqlite_sequence where name = 'people';
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:53 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.5ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Rendered application/_pagination.html.haml (1.0ms)
  Rendered people/index.html.haml within layouts/application (3.1ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
   (1.8ms)  DELETE FROM "people";
   (0.2ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.1ms)  DELETE FROM sqlite_sequence where name = 'people';
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:53 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (1.0ms)
  Rendered application/_search_form.html.haml (0.3ms)
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Rendered application/_pagination.html.haml (1.0ms)
  Rendered people/index.html.haml within layouts/application (4.1ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:53 -0400
Started GET "/people?search_for=" for 127.0.0.1 at 2014-07-29 21:54:53 -0400
Processing by PeopleController#index as HTML
  Parameters: {"search_for"=>""}
  Rendered application/_sort_form.html.haml (1.0ms)
  Rendered application/_search_form.html.haml (0.3ms)
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Rendered application/_pagination.html.haml (1.0ms)
  Rendered people/index.html.haml within layouts/application (4.2ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:53 -0400
   (1.4ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.1ms)  DELETE FROM sqlite_sequence where name = 'people';
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:54 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.5ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Rendered application/_pagination.html.haml (1.0ms)
  Rendered people/index.html.haml within layouts/application (3.5ms)
  Rendered application/_flash_messages.html.haml (0.4ms)
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms)
   (1.2ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.1ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.028165"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_6@domain.com"], ["first_name", "Fred"], ["is_manager", "f"], ["last_name", "Bradley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.028165"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.031059"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_7@domain.com"], ["first_name", "Brad"], ["is_manager", "f"], ["last_name", "Johnson"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.031059"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.033598"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_8@domain.com"], ["first_name", "John"], ["is_manager", "f"], ["last_name", "Williams"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.033598"]]
   (0.8ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.036028"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_9@domain.com"], ["first_name", "Will"], ["is_manager", "f"], ["last_name", "Farley"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.036028"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.038585"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "jo@brads.net"], ["first_name", "Joseph"], ["is_manager", "f"], ["last_name", "Doe_6"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.038585"]]
   (1.0ms)  commit transaction
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:54 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.5ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (1.4ms)
  Rendered people/index.html.haml within layouts/application (5.3ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.4ms)
Started GET "/people?search_for=wIlL" for 127.0.0.1 at 2014-07-29 21:54:54 -0400
Processing by PeopleController#index as HTML
  Parameters: {"search_for"=>"wIlL"}
  Rendered application/_sort_form.html.haml (0.6ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 15 OFFSET 0
  Person Load (0.1ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%wIlL%' or last_name like '%wIlL%' or email like '%wIlL%' or title like '%wIlL%' or dob like '%wIlL%' or is_manager like '%wIlL%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (1.4ms)
  Rendered people/index.html.haml within layouts/application (4.2ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms)
   (1.4ms)  DELETE FROM "people";
   (0.2ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.4ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.071676"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_92@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.071676"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.074951"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_34@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.074951"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.077781"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_51@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.077781"]]
   (1.1ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.081004"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_76@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.081004"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.083716"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.083716"]]
   (1.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.087701"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_21@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.087701"]]
   (0.8ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.090110"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_47@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.090110"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.092530"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_69@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.092530"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.094890"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.094890"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.097381"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.097381"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.099863"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_55@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.099863"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.102485"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_30@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.102485"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.105148"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.105148"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.107719"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_45@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.107719"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.110202"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_95@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.110202"]]
   (1.3ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.113071"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.113071"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.115530"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.115530"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.118251"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_83@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.118251"]]
   (1.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.122166"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_3"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.122166"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.124789"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_89@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.124789"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.127296"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_49@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.127296"]]
   (1.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.131524"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.131524"]]
   (1.6ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.135419"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_4@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.135419"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.138395"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_53@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.138395"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.140967"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_85@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.140967"]]
   (1.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.5ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.144604"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_12@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.144604"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.148054"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.148054"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.150892"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_66@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.150892"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.153654"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_22@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.153654"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.156579"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_79@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.156579"]]
   (1.1ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.159481"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_68@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.159481"]]
   (1.7ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.163049"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_70@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.163049"]]
   (1.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.166647"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.166647"]]
   (1.1ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.169839"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_29@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.169839"]]
   (1.2ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.172971"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_2"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.172971"]]
   (1.3ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.175997"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_32@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.175997"]]
   (2.3ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.180168"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.180168"]]
   (1.2ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.183053"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_9@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.183053"]]
   (1.2ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.185943"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_71@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_4"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.185943"]]
   (1.3ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.188842"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_18@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.188842"]]
   (2.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.192668"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.192668"]]
   (1.3ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.195725"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_19@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.195725"]]
   (1.2ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.198551"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_61@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.198551"]]
   (1.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.202414"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_28@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.202414"]]
   (1.2ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.205532"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_36@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.205532"]]
   (1.2ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.208471"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_72@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.208471"]]
   (1.2ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.211273"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_48@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.211273"]]
   (1.2ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.214213"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_14@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.214213"]]
   (1.5ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.217687"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_46@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.217687"]]
   (1.2ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:54.220674"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoesemail_57@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:54.220674"]]
   (1.2ms)  commit transaction
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:54 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.6ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
   (0.3ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (3.3ms)
  Rendered people/index.html.haml within layouts/application (14.2ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.9ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:54 -0400
Started GET "/people?sort_by=last_name+desc" for 127.0.0.1 at 2014-07-29 21:54:54 -0400
Processing by PeopleController#index as HTML
  Parameters: {"sort_by"=>"last_name desc"}
  Rendered application/_sort_form.html.haml (0.5ms)
  Rendered application/_search_form.html.haml (0.3ms)
  Person Load (0.4ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')  ORDER BY "people"."last_name" DESC LIMIT 15 OFFSET 0
   (0.1ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')  ORDER BY "people"."last_name" DESC LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (12.0ms)
  Rendered people/index.html.haml within layouts/application (19.9ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.9ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:54 -0400
   (3.2ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.1ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.510146"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_10@domain.com"], ["first_name", "John_6"], ["is_manager", "f"], ["last_name", "Doe_7"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.510146"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.513174"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_11@domain.com"], ["first_name", "John_7"], ["is_manager", "f"], ["last_name", "Doe_8"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.513174"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.515965"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_12@domain.com"], ["first_name", "John_8"], ["is_manager", "f"], ["last_name", "Doe_9"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.515965"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.518549"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_13@domain.com"], ["first_name", "John_9"], ["is_manager", "f"], ["last_name", "Doe_10"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.518549"]]
   (0.7ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.520880"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_14@domain.com"], ["first_name", "John_10"], ["is_manager", "f"], ["last_name", "Doe_11"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.520880"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.523538"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_15@domain.com"], ["first_name", "John_11"], ["is_manager", "f"], ["last_name", "Doe_12"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.523538"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.526485"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_16@domain.com"], ["first_name", "John_12"], ["is_manager", "f"], ["last_name", "Doe_13"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.526485"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.529473"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_17@domain.com"], ["first_name", "John_13"], ["is_manager", "f"], ["last_name", "Doe_14"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.529473"]]
   (1.5ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.533073"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_18@domain.com"], ["first_name", "John_14"], ["is_manager", "f"], ["last_name", "Doe_15"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.533073"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.535650"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_19@domain.com"], ["first_name", "John_15"], ["is_manager", "f"], ["last_name", "Doe_16"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.535650"]]
   (0.7ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.538157"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_20@domain.com"], ["first_name", "John_16"], ["is_manager", "f"], ["last_name", "Doe_17"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.538157"]]
   (0.7ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.540532"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_21@domain.com"], ["first_name", "John_17"], ["is_manager", "f"], ["last_name", "Doe_18"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.540532"]]
   (0.7ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.543004"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_22@domain.com"], ["first_name", "John_18"], ["is_manager", "f"], ["last_name", "Doe_19"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.543004"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.545865"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_23@domain.com"], ["first_name", "John_19"], ["is_manager", "f"], ["last_name", "Doe_20"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.545865"]]
   (0.7ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.548659"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_24@domain.com"], ["first_name", "John_20"], ["is_manager", "f"], ["last_name", "Doe_21"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.548659"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.551331"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_25@domain.com"], ["first_name", "John_21"], ["is_manager", "f"], ["last_name", "Doe_22"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.551331"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.5ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.554301"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_26@domain.com"], ["first_name", "John_22"], ["is_manager", "f"], ["last_name", "Doe_23"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.554301"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.557557"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_27@domain.com"], ["first_name", "John_23"], ["is_manager", "f"], ["last_name", "Doe_24"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.557557"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.560656"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_28@domain.com"], ["first_name", "John_24"], ["is_manager", "f"], ["last_name", "Doe_25"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.560656"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.563242"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_29@domain.com"], ["first_name", "John_25"], ["is_manager", "f"], ["last_name", "Doe_26"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.563242"]]
   (1.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.567143"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_30@domain.com"], ["first_name", "John_26"], ["is_manager", "f"], ["last_name", "Doe_27"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.567143"]]
   (1.3ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.570233"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_31@domain.com"], ["first_name", "John_27"], ["is_manager", "f"], ["last_name", "Doe_28"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.570233"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.572767"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_32@domain.com"], ["first_name", "John_28"], ["is_manager", "f"], ["last_name", "Doe_29"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.572767"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.575203"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_33@domain.com"], ["first_name", "John_29"], ["is_manager", "f"], ["last_name", "Doe_30"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.575203"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.577676"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_34@domain.com"], ["first_name", "John_30"], ["is_manager", "f"], ["last_name", "Doe_31"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.577676"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.580165"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_35@domain.com"], ["first_name", "John_31"], ["is_manager", "f"], ["last_name", "Doe_32"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.580165"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.582674"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_36@domain.com"], ["first_name", "John_32"], ["is_manager", "f"], ["last_name", "Doe_33"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.582674"]]
   (0.8ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.584951"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_37@domain.com"], ["first_name", "John_33"], ["is_manager", "f"], ["last_name", "Doe_34"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.584951"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.587385"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_38@domain.com"], ["first_name", "John_34"], ["is_manager", "f"], ["last_name", "Doe_35"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.587385"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.589844"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_39@domain.com"], ["first_name", "John_35"], ["is_manager", "f"], ["last_name", "Doe_36"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.589844"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:55.592514"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_40@domain.com"], ["first_name", "John_36"], ["is_manager", "f"], ["last_name", "Doe_37"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:55.592514"]]
   (1.2ms)  commit transaction
Started GET "/people?page=1&per_page=10" for 127.0.0.1 at 2014-07-29 21:54:55 -0400
Processing by PeopleController#index as HTML
  Parameters: {"page"=>"1", "per_page"=>"10"}
  Rendered application/_sort_form.html.haml (0.7ms)
  Rendered application/_search_form.html.haml (0.3ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0
   (0.1ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (3.9ms)
  Rendered people/index.html.haml within layouts/application (11.4ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.7ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:55 -0400
Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 21:54:56 -0400
Processing by PeopleController#index as HTML
  Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""}
  Rendered application/_sort_form.html.haml (1.0ms)
  Rendered application/_search_form.html.haml (0.5ms)
  Person Load (0.5ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10
   (0.3ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10
  Rendered application/_pagination.html.haml (3.3ms)
  Rendered people/index.html.haml within layouts/application (12.5ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 1.0ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:56 -0400
Started GET "/people?page=1&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 21:54:56 -0400
Processing by PeopleController#index as HTML
  Parameters: {"page"=>"1", "per_page"=>"10", "sort_by"=>""}
  Rendered application/_sort_form.html.haml (0.7ms)
  Rendered application/_search_form.html.haml (0.4ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0
   (0.1ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (4.2ms)
  Rendered people/index.html.haml within layouts/application (12.9ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.7ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:56 -0400
  Person Load (0.1ms)  SELECT  "people".* FROM "people"  WHERE "people"."id" = ? LIMIT 1  [["id", 1]]
Started GET "/people?page=2&per_page=10&sort_by=" for 127.0.0.1 at 2014-07-29 21:54:57 -0400
Processing by PeopleController#index as HTML
  Parameters: {"page"=>"2", "per_page"=>"10", "sort_by"=>""}
  Rendered application/_sort_form.html.haml (0.9ms)
  Rendered application/_search_form.html.haml (0.7ms)
  Person Load (0.4ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 10
   (0.2ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 10
  Rendered application/_pagination.html.haml (3.3ms)
  Rendered people/index.html.haml within layouts/application (11.5ms)
  Rendered application/_flash_messages.html.haml (0.3ms)
Completed 200 OK in 14ms (Views: 12.4ms | ActiveRecord: 0.8ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:57 -0400
  Person Load (0.1ms)  SELECT  "people".* FROM "people"  WHERE "people"."id" = ? LIMIT 1  [["id", 11]]
   (3.0ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.0ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.262838"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_41@domain.com"], ["first_name", "John_37"], ["is_manager", "f"], ["last_name", "Doe_38"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.262838"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.265494"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_42@domain.com"], ["first_name", "John_38"], ["is_manager", "f"], ["last_name", "Doe_39"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.265494"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.268197"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_43@domain.com"], ["first_name", "John_39"], ["is_manager", "f"], ["last_name", "Doe_40"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.268197"]]
   (1.3ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.271519"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_44@domain.com"], ["first_name", "John_40"], ["is_manager", "f"], ["last_name", "Doe_41"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.271519"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.274463"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_45@domain.com"], ["first_name", "John_41"], ["is_manager", "f"], ["last_name", "Doe_42"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.274463"]]
   (0.7ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.276917"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_46@domain.com"], ["first_name", "John_42"], ["is_manager", "f"], ["last_name", "Doe_43"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.276917"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.280021"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_47@domain.com"], ["first_name", "John_43"], ["is_manager", "f"], ["last_name", "Doe_44"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.280021"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.282509"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_48@domain.com"], ["first_name", "John_44"], ["is_manager", "f"], ["last_name", "Doe_45"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.282509"]]
   (1.1ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.285810"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_49@domain.com"], ["first_name", "John_45"], ["is_manager", "f"], ["last_name", "Doe_46"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.285810"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.288954"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_50@domain.com"], ["first_name", "John_46"], ["is_manager", "f"], ["last_name", "Doe_47"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.288954"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.291784"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_51@domain.com"], ["first_name", "John_47"], ["is_manager", "f"], ["last_name", "Doe_48"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.291784"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.294679"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_52@domain.com"], ["first_name", "John_48"], ["is_manager", "f"], ["last_name", "Doe_49"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.294679"]]
   (1.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.298376"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_53@domain.com"], ["first_name", "John_49"], ["is_manager", "f"], ["last_name", "Doe_50"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.298376"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.301464"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_54@domain.com"], ["first_name", "John_50"], ["is_manager", "f"], ["last_name", "Doe_51"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.301464"]]
   (1.1ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.304768"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_55@domain.com"], ["first_name", "John_51"], ["is_manager", "f"], ["last_name", "Doe_52"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.304768"]]
   (1.1ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.307752"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_56@domain.com"], ["first_name", "John_52"], ["is_manager", "f"], ["last_name", "Doe_53"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.307752"]]
   (1.4ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.311237"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_57@domain.com"], ["first_name", "John_53"], ["is_manager", "f"], ["last_name", "Doe_54"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.311237"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.313887"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_58@domain.com"], ["first_name", "John_54"], ["is_manager", "f"], ["last_name", "Doe_55"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.313887"]]
   (1.2ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.316847"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_59@domain.com"], ["first_name", "John_55"], ["is_manager", "f"], ["last_name", "Doe_56"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.316847"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.319799"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_60@domain.com"], ["first_name", "John_56"], ["is_manager", "f"], ["last_name", "Doe_57"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.319799"]]
   (1.3ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.323225"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_61@domain.com"], ["first_name", "John_57"], ["is_manager", "f"], ["last_name", "Doe_58"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.323225"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.326201"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_62@domain.com"], ["first_name", "John_58"], ["is_manager", "f"], ["last_name", "Doe_59"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.326201"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.329055"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_63@domain.com"], ["first_name", "John_59"], ["is_manager", "f"], ["last_name", "Doe_60"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.329055"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.331626"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_64@domain.com"], ["first_name", "John_60"], ["is_manager", "f"], ["last_name", "Doe_61"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.331626"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.334825"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_65@domain.com"], ["first_name", "John_61"], ["is_manager", "f"], ["last_name", "Doe_62"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.334825"]]
   (1.2ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.338514"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_66@domain.com"], ["first_name", "John_62"], ["is_manager", "f"], ["last_name", "Doe_63"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.338514"]]
   (1.5ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.342067"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_67@domain.com"], ["first_name", "John_63"], ["is_manager", "f"], ["last_name", "Doe_64"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.342067"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.344711"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_68@domain.com"], ["first_name", "John_64"], ["is_manager", "f"], ["last_name", "Doe_65"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.344711"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.347373"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_69@domain.com"], ["first_name", "John_65"], ["is_manager", "f"], ["last_name", "Doe_66"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.347373"]]
   (1.1ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.350088"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_70@domain.com"], ["first_name", "John_66"], ["is_manager", "f"], ["last_name", "Doe_67"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.350088"]]
   (1.1ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:58.353268"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_71@domain.com"], ["first_name", "John_67"], ["is_manager", "f"], ["last_name", "Doe_68"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:58.353268"]]
   (1.4ms)  commit transaction
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:58 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.6ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.5ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
   (0.2ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (3.7ms)
  Rendered people/index.html.haml within layouts/application (15.1ms)
  Rendered application/_flash_messages.html.haml (0.3ms)
Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.9ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:58 -0400
Started GET "/people?per_page=20&page=1" for 127.0.0.1 at 2014-07-29 21:54:58 -0400
Processing by PeopleController#index as HTML
  Parameters: {"per_page"=>"20", "page"=>"1"}
  Rendered application/_sort_form.html.haml (0.7ms)
  Rendered application/_search_form.html.haml (0.4ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 20 OFFSET 0
   (0.2ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (2.9ms)
  Rendered people/index.html.haml within layouts/application (16.5ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.7ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:58 -0400
   (3.9ms)  DELETE FROM "people";
   (0.2ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.3ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.073066"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_72@domain.com"], ["first_name", "John_68"], ["is_manager", "f"], ["last_name", "Doe_69"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.073066"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.075874"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_73@domain.com"], ["first_name", "John_69"], ["is_manager", "f"], ["last_name", "Doe_70"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.075874"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.078422"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_74@domain.com"], ["first_name", "John_70"], ["is_manager", "f"], ["last_name", "Doe_71"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.078422"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.080820"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_75@domain.com"], ["first_name", "John_71"], ["is_manager", "f"], ["last_name", "Doe_72"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.080820"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.083438"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_76@domain.com"], ["first_name", "John_72"], ["is_manager", "f"], ["last_name", "Doe_73"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.083438"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.085914"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_77@domain.com"], ["first_name", "John_73"], ["is_manager", "f"], ["last_name", "Doe_74"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.085914"]]
   (0.8ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.088251"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_78@domain.com"], ["first_name", "John_74"], ["is_manager", "f"], ["last_name", "Doe_75"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.088251"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.090654"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_79@domain.com"], ["first_name", "John_75"], ["is_manager", "f"], ["last_name", "Doe_76"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.090654"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.093061"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_80@domain.com"], ["first_name", "John_76"], ["is_manager", "f"], ["last_name", "Doe_77"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.093061"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.095627"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_81@domain.com"], ["first_name", "John_77"], ["is_manager", "f"], ["last_name", "Doe_78"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.095627"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.098139"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_82@domain.com"], ["first_name", "John_78"], ["is_manager", "f"], ["last_name", "Doe_79"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.098139"]]
   (0.7ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.100672"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_83@domain.com"], ["first_name", "John_79"], ["is_manager", "f"], ["last_name", "Doe_80"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.100672"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.103402"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_84@domain.com"], ["first_name", "John_80"], ["is_manager", "f"], ["last_name", "Doe_81"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.103402"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.106067"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_85@domain.com"], ["first_name", "John_81"], ["is_manager", "f"], ["last_name", "Doe_82"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.106067"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.108485"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_86@domain.com"], ["first_name", "John_82"], ["is_manager", "f"], ["last_name", "Doe_83"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.108485"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.110856"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_87@domain.com"], ["first_name", "John_83"], ["is_manager", "f"], ["last_name", "Doe_84"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.110856"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.113200"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_88@domain.com"], ["first_name", "John_84"], ["is_manager", "f"], ["last_name", "Doe_85"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.113200"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.115569"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_89@domain.com"], ["first_name", "John_85"], ["is_manager", "f"], ["last_name", "Doe_86"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.115569"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.118052"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_90@domain.com"], ["first_name", "John_86"], ["is_manager", "f"], ["last_name", "Doe_87"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.118052"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.120431"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_91@domain.com"], ["first_name", "John_87"], ["is_manager", "f"], ["last_name", "Doe_88"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.120431"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.122853"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_92@domain.com"], ["first_name", "John_88"], ["is_manager", "f"], ["last_name", "Doe_89"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.122853"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.125183"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_93@domain.com"], ["first_name", "John_89"], ["is_manager", "f"], ["last_name", "Doe_90"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.125183"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.127484"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_94@domain.com"], ["first_name", "John_90"], ["is_manager", "f"], ["last_name", "Doe_91"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.127484"]]
   (1.5ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.130414"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_95@domain.com"], ["first_name", "John_91"], ["is_manager", "f"], ["last_name", "Doe_92"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.130414"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.132845"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_96@domain.com"], ["first_name", "John_92"], ["is_manager", "f"], ["last_name", "Doe_93"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.132845"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.135247"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_97@domain.com"], ["first_name", "John_93"], ["is_manager", "f"], ["last_name", "Doe_94"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.135247"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.137588"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_98@domain.com"], ["first_name", "John_94"], ["is_manager", "f"], ["last_name", "Doe_95"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.137588"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.140260"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_99@domain.com"], ["first_name", "John_95"], ["is_manager", "f"], ["last_name", "Doe_96"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.140260"]]
   (1.4ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.143238"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_100@domain.com"], ["first_name", "John_96"], ["is_manager", "f"], ["last_name", "Doe_97"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.143238"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.145526"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_101@domain.com"], ["first_name", "John_97"], ["is_manager", "f"], ["last_name", "Doe_98"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.145526"]]
   (1.1ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.147984"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_102@domain.com"], ["first_name", "John_98"], ["is_manager", "f"], ["last_name", "Doe_99"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.147984"]]
   (1.1ms)  commit transaction
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:54:59 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.6ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
   (0.1ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (2.5ms)
  Rendered people/index.html.haml within layouts/application (10.5ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.6ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:59 -0400
Started GET "/people?per_page=All&page=1" for 127.0.0.1 at 2014-07-29 21:54:59 -0400
Processing by PeopleController#index as HTML
  Parameters: {"per_page"=>"All", "page"=>"1"}
   (0.2ms)  SELECT COUNT(*) FROM "people"
  Rendered application/_sort_form.html.haml (0.7ms)
  Rendered application/_search_form.html.haml (0.5ms)
  Person Load (0.4ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 31 OFFSET 0
   (0.3ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (1.6ms)
  Rendered people/index.html.haml within layouts/application (17.2ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 1.0ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:54:59 -0400
   (1.2ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.4ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.941517"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_103@domain.com"], ["first_name", "John_99"], ["is_manager", "f"], ["last_name", "Doe_100"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.941517"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.944571"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_104@domain.com"], ["first_name", "John_100"], ["is_manager", "f"], ["last_name", "Doe_101"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.944571"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.947182"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_105@domain.com"], ["first_name", "John_101"], ["is_manager", "f"], ["last_name", "Doe_102"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.947182"]]
   (0.7ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.949628"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_106@domain.com"], ["first_name", "John_102"], ["is_manager", "f"], ["last_name", "Doe_103"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.949628"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.952046"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_107@domain.com"], ["first_name", "John_103"], ["is_manager", "f"], ["last_name", "Doe_104"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.952046"]]
   (1.4ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.955198"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_108@domain.com"], ["first_name", "John_104"], ["is_manager", "f"], ["last_name", "Doe_105"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.955198"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.957902"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_109@domain.com"], ["first_name", "John_105"], ["is_manager", "f"], ["last_name", "Doe_106"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.957902"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.960509"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_110@domain.com"], ["first_name", "John_106"], ["is_manager", "f"], ["last_name", "Doe_107"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.960509"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.962728"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_111@domain.com"], ["first_name", "John_107"], ["is_manager", "f"], ["last_name", "Doe_108"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.962728"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.965042"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_112@domain.com"], ["first_name", "John_108"], ["is_manager", "f"], ["last_name", "Doe_109"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.965042"]]
   (0.8ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.967396"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_113@domain.com"], ["first_name", "John_109"], ["is_manager", "f"], ["last_name", "Doe_110"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.967396"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.969824"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_114@domain.com"], ["first_name", "John_110"], ["is_manager", "f"], ["last_name", "Doe_111"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.969824"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.972189"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_115@domain.com"], ["first_name", "John_111"], ["is_manager", "f"], ["last_name", "Doe_112"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.972189"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.974510"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_116@domain.com"], ["first_name", "John_112"], ["is_manager", "f"], ["last_name", "Doe_113"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.974510"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.976875"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_117@domain.com"], ["first_name", "John_113"], ["is_manager", "f"], ["last_name", "Doe_114"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.976875"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.979436"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_118@domain.com"], ["first_name", "John_114"], ["is_manager", "f"], ["last_name", "Doe_115"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.979436"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.981809"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_119@domain.com"], ["first_name", "John_115"], ["is_manager", "f"], ["last_name", "Doe_116"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.981809"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.984086"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_120@domain.com"], ["first_name", "John_116"], ["is_manager", "f"], ["last_name", "Doe_117"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.984086"]]
   (1.7ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.987450"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_121@domain.com"], ["first_name", "John_117"], ["is_manager", "f"], ["last_name", "Doe_118"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.987450"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.989962"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_122@domain.com"], ["first_name", "John_118"], ["is_manager", "f"], ["last_name", "Doe_119"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.989962"]]
   (0.8ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.992290"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_123@domain.com"], ["first_name", "John_119"], ["is_manager", "f"], ["last_name", "Doe_120"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.992290"]]
   (1.1ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.994977"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_124@domain.com"], ["first_name", "John_120"], ["is_manager", "f"], ["last_name", "Doe_121"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.994977"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:54:59.997463"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_125@domain.com"], ["first_name", "John_121"], ["is_manager", "f"], ["last_name", "Doe_122"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:54:59.997463"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.000379"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_126@domain.com"], ["first_name", "John_122"], ["is_manager", "f"], ["last_name", "Doe_123"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.000379"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.003883"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_127@domain.com"], ["first_name", "John_123"], ["is_manager", "f"], ["last_name", "Doe_124"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.003883"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.006476"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_128@domain.com"], ["first_name", "John_124"], ["is_manager", "f"], ["last_name", "Doe_125"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.006476"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.009041"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_129@domain.com"], ["first_name", "John_125"], ["is_manager", "f"], ["last_name", "Doe_126"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.009041"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.011770"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_130@domain.com"], ["first_name", "John_126"], ["is_manager", "f"], ["last_name", "Doe_127"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.011770"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.014300"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_131@domain.com"], ["first_name", "John_127"], ["is_manager", "f"], ["last_name", "Doe_128"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.014300"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.016681"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_132@domain.com"], ["first_name", "John_128"], ["is_manager", "f"], ["last_name", "Doe_129"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.016681"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.019546"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_133@domain.com"], ["first_name", "John_129"], ["is_manager", "f"], ["last_name", "Doe_130"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.019546"]]
   (1.0ms)  commit transaction
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:55:00 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.5ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
   (0.1ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (2.4ms)
  Rendered people/index.html.haml within layouts/application (10.2ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.6ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:55:00 -0400
Started GET "/people?per_page=10&page=1" for 127.0.0.1 at 2014-07-29 21:55:00 -0400
Processing by PeopleController#index as HTML
  Parameters: {"per_page"=>"10", "page"=>"1"}
  Rendered application/_sort_form.html.haml (0.6ms)
  Rendered application/_search_form.html.haml (0.3ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 10 OFFSET 0
   (0.2ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (2.9ms)
  Rendered people/index.html.haml within layouts/application (10.4ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.7ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:55:00 -0400
   (1.3ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.2ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.555798"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_134@domain.com"], ["first_name", "John_130"], ["is_manager", "f"], ["last_name", "Doe_131"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.555798"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.558632"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_135@domain.com"], ["first_name", "John_131"], ["is_manager", "f"], ["last_name", "Doe_132"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.558632"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.561581"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_136@domain.com"], ["first_name", "John_132"], ["is_manager", "f"], ["last_name", "Doe_133"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.561581"]]
   (0.8ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.564131"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_137@domain.com"], ["first_name", "John_133"], ["is_manager", "f"], ["last_name", "Doe_134"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.564131"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.566628"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_138@domain.com"], ["first_name", "John_134"], ["is_manager", "f"], ["last_name", "Doe_135"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.566628"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.568966"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_139@domain.com"], ["first_name", "John_135"], ["is_manager", "f"], ["last_name", "Doe_136"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.568966"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.571404"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_140@domain.com"], ["first_name", "John_136"], ["is_manager", "f"], ["last_name", "Doe_137"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.571404"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.573789"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_141@domain.com"], ["first_name", "John_137"], ["is_manager", "f"], ["last_name", "Doe_138"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.573789"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.576179"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_142@domain.com"], ["first_name", "John_138"], ["is_manager", "f"], ["last_name", "Doe_139"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.576179"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.578736"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_143@domain.com"], ["first_name", "John_139"], ["is_manager", "f"], ["last_name", "Doe_140"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.578736"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.581408"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_144@domain.com"], ["first_name", "John_140"], ["is_manager", "f"], ["last_name", "Doe_141"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.581408"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.583804"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_145@domain.com"], ["first_name", "John_141"], ["is_manager", "f"], ["last_name", "Doe_142"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.583804"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.586173"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_146@domain.com"], ["first_name", "John_142"], ["is_manager", "f"], ["last_name", "Doe_143"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.586173"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.588800"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_147@domain.com"], ["first_name", "John_143"], ["is_manager", "f"], ["last_name", "Doe_144"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.588800"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.5ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.591664"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_148@domain.com"], ["first_name", "John_144"], ["is_manager", "f"], ["last_name", "Doe_145"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.591664"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.594725"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_149@domain.com"], ["first_name", "John_145"], ["is_manager", "f"], ["last_name", "Doe_146"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.594725"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.597281"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_150@domain.com"], ["first_name", "John_146"], ["is_manager", "f"], ["last_name", "Doe_147"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.597281"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.599929"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_151@domain.com"], ["first_name", "John_147"], ["is_manager", "f"], ["last_name", "Doe_148"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.599929"]]
   (2.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.604083"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_152@domain.com"], ["first_name", "John_148"], ["is_manager", "f"], ["last_name", "Doe_149"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.604083"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.607128"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_153@domain.com"], ["first_name", "John_149"], ["is_manager", "f"], ["last_name", "Doe_150"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.607128"]]
   (1.5ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.610869"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_154@domain.com"], ["first_name", "John_150"], ["is_manager", "f"], ["last_name", "Doe_151"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.610869"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.614043"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_155@domain.com"], ["first_name", "John_151"], ["is_manager", "f"], ["last_name", "Doe_152"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.614043"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.617100"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_156@domain.com"], ["first_name", "John_152"], ["is_manager", "f"], ["last_name", "Doe_153"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.617100"]]
   (0.7ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.619813"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_157@domain.com"], ["first_name", "John_153"], ["is_manager", "f"], ["last_name", "Doe_154"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.619813"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.622851"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_158@domain.com"], ["first_name", "John_154"], ["is_manager", "f"], ["last_name", "Doe_155"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.622851"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.625711"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_159@domain.com"], ["first_name", "John_155"], ["is_manager", "f"], ["last_name", "Doe_156"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.625711"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.628539"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_160@domain.com"], ["first_name", "John_156"], ["is_manager", "f"], ["last_name", "Doe_157"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.628539"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.631124"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_161@domain.com"], ["first_name", "John_157"], ["is_manager", "f"], ["last_name", "Doe_158"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.631124"]]
   (1.3ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.634225"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_162@domain.com"], ["first_name", "John_158"], ["is_manager", "f"], ["last_name", "Doe_159"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.634225"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.4ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.636641"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_163@domain.com"], ["first_name", "John_159"], ["is_manager", "f"], ["last_name", "Doe_160"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.636641"]]
   (1.2ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.639804"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_164@domain.com"], ["first_name", "John_160"], ["is_manager", "f"], ["last_name", "Doe_161"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.639804"]]
   (1.1ms)  commit transaction
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:55:00 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.6ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
   (0.1ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (2.7ms)
  Rendered people/index.html.haml within layouts/application (10.7ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms)
   (1.3ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (1.1ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.667057"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_165@domain.com"], ["first_name", "John_161"], ["is_manager", "f"], ["last_name", "Doe_162"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.667057"]]
   (1.1ms)  commit transaction
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:55:00 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.5ms)
  Rendered application/_search_form.html.haml (0.4ms)
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Person Load (0.1ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (1.5ms)
  Rendered people/index.html.haml within layouts/application (4.6ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.4ms)
Started GET "/assets/application.css" for 127.0.0.1 at 2014-07-29 21:55:00 -0400
   (1.2ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.9ms)  DELETE FROM sqlite_sequence where name = 'people';
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:55:00 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.5ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
  Rendered application/_pagination.html.haml (0.9ms)
  Rendered people/index.html.haml within layouts/application (3.2ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms)
   (1.2ms)  DELETE FROM "people";
   (0.1ms)  SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
   (0.1ms)  DELETE FROM sqlite_sequence where name = 'people';
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.972500"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_166@domain.com"], ["first_name", "John_162"], ["is_manager", "f"], ["last_name", "Doe_163"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.972500"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.975169"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_167@domain.com"], ["first_name", "John_163"], ["is_manager", "f"], ["last_name", "Doe_164"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.975169"]]
   (1.5ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.978396"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_168@domain.com"], ["first_name", "John_164"], ["is_manager", "f"], ["last_name", "Doe_165"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.978396"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.980840"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_169@domain.com"], ["first_name", "John_165"], ["is_manager", "f"], ["last_name", "Doe_166"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.980840"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.983434"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_170@domain.com"], ["first_name", "John_166"], ["is_manager", "f"], ["last_name", "Doe_167"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.983434"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.985859"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_171@domain.com"], ["first_name", "John_167"], ["is_manager", "f"], ["last_name", "Doe_168"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.985859"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.988233"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_172@domain.com"], ["first_name", "John_168"], ["is_manager", "f"], ["last_name", "Doe_169"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.988233"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.990783"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_173@domain.com"], ["first_name", "John_169"], ["is_manager", "f"], ["last_name", "Doe_170"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.990783"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.993425"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_174@domain.com"], ["first_name", "John_170"], ["is_manager", "f"], ["last_name", "Doe_171"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.993425"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.996337"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_175@domain.com"], ["first_name", "John_171"], ["is_manager", "f"], ["last_name", "Doe_172"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.996337"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:00.999019"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_176@domain.com"], ["first_name", "John_172"], ["is_manager", "f"], ["last_name", "Doe_173"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:00.999019"]]
   (1.3ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.002176"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_177@domain.com"], ["first_name", "John_173"], ["is_manager", "f"], ["last_name", "Doe_174"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.002176"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.004730"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_178@domain.com"], ["first_name", "John_174"], ["is_manager", "f"], ["last_name", "Doe_175"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.004730"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.007066"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_179@domain.com"], ["first_name", "John_175"], ["is_manager", "f"], ["last_name", "Doe_176"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.007066"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.009732"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_180@domain.com"], ["first_name", "John_176"], ["is_manager", "f"], ["last_name", "Doe_177"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.009732"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.012151"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_181@domain.com"], ["first_name", "John_177"], ["is_manager", "f"], ["last_name", "Doe_178"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.012151"]]
   (1.4ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.015264"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_182@domain.com"], ["first_name", "John_178"], ["is_manager", "f"], ["last_name", "Doe_179"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.015264"]]
   (1.0ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.017791"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_183@domain.com"], ["first_name", "John_179"], ["is_manager", "f"], ["last_name", "Doe_180"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.017791"]]
   (1.3ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.021219"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_184@domain.com"], ["first_name", "John_180"], ["is_manager", "f"], ["last_name", "Doe_181"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.021219"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.023821"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_185@domain.com"], ["first_name", "John_181"], ["is_manager", "f"], ["last_name", "Doe_182"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.023821"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.026331"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_186@domain.com"], ["first_name", "John_182"], ["is_manager", "f"], ["last_name", "Doe_183"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.026331"]]
   (1.6ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.029788"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_187@domain.com"], ["first_name", "John_183"], ["is_manager", "f"], ["last_name", "Doe_184"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.029788"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.032704"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_188@domain.com"], ["first_name", "John_184"], ["is_manager", "f"], ["last_name", "Doe_185"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.032704"]]
   (0.9ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.035222"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_189@domain.com"], ["first_name", "John_185"], ["is_manager", "f"], ["last_name", "Doe_186"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.035222"]]
   (0.8ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.037569"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_190@domain.com"], ["first_name", "John_186"], ["is_manager", "f"], ["last_name", "Doe_187"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.037569"]]
   (1.4ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.040487"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_191@domain.com"], ["first_name", "John_187"], ["is_manager", "f"], ["last_name", "Doe_188"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.040487"]]
   (0.8ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.042842"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_192@domain.com"], ["first_name", "John_188"], ["is_manager", "f"], ["last_name", "Doe_189"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.042842"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.045386"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_193@domain.com"], ["first_name", "John_189"], ["is_manager", "f"], ["last_name", "Doe_190"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.045386"]]
   (0.9ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.047829"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_194@domain.com"], ["first_name", "John_190"], ["is_manager", "f"], ["last_name", "Doe_191"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.047829"]]
   (1.0ms)  commit transaction
   (0.0ms)  begin transaction
  SQL (0.2ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.050296"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_195@domain.com"], ["first_name", "John_191"], ["is_manager", "f"], ["last_name", "Doe_192"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.050296"]]
   (1.7ms)  commit transaction
   (0.1ms)  begin transaction
  SQL (0.3ms)  INSERT INTO "people" ("created_at", "dob", "email", "first_name", "is_manager", "last_name", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)  [["created_at", "2014-07-30 01:55:01.053705"], ["dob", "1984-07-30 01:54:42.226482"], ["email", "johndoe_196@domain.com"], ["first_name", "John_192"], ["is_manager", "f"], ["last_name", "Doe_193"], ["title", "Sales Rep"], ["updated_at", "2014-07-30 01:55:01.053705"]]
   (1.1ms)  commit transaction
Started GET "/people" for 127.0.0.1 at 2014-07-29 21:55:01 -0400
Processing by PeopleController#index as HTML
  Rendered application/_sort_form.html.haml (0.6ms)
  Rendered application/_search_form.html.haml (0.2ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 0
   (0.1ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (3.6ms)
  Rendered people/index.html.haml within layouts/application (12.7ms)
  Rendered application/_flash_messages.html.haml (0.3ms)
Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.7ms)
Started GET "/people?page=2&per_page=15" for 127.0.0.1 at 2014-07-29 21:55:01 -0400
Processing by PeopleController#index as HTML
  Parameters: {"page"=>"2", "per_page"=>"15"}
  Rendered application/_sort_form.html.haml (0.7ms)
  Rendered application/_search_form.html.haml (0.3ms)
  Person Load (0.4ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 15 OFFSET 15
   (0.1ms)  SELECT COUNT(*) FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%')
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 15
  Rendered application/_pagination.html.haml (2.8ms)
  Rendered people/index.html.haml within layouts/application (15.2ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.7ms)
Started GET "/people?per_page=100" for 127.0.0.1 at 2014-07-29 21:55:01 -0400
Processing by PeopleController#index as HTML
  Parameters: {"per_page"=>"100"}
  Rendered application/_sort_form.html.haml (0.6ms)
  Rendered application/_search_form.html.haml (0.3ms)
  Person Load (0.3ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 100 OFFSET 0
  Person Load (0.2ms)  SELECT  "people".* FROM "people"  WHERE (1=2  or first_name like '%%' or last_name like '%%' or email like '%%' or title like '%%' or dob like '%%' or is_manager like '%%') LIMIT 1 OFFSET 0
  Rendered application/_pagination.html.haml (1.8ms)
  Rendered people/index.html.haml within layouts/application (14.4ms)
  Rendered application/_flash_messages.html.haml (0.2ms)
Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.5ms)