(1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (0.1ms) select sqlite_version(*)  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePeople (20140713221826)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "age" integer, "email" varchar(255), "bio" text, "nickname" varchar(255), "created_at" datetime, "updated_at" datetime) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140713221826"]]  (1.2ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateVehicles (20140715080028)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "vehicles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "year" integer, "manufacturer" varchar(255), "model" varchar(255), "color" varchar(255), "engine" varchar(255), "doorrs" integer, "cylinders" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140715080028"]]  (1.0ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/people" for 127.0.0.1 at 2014-07-15 06:24:28 -0400 ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 15792ms NameError (undefined local variable or method `sort_field' for #): app/controllers/people_controller.rb:15:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (15.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (40.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-15 06:25:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.6ms) Person Load (11.5ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (33.0ms) Completed 200 OK in 4044ms (Views: 45.6ms | ActiveRecord: 12.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 06:25:26 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 06:25:26 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 06:25:33 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name [desc]"} Rendered application/_sort_form.html.haml (1.1ms) Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (3.6ms) Completed 200 OK in 348927ms (Views: 7.3ms | ActiveRecord: 0.2ms) Started GET "/people?utf8=%E2%9C%93&sort_by=last_name+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 06:34:48 -0400 SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/controllers/people_controller.rb:13: syntax error, unexpected tIVAR, expecting ')' @sort_opts = controller_name.singulariz... ^): app/controllers/people_controller.rb:13: syntax error, unexpected tIVAR, expecting ')' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.6ms) Started GET "/people?utf8=%E2%9C%93&sort_by=last_name+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 06:35:45 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name [desc]"} Rendered application/_sort_form.html.haml (0.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (2.4ms) Completed 200 OK in 9ms (Views: 5.6ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 06:35:45 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 06:35:45 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 06:35:54 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email [desc]"} Rendered application/_sort_form.html.haml (2.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (5.0ms) Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 06:35:54 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 06:35:54 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 06:36:00 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name [desc]"} Rendered application/_sort_form.html.haml (1.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (4.2ms) Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 06:36:00 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 06:36:00 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 10:36:02 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email [desc]"} Rendered application/_sort_form.html.haml (1.7ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (4.6ms) Completed 200 OK in 16ms (Views: 10.6ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:36:02 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:36:02 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 10:37:31 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (3.3ms) Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:37:31 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:37:31 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 10:37:40 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name [desc]"} Rendered application/_sort_form.html.haml (1.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (3.6ms) Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:37:40 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:37:40 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name" for 127.0.0.1 at 2014-07-15 10:38:26 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name"} Person Load (0.2ms) SELECT "people".* FROM "people" CACHE (0.0ms) SELECT "people".* FROM "people" Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."first_name" ASC Rendered application/_sort_form.html.haml (0.9ms) CACHE (0.0ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (2.7ms) Completed 200 OK in 204238ms (Views: 7.0ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:41:51 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:41:51 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name" for 127.0.0.1 at 2014-07-15 10:41:59 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name"} Rendered application/_sort_form.html.haml (7.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."first_name" ASC Rendered people/index.html.haml within layouts/application (11.4ms) Completed 200 OK in 21ms (Views: 16.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:41:59 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:41:59 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email" for 127.0.0.1 at 2014-07-15 10:42:07 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.7ms) Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (4.2ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:42:08 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:42:08 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 10:42:12 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email [desc]"} Rendered application/_sort_form.html.haml (1.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (4.5ms) Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:42:12 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:42:12 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 10:42:31 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name [desc]"} Rendered application/_sort_form.html.haml (1.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (3.9ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:42:31 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:42:31 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 10:45:40 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name [desc]"} Rendered application/_sort_form.html.haml (0.9ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (2.7ms) Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:45:40 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:45:40 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 10:45:57 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email [desc]"} Rendered application/_sort_form.html.haml (1.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (3.1ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:45:57 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:45:57 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+%5Bdesc%5D" for 127.0.0.1 at 2014-07-15 10:49:59 -0400 ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email [desc]"} Rendered application/_sort_form.html.haml (2.1ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (10.2ms) Completed 200 OK in 104ms (Views: 101.0ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:50:00 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:50:00 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 10:50:09 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (0.8ms) Person Load (0.1ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (2.2ms) Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:50:10 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:50:10 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 10:51:33 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (3.4ms) Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:51:33 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:51:33 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 10:52:15 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.0ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (2.5ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:52:15 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:52:15 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 10:52:55 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (2.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (10.6ms) Completed 200 OK in 39ms (Views: 35.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:52:55 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:52:55 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 10:52:58 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (1.2ms) Person Load (0.3ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (3.3ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 10:52:58 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 10:52:58 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-15 10:54:09 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (2.2ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (5.2ms) Completed 200 OK in 1069434ms (Views: 11.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:11:58 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:11:59 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 11:12:04 -0400 SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/controllers/people_controller.rb:5: syntax error, unexpected ')', expecting keyword_end ...sort_by].split(' ').length > 1) ? params[:sort_by].split(' '... ... ^ /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/controllers/people_controller.rb:5: syntax error, unexpected ':' ...ms[:sort_by].split(' ').first : params[:sort_by] ... ^ /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/controllers/people_controller.rb:6: syntax error, unexpected ')', expecting keyword_end ...sort_by].split(' ').length > 1) ? params[:sort_by].split(' '... ... ^ /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/controllers/people_controller.rb:6: syntax error, unexpected ':', expecting keyword_end ...arams[:sort_by].split(' ')[1] : nil ... ^): app/controllers/people_controller.rb:5: syntax error, unexpected ')', expecting keyword_end app/controllers/people_controller.rb:5: syntax error, unexpected ':' app/controllers/people_controller.rb:6: syntax error, unexpected ')', expecting keyword_end app/controllers/people_controller.rb:6: syntax error, unexpected ':', expecting keyword_end Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.7ms) Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 11:13:45 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Completed 500 Internal Server Error in 38947ms ArgumentError (Direction should be :asc or :desc): app/controllers/people_controller.rb:17:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.1ms) Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 11:14:57 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.0ms) Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (2.9ms) Completed 200 OK in 3908ms (Views: 7.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:15:01 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:15:01 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email" for 127.0.0.1 at 2014-07-15 11:17:43 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email"} Completed 500 Internal Server Error in 3ms NoMethodError (undefined method `to_sym' for nil:NilClass): app/controllers/people_controller.rb:16:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.2ms) Started GET "/people?utf8=%E2%9C%93&sort_by=email" for 127.0.0.1 at 2014-07-15 11:18:23 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (0.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (2.4ms) Completed 200 OK in 9ms (Views: 5.5ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:18:23 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:18:23 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 11:18:27 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.1ms) Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (3.6ms) Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:18:27 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:18:27 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+desc" for 127.0.0.1 at 2014-07-15 11:18:40 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name desc"} Rendered application/_sort_form.html.haml (1.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."first_name" DESC Rendered people/index.html.haml within layouts/application (3.6ms) Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:18:40 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:18:40 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name" for 127.0.0.1 at 2014-07-15 11:18:44 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name"} Rendered application/_sort_form.html.haml (1.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (3.6ms) Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:18:44 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:18:44 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email" for 127.0.0.1 at 2014-07-15 11:18:49 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (3.5ms) Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:18:49 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:18:49 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 11:21:07 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 3ms NoMethodError (undefined method `to_sym' for []:Array): app/controllers/people_controller.rb:9:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-15 11:21:55 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (2.3ms) Completed 200 OK in 8ms (Views: 5.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:21:55 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:21:55 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-15 11:22:00 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (1.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (4.1ms) Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:22:00 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:22:00 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email" for 127.0.0.1 at 2014-07-15 11:22:04 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.1ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (3.1ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:22:04 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:22:04 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 11:22:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (2.6ms) Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:22:16 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:22:16 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 11:22:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Person Load (0.2ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (4.7ms) Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:22:16 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:22:16 -0400  (0.2ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 29], ["bio", "ipsa velit placeat quaerat odit veritatis accusamus exercitationem delectus praesentium"], ["created_at", "2014-07-15 15:44:28.936906"], ["email", "bryana@kilback.info"], ["first_name", "Mabelle"], ["last_name", "Ferry"], ["updated_at", "2014-07-15 15:44:28.936906"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 32], ["bio", "saepe quis quibusdam non omnis eum qui tempora excepturi delectus"], ["created_at", "2014-07-15 15:44:28.943169"], ["email", "maribel@barton.name"], ["first_name", "Abe"], ["last_name", "Friesen"], ["updated_at", "2014-07-15 15:44:28.943169"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 18], ["bio", "aut facilis aut omnis in incidunt molestiae aut culpa delectus"], ["created_at", "2014-07-15 15:44:28.947630"], ["email", "marilou_price@moriette.biz"], ["first_name", "Antonio"], ["last_name", "Erdman"], ["updated_at", "2014-07-15 15:44:28.947630"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 86], ["bio", "debitis consequatur et delectus ut voluptatem est iure consequatur corporis"], ["created_at", "2014-07-15 15:44:28.950765"], ["email", "hoyt_mante@beatty.info"], ["first_name", "Kamren"], ["last_name", "Schneider"], ["updated_at", "2014-07-15 15:44:28.950765"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 97], ["bio", "fugiat tempore exercitationem ut velit in dolores odio ducimus est"], ["created_at", "2014-07-15 15:44:28.954309"], ["email", "cleveland.orn@powlowskicrooks.info"], ["first_name", "Stephan"], ["last_name", "Fadel"], ["updated_at", "2014-07-15 15:44:28.954309"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 31], ["bio", "sint et nam non rerum optio ratione et omnis provident"], ["created_at", "2014-07-15 15:44:28.957395"], ["email", "brayan@schaden.name"], ["first_name", "Erica"], ["last_name", "Koch"], ["updated_at", "2014-07-15 15:44:28.957395"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 41], ["bio", "illum mollitia molestias qui ex dicta voluptatem corporis omnis tenetur"], ["created_at", "2014-07-15 15:44:28.960926"], ["email", "alden_cummerata@mertz.name"], ["first_name", "Wilhelm"], ["last_name", "Ullrich"], ["updated_at", "2014-07-15 15:44:28.960926"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 87], ["bio", "occaecati totam est eaque error numquam ipsum incidunt quia natus"], ["created_at", "2014-07-15 15:44:28.963876"], ["email", "sigurd.ullrich@hahn.biz"], ["first_name", "Sonia"], ["last_name", "McGlynn"], ["updated_at", "2014-07-15 15:44:28.963876"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 47], ["bio", "reprehenderit illo ipsa cupiditate qui et sapiente consectetur ut vero"], ["created_at", "2014-07-15 15:44:28.966523"], ["email", "haie_moriette@roweokon.name"], ["first_name", "Rodolfo"], ["last_name", "Barrows"], ["updated_at", "2014-07-15 15:44:28.966523"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 103], ["bio", "esse molestias voluptatem amet omnis eius dolor voluptate tenetur qui"], ["created_at", "2014-07-15 15:44:28.969256"], ["email", "melyna.emard@quigley.biz"], ["first_name", "Cindy"], ["last_name", "Runolfsson"], ["updated_at", "2014-07-15 15:44:28.969256"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 94], ["bio", "officia consequatur et illum aliquam voluptate minus laudantium autem impedit"], ["created_at", "2014-07-15 15:44:28.971728"], ["email", "brendon.fadel@cruickshank.com"], ["first_name", "Kieran"], ["last_name", "Moen"], ["updated_at", "2014-07-15 15:44:28.971728"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 86], ["bio", "eos numquam in qui incidunt iste velit soluta illo tempore"], ["created_at", "2014-07-15 15:44:28.974544"], ["email", "chanel_deckow@connelly.name"], ["first_name", "Claude"], ["last_name", "Tromp"], ["updated_at", "2014-07-15 15:44:28.974544"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 61], ["bio", "non sunt ea iste praesentium quia laudantium magni necessitatibus quae"], ["created_at", "2014-07-15 15:44:28.977533"], ["email", "geo_grimes@luettgen.info"], ["first_name", "Keegan"], ["last_name", "Fahey"], ["updated_at", "2014-07-15 15:44:28.977533"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 51], ["bio", "soluta nihil totam ab ut sit consequatur in ipsam molestias"], ["created_at", "2014-07-15 15:44:28.980623"], ["email", "efrain.aufderhar@flatleybarrows.net"], ["first_name", "Morton"], ["last_name", "Keeling"], ["updated_at", "2014-07-15 15:44:28.980623"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 77], ["bio", "nesciunt sed id magnam quia quia praesentium rerum exercitationem eligendi"], ["created_at", "2014-07-15 15:44:28.983817"], ["email", "emilio@marquardt.name"], ["first_name", "Vidal"], ["last_name", "Schmidt"], ["updated_at", "2014-07-15 15:44:28.983817"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 101], ["bio", "aut ipsam sunt sint reiciendis dolor esse quia nesciunt iure"], ["created_at", "2014-07-15 15:44:28.987407"], ["email", "jeika_dare@crookshermann.biz"], ["first_name", "Carrie"], ["last_name", "Schultz"], ["updated_at", "2014-07-15 15:44:28.987407"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 33], ["bio", "aut consectetur qui pariatur quaerat ratione nam aut aperiam iste"], ["created_at", "2014-07-15 15:44:28.990545"], ["email", "abbie@zboncakmorar.name"], ["first_name", "Fermin"], ["last_name", "Larson"], ["updated_at", "2014-07-15 15:44:28.990545"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 80], ["bio", "et repudiandae assumenda odit impedit distinctio error soluta esse voluptatem"], ["created_at", "2014-07-15 15:44:28.993671"], ["email", "bennie@stammboehm.biz"], ["first_name", "Emile"], ["last_name", "Schmeler"], ["updated_at", "2014-07-15 15:44:28.993671"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 93], ["bio", "quia est distinctio ex quos eos nihil voluptatum nisi est"], ["created_at", "2014-07-15 15:44:28.997073"], ["email", "christelle_cruickshank@dach.org"], ["first_name", "Salvatore"], ["last_name", "Kilback"], ["updated_at", "2014-07-15 15:44:28.997073"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 102], ["bio", "doloremque ut voluptatum minus officiis sequi placeat enim iusto neque"], ["created_at", "2014-07-15 15:44:29.000090"], ["email", "estefania.spencer@williamson.biz"], ["first_name", "Eda"], ["last_name", "Cassin"], ["updated_at", "2014-07-15 15:44:29.000090"]]  (0.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 99], ["bio", "et repudiandae modi veniam qui possimus et aperiam vero provident"], ["created_at", "2014-07-15 15:44:29.003188"], ["email", "elouise@carter.com"], ["first_name", "Kiara"], ["last_name", "Collier"], ["updated_at", "2014-07-15 15:44:29.003188"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 22], ["bio", "excepturi necessitatibus ratione sed quia quo ut cupiditate et cum"], ["created_at", "2014-07-15 15:44:29.007289"], ["email", "lenny_yundt@weinat.info"], ["first_name", "Camila"], ["last_name", "Howe"], ["updated_at", "2014-07-15 15:44:29.007289"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 104], ["bio", "reiciendis alias quibusdam minus recusandae quas assumenda ab est consequatur"], ["created_at", "2014-07-15 15:44:29.010642"], ["email", "joanne_mraz@dickenshodkiewicz.biz"], ["first_name", "Magnus"], ["last_name", "Connelly"], ["updated_at", "2014-07-15 15:44:29.010642"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 39], ["bio", "voluptatem quis illum deleniti est praesentium libero et quasi explicabo"], ["created_at", "2014-07-15 15:44:29.013301"], ["email", "oma@schambergerdooley.biz"], ["first_name", "Jermaine"], ["last_name", "Satterfield"], ["updated_at", "2014-07-15 15:44:29.013301"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 22], ["bio", "soluta aut vero magni nobis quaerat nisi dolorem consequatur voluptates"], ["created_at", "2014-07-15 15:44:29.015980"], ["email", "markus.kuhlman@grady.info"], ["first_name", "Jocelyn"], ["last_name", "Nienow"], ["updated_at", "2014-07-15 15:44:29.015980"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 89], ["bio", "et et adipisci eos nihil consequuntur quidem ea mollitia sed"], ["created_at", "2014-07-15 15:44:29.018621"], ["email", "ada@johns.name"], ["first_name", "Marc"], ["last_name", "Osinski"], ["updated_at", "2014-07-15 15:44:29.018621"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 53], ["bio", "omnis aspernatur eum culpa ipsam reiciendis quod quibusdam aut quam"], ["created_at", "2014-07-15 15:44:29.022208"], ["email", "natalia.champlin@mosciski.org"], ["first_name", "Ewell"], ["last_name", "Beer"], ["updated_at", "2014-07-15 15:44:29.022208"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 23], ["bio", "esse eaque magnam quia unde nihil nihil ea rerum hic"], ["created_at", "2014-07-15 15:44:29.024862"], ["email", "alanna.mclaughlin@dibbert.biz"], ["first_name", "Blake"], ["last_name", "Wilderman"], ["updated_at", "2014-07-15 15:44:29.024862"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 65], ["bio", "sit porro vel cumque tenetur error et recusandae illum autem"], ["created_at", "2014-07-15 15:44:29.027518"], ["email", "elmore@weimann.biz"], ["first_name", "Jose"], ["last_name", "Koss"], ["updated_at", "2014-07-15 15:44:29.027518"]]  (1.1ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 32], ["bio", "tempora illo quia at et consectetur aut occaecati et ut"], ["created_at", "2014-07-15 15:44:29.030026"], ["email", "flavie@king.biz"], ["first_name", "Mitchell"], ["last_name", "Pollich"], ["updated_at", "2014-07-15 15:44:29.030026"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 20], ["bio", "aliquid et nam repudiandae et nihil soluta sint in debitis"], ["created_at", "2014-07-15 15:44:29.032659"], ["email", "kim@rogahnritchie.biz"], ["first_name", "Willie"], ["last_name", "Thompson"], ["updated_at", "2014-07-15 15:44:29.032659"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 92], ["bio", "fugiat sequi omnis quasi autem asperiores laudantium et rerum et"], ["created_at", "2014-07-15 15:44:29.036796"], ["email", "bertha@blandakling.info"], ["first_name", "Jeromy"], ["last_name", "Hauck"], ["updated_at", "2014-07-15 15:44:29.036796"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 102], ["bio", "et aut excepturi nam est dolores maiores iste sint a"], ["created_at", "2014-07-15 15:44:29.039542"], ["email", "selina@paucekpredovic.biz"], ["first_name", "Audie"], ["last_name", "Terry"], ["updated_at", "2014-07-15 15:44:29.039542"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 93], ["bio", "vel id dolores aliquid in quas odio iste reprehenderit minima"], ["created_at", "2014-07-15 15:44:29.042340"], ["email", "kelsi@dubuque.info"], ["first_name", "Hubert"], ["last_name", "Padberg"], ["updated_at", "2014-07-15 15:44:29.042340"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 52], ["bio", "officiis omnis sit quidem minima ea cum est harum voluptatem"], ["created_at", "2014-07-15 15:44:29.045986"], ["email", "euna@champlin.com"], ["first_name", "Reina"], ["last_name", "Hoeger"], ["updated_at", "2014-07-15 15:44:29.045986"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["bio", "at doloribus laboriosam numquam aut pariatur qui est impedit et"], ["created_at", "2014-07-15 15:44:29.048804"], ["email", "leland@cummingswaters.com"], ["first_name", "Sophie"], ["last_name", "Bosco"], ["updated_at", "2014-07-15 15:44:29.048804"]]  (1.4ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 80], ["bio", "aspernatur corrupti dolor qui assumenda quod ea et optio qui"], ["created_at", "2014-07-15 15:44:29.051621"], ["email", "jada_krajcik@okeefe.biz"], ["first_name", "Vivian"], ["last_name", "Gusikowski"], ["updated_at", "2014-07-15 15:44:29.051621"]]  (2.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 100], ["bio", "cumque saepe sunt ut modi qui non impedit pariatur ex"], ["created_at", "2014-07-15 15:44:29.056003"], ["email", "velva.smitham@simonis.net"], ["first_name", "Chloe"], ["last_name", "Metz"], ["updated_at", "2014-07-15 15:44:29.056003"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 57], ["bio", "sunt sint minima vel voluptas quia unde perspiciatis corporis dolorem"], ["created_at", "2014-07-15 15:44:29.059541"], ["email", "mikel@runteskiles.net"], ["first_name", "Deshawn"], ["last_name", "Turcotte"], ["updated_at", "2014-07-15 15:44:29.059541"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 64], ["bio", "tenetur eos et voluptatem maiores iusto repellendus saepe dolor aut"], ["created_at", "2014-07-15 15:44:29.062934"], ["email", "jerald.metz@wehnerluettgen.biz"], ["first_name", "Breana"], ["last_name", "Murray"], ["updated_at", "2014-07-15 15:44:29.062934"]]  (1.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 99], ["bio", "aut magni consectetur nostrum odit odio ducimus enim qui incidunt"], ["created_at", "2014-07-15 15:44:29.066824"], ["email", "kendrick.nienow@wilderman.biz"], ["first_name", "Fausto"], ["last_name", "Aufderhar"], ["updated_at", "2014-07-15 15:44:29.066824"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 21], ["bio", "excepturi ab molestias rerum qui et aut est esse consequatur"], ["created_at", "2014-07-15 15:44:29.069702"], ["email", "thad_jacobi@wehner.name"], ["first_name", "Rosa"], ["last_name", "Graham"], ["updated_at", "2014-07-15 15:44:29.069702"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 23], ["bio", "necessitatibus nihil rerum est impedit eaque iure sint dolores fugit"], ["created_at", "2014-07-15 15:44:29.072904"], ["email", "howard@rohanreinger.org"], ["first_name", "Isac"], ["last_name", "Bins"], ["updated_at", "2014-07-15 15:44:29.072904"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 80], ["bio", "fugiat cum dolores numquam non esse est enim nostrum et"], ["created_at", "2014-07-15 15:44:29.077263"], ["email", "junior_torp@pacochastamm.com"], ["first_name", "Elmer"], ["last_name", "Ziemann"], ["updated_at", "2014-07-15 15:44:29.077263"]]  (1.7ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 56], ["bio", "eligendi doloremque velit enim ipsa pariatur perspiciatis magni aut fugiat"], ["created_at", "2014-07-15 15:44:29.081207"], ["email", "pasquale.hills@swaniawskiberge.biz"], ["first_name", "Alexander"], ["last_name", "Stoltenberg"], ["updated_at", "2014-07-15 15:44:29.081207"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 75], ["bio", "ad beatae ipsum id sed rem veniam ullam odio a"], ["created_at", "2014-07-15 15:44:29.084189"], ["email", "evan.berge@deckowmoen.net"], ["first_name", "Omari"], ["last_name", "Torp"], ["updated_at", "2014-07-15 15:44:29.084189"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 31], ["bio", "hic sint corrupti consequatur ea voluptatem laudantium animi voluptatem tenetur"], ["created_at", "2014-07-15 15:44:29.087021"], ["email", "elwyn@jast.com"], ["first_name", "Daphne"], ["last_name", "Gerlach"], ["updated_at", "2014-07-15 15:44:29.087021"]]  (1.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 18], ["bio", "aspernatur labore reprehenderit odit ipsum tempora sed libero illo quo"], ["created_at", "2014-07-15 15:44:29.091040"], ["email", "karlee_vandervort@hanerobel.net"], ["first_name", "Malvina"], ["last_name", "Leuschke"], ["updated_at", "2014-07-15 15:44:29.091040"]]  (12.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 25], ["bio", "qui optio atque aut aut enim excepturi autem dolor ut"], ["created_at", "2014-07-15 15:44:29.107161"], ["email", "jennie@auerrenner.net"], ["first_name", "Pascale"], ["last_name", "Pollich"], ["updated_at", "2014-07-15 15:44:29.107161"]]  (4.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 65], ["bio", "et deleniti amet et sint cum excepturi dicta aut sequi"], ["created_at", "2014-07-15 15:44:29.113552"], ["email", "sasha@harberstanton.com"], ["first_name", "Marisa"], ["last_name", "Cormier"], ["updated_at", "2014-07-15 15:44:29.113552"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 99], ["bio", "voluptatibus aut quas similique dignissimos numquam sint pariatur quia beatae"], ["created_at", "2014-07-15 15:44:29.116555"], ["email", "liana@schimmelrodriguez.com"], ["first_name", "Joshua"], ["last_name", "Thompson"], ["updated_at", "2014-07-15 15:44:29.116555"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 35], ["bio", "minima aspernatur facere vel incidunt exercitationem provident aliquam ea consequuntur"], ["created_at", "2014-07-15 15:44:29.119358"], ["email", "frederic_bergstrom@farrellbarrows.org"], ["first_name", "Aletha"], ["last_name", "Waelchi"], ["updated_at", "2014-07-15 15:44:29.119358"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 28], ["bio", "omnis omnis esse eius sit aspernatur dolores maxime temporibus debitis"], ["created_at", "2014-07-15 15:44:29.122843"], ["email", "florine_macejkovic@romaguera.net"], ["first_name", "Jovany"], ["last_name", "Sanford"], ["updated_at", "2014-07-15 15:44:29.122843"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 25], ["bio", "dolores debitis modi ut minus ipsum amet quia molestias voluptatibus"], ["created_at", "2014-07-15 15:44:29.126781"], ["email", "jaclyn@legros.com"], ["first_name", "Emery"], ["last_name", "Lockman"], ["updated_at", "2014-07-15 15:44:29.126781"]]  (2.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 62], ["bio", "ad corrupti velit minima eum numquam ab quia qui qui"], ["created_at", "2014-07-15 15:44:29.131424"], ["email", "hortense@schumm.org"], ["first_name", "Robb"], ["last_name", "Boehm"], ["updated_at", "2014-07-15 15:44:29.131424"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 71], ["bio", "harum id id dolorum voluptatem sapiente mollitia rem illo a"], ["created_at", "2014-07-15 15:44:29.134205"], ["email", "halle@kling.biz"], ["first_name", "Durward"], ["last_name", "Schimmel"], ["updated_at", "2014-07-15 15:44:29.134205"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 97], ["bio", "alias voluptas molestiae aut dolores sit molestiae et sed magnam"], ["created_at", "2014-07-15 15:44:29.136965"], ["email", "abdullah_hilpert@farrell.info"], ["first_name", "Janie"], ["last_name", "Leannon"], ["updated_at", "2014-07-15 15:44:29.136965"]]  (1.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 34], ["bio", "iste et animi quia et at qui dicta voluptatem asperiores"], ["created_at", "2014-07-15 15:44:29.141293"], ["email", "deshaun@feil.info"], ["first_name", "Asia"], ["last_name", "Stiedemann"], ["updated_at", "2014-07-15 15:44:29.141293"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 34], ["bio", "ipsa ut tempore quis atque at quae aspernatur est fugit"], ["created_at", "2014-07-15 15:44:29.144494"], ["email", "sadie@turnerwhite.com"], ["first_name", "Demetris"], ["last_name", "Kulas"], ["updated_at", "2014-07-15 15:44:29.144494"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 39], ["bio", "vel nobis voluptates maxime optio assumenda qui quaerat fugit est"], ["created_at", "2014-07-15 15:44:29.147241"], ["email", "georgette@turcotte.org"], ["first_name", "Orlando"], ["last_name", "Torp"], ["updated_at", "2014-07-15 15:44:29.147241"]]  (1.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 63], ["bio", "cum quisquam officia excepturi unde ipsum ratione omnis est aut"], ["created_at", "2014-07-15 15:44:29.150896"], ["email", "jeie_pfeffer@grimes.biz"], ["first_name", "Eusebio"], ["last_name", "Predovic"], ["updated_at", "2014-07-15 15:44:29.150896"]]  (1.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 52], ["bio", "provident mollitia quo omnis hic eum natus sequi aperiam nihil"], ["created_at", "2014-07-15 15:44:29.154321"], ["email", "julia_hane@kub.com"], ["first_name", "Rodrick"], ["last_name", "Wiza"], ["updated_at", "2014-07-15 15:44:29.154321"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 100], ["bio", "harum recusandae tempora minus assumenda quae et similique repellat vitae"], ["created_at", "2014-07-15 15:44:29.158061"], ["email", "amparo_williamson@hermann.biz"], ["first_name", "Ludie"], ["last_name", "Kerluke"], ["updated_at", "2014-07-15 15:44:29.158061"]]  (1.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 31], ["bio", "laboriosam qui amet vero porro impedit quasi rerum sit est"], ["created_at", "2014-07-15 15:44:29.161631"], ["email", "zander@swaniawski.name"], ["first_name", "Joel"], ["last_name", "Hintz"], ["updated_at", "2014-07-15 15:44:29.161631"]]  (1.2ms) commit transaction  (0.0ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 80], ["bio", "nesciunt delectus eius et nobis reprehenderit sapiente magnam vero optio"], ["created_at", "2014-07-15 15:44:29.164379"], ["email", "violette@muller.org"], ["first_name", "Meda"], ["last_name", "Spinka"], ["updated_at", "2014-07-15 15:44:29.164379"]]  (2.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 18], ["bio", "dolor maxime nulla qui ullam quasi et aut voluptatem sit"], ["created_at", "2014-07-15 15:44:29.168297"], ["email", "lurline.cronin@oconner.info"], ["first_name", "Peggie"], ["last_name", "Prosacco"], ["updated_at", "2014-07-15 15:44:29.168297"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 48], ["bio", "dolorem nam sit at consequatur cupiditate voluptas qui neque autem"], ["created_at", "2014-07-15 15:44:29.171411"], ["email", "tavares_hegmann@ebertcollins.info"], ["first_name", "Kole"], ["last_name", "Yundt"], ["updated_at", "2014-07-15 15:44:29.171411"]]  (1.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 80], ["bio", "id voluptatum ut nihil sit eveniet cumque natus dolor porro"], ["created_at", "2014-07-15 15:44:29.174924"], ["email", "america@kunze.net"], ["first_name", "Jason"], ["last_name", "Ryan"], ["updated_at", "2014-07-15 15:44:29.174924"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 89], ["bio", "perferendis et officiis veritatis excepturi voluptatem aut in sunt sit"], ["created_at", "2014-07-15 15:44:29.177744"], ["email", "cora@cormiermarvin.biz"], ["first_name", "Elyssa"], ["last_name", "Maggio"], ["updated_at", "2014-07-15 15:44:29.177744"]]  (1.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 30], ["bio", "hic voluptatem molestias omnis libero impedit quos cupiditate voluptatibus aperiam"], ["created_at", "2014-07-15 15:44:29.180745"], ["email", "jeff_schoen@rolfson.org"], ["first_name", "Antonio"], ["last_name", "Farrell"], ["updated_at", "2014-07-15 15:44:29.180745"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 66], ["bio", "odit cum rerum voluptates non itaque nesciunt commodi praesentium quos"], ["created_at", "2014-07-15 15:44:29.183520"], ["email", "ona@tremblaylehner.net"], ["first_name", "Kaia"], ["last_name", "Grady"], ["updated_at", "2014-07-15 15:44:29.183520"]]  (1.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 64], ["bio", "a deleniti voluptates dolore voluptate ea ut adipisci in nihil"], ["created_at", "2014-07-15 15:44:29.186050"], ["email", "doug@simonis.org"], ["first_name", "Mallory"], ["last_name", "Senger"], ["updated_at", "2014-07-15 15:44:29.186050"]]  (5.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 30], ["bio", "cum voluptates aperiam non ratione itaque vel saepe suscipit qui"], ["created_at", "2014-07-15 15:44:29.193134"], ["email", "guillermo@witting.biz"], ["first_name", "Lauryn"], ["last_name", "Morissette"], ["updated_at", "2014-07-15 15:44:29.193134"]]  (7.2ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 19], ["bio", "mollitia explicabo sed voluptas consectetur dolorem laboriosam velit et necessitatibus"], ["created_at", "2014-07-15 15:44:29.202150"], ["email", "justyn.marvin@lubowitz.com"], ["first_name", "Brianne"], ["last_name", "Bogisich"], ["updated_at", "2014-07-15 15:44:29.202150"]]  (1.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "people" ("age", "bio", "created_at", "email", "first_name", "last_name", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["age", 100], ["bio", "molestias vel autem officiis nihil sed rem quidem ad nemo"], ["created_at", "2014-07-15 15:44:29.205621"], ["email", "tanya@christiansen.net"], ["first_name", "Myles"], ["last_name", "Klocko"], ["updated_at", "2014-07-15 15:44:29.205621"]]  (1.1ms) commit transaction Started GET "/people" for 127.0.0.1 at 2014-07-15 11:44:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Person Load (1.1ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (34.9ms) Completed 200 OK in 38ms (Views: 36.7ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:44:37 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:44:37 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+desc" for 127.0.0.1 at 2014-07-15 11:44:42 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name desc"} Rendered application/_sort_form.html.haml (1.4ms) Person Load (1.0ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (20.3ms) Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:44:42 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:44:42 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name" for 127.0.0.1 at 2014-07-15 11:44:47 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name"} Rendered application/_sort_form.html.haml (0.9ms) Person Load (0.6ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (21.0ms) Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:44:47 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:44:47 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name" for 127.0.0.1 at 2014-07-15 11:45:11 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name"} Rendered application/_sort_form.html.haml (0.9ms) Person Load (0.5ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (17.1ms) Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:45:11 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:45:11 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+desc" for 127.0.0.1 at 2014-07-15 11:45:36 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name desc"} Rendered application/_sort_form.html.haml (1.1ms) Person Load (0.9ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (21.4ms) Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:45:36 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:45:36 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+desc" for 127.0.0.1 at 2014-07-15 11:47:22 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name desc"} Rendered application/_sort_form.html.haml (1.0ms) Person Load (0.6ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (23.3ms) Completed 200 OK in 192961ms (Views: 26.0ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:50:35 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:50:35 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+desc" for 127.0.0.1 at 2014-07-15 11:50:43 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name desc"} Rendered application/_sort_form.html.haml (1.5ms) Person Load (0.9ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (26.8ms) Completed 200 OK in 10822ms (Views: 30.2ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:50:53 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:50:53 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+desc" for 127.0.0.1 at 2014-07-15 11:51:01 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name desc"} Rendered application/_sort_form.html.haml (1.8ms) Person Load (0.9ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (23.0ms) Completed 200 OK in 46836ms (Views: 25.2ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:51:48 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:51:48 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+desc" for 127.0.0.1 at 2014-07-15 11:51:52 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name desc"} Rendered application/_sort_form.html.haml (1.0ms) Person Load (0.8ms) SELECT "people".* FROM "people" ORDER BY "people"."first_name" DESC Rendered people/index.html.haml within layouts/application (23.3ms) Completed 200 OK in 3139ms (Views: 26.9ms | ActiveRecord: 1.4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:51:55 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:51:55 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name" for 127.0.0.1 at 2014-07-15 11:52:11 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name"} Rendered application/_sort_form.html.haml (1.9ms) Person Load (1.0ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (36.6ms) Completed 200 OK in 45ms (Views: 40.6ms | ActiveRecord: 1.5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:52:11 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:52:11 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name" for 127.0.0.1 at 2014-07-15 11:52:40 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name"} Rendered application/_sort_form.html.haml (0.9ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."first_name" ASC Rendered people/index.html.haml within layouts/application (24.0ms) Completed 200 OK in 30ms (Views: 26.6ms | ActiveRecord: 1.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:52:40 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:52:40 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+desc" for 127.0.0.1 at 2014-07-15 11:52:45 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name desc"} Rendered application/_sort_form.html.haml (1.5ms) Person Load (0.9ms) SELECT "people".* FROM "people" ORDER BY "people"."first_name" DESC Rendered people/index.html.haml within layouts/application (21.3ms) Completed 200 OK in 28ms (Views: 25.9ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:52:45 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:52:45 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name" for 127.0.0.1 at 2014-07-15 11:52:48 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name"} Rendered application/_sort_form.html.haml (1.8ms) Person Load (0.9ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (22.1ms) Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:52:48 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:52:48 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-15 11:52:52 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (1.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (18.4ms) Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:52:52 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:52:52 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email" for 127.0.0.1 at 2014-07-15 11:53:00 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.3ms) Person Load (0.9ms) SELECT "people".* FROM "people" ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (18.9ms) Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:53:00 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:53:00 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 11:53:04 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (2.1ms) Person Load (1.0ms) SELECT "people".* FROM "people" ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (28.5ms) Completed 200 OK in 34ms (Views: 32.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:53:04 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:53:04 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 11:53:08 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (2.4ms) Person Load (1.0ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (23.5ms) Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 11:53:08 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 11:53:08 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 11:58:48 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 4ms NoMethodError (undefined method `default_sort_cols' for #): app/controllers/people_controller.rb:10:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-15 11:58:48 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `default_sort_cols' for #): app/controllers/people_controller.rb:10:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-15 11:59:22 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `default_sort_cols' for #): app/controllers/people_controller.rb:10:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-15 12:17:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Person Load (0.5ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (19.7ms) Completed 200 OK in 26ms (Views: 22.6ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 12:17:08 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 12:17:08 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 12:17:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Person Load (0.5ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (19.6ms) Completed 200 OK in 26ms (Views: 22.5ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 12:17:59 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 12:17:59 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 12:18:39 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (3.5ms) Person Load (0.9ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (46.8ms) Completed 200 OK in 141ms (Views: 137.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 12:18:39 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 12:18:39 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 12:19:56 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Person Load (0.6ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (21.4ms) Completed 200 OK in 27ms (Views: 24.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 12:19:56 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 12:19:56 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 12:20:16 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Person Load (0.5ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (16.7ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 12:20:16 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 12:20:16 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name" for 127.0.0.1 at 2014-07-15 12:20:38 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name"} Rendered application/_sort_form.html.haml (1.3ms) Person Load (1.0ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (19.0ms) Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 12:20:38 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 12:20:38 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name" for 127.0.0.1 at 2014-07-15 12:20:57 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name"} Rendered application/_sort_form.html.haml (1.6ms) Person Load (1.1ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (29.9ms) Completed 200 OK in 37ms (Views: 34.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 12:20:57 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 12:20:57 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name" for 127.0.0.1 at 2014-07-15 12:21:27 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name"} Rendered application/_sort_form.html.haml (2.8ms) Person Load (1.8ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (38.7ms) Completed 200 OK in 50245ms (Views: 71.7ms | ActiveRecord: 2.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 12:22:18 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 12:22:18 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name" for 127.0.0.1 at 2014-07-15 12:24:26 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name"} Rendered application/_sort_form.html.haml (0.9ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."first_name" ASC Rendered people/index.html.haml within layouts/application (18.4ms) Completed 200 OK in 11290ms (Views: 21.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 12:24:37 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 12:24:37 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name" for 127.0.0.1 at 2014-07-15 13:49:05 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name"} Rendered application/_sort_form.html.haml (1.6ms) Person Load (1.2ms) SELECT "people".* FROM "people" ORDER BY "people"."first_name" ASC Rendered people/index.html.haml within layouts/application (26.5ms) Completed 200 OK in 410774ms (Views: 29.4ms | ActiveRecord: 1.9ms) Started GET "/people?utf8=%E2%9C%93&sort_by=first_name" for 127.0.0.1 at 2014-07-15 13:55:56 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name"} Rendered application/_sort_form.html.haml (1.6ms) Person Load (1.2ms) SELECT "people".* FROM "people" ORDER BY "people"."first_name" ASC Rendered people/index.html.haml within layouts/application (33.6ms) Completed 200 OK in 2499ms (Views: 36.8ms | ActiveRecord: 1.7ms) Started GET "/people?utf8=%E2%9C%93&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-15 13:55:59 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (1.1ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (20.2ms) Completed 200 OK in 5531ms (Views: 22.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 13:56:04 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 13:56:04 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 13:56:13 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Completed in 98359ms Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 13:58:00 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (2.8ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (34.1ms) Completed 200 OK in 117ms (Views: 113.7ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 13:58:01 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 13:58:01 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-15 13:58:07 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.8ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (17.9ms) Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 13:58:07 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 13:58:07 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 13:58:10 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (1.0ms) Person Load (0.5ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (19.2ms) Completed 200 OK in 25ms (Views: 23.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 13:58:10 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 13:58:10 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 14:02:42 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (1.0ms) Person Load (0.6ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (33.2ms) Completed 200 OK in 63ms (Views: 59.3ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 14:02:42 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 14:02:42 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 14:03:30 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (0.8ms) Person Load (0.5ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (17.3ms) Completed 200 OK in 43ms (Views: 41.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 14:03:30 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 14:03:30 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 14:04:22 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (0.9ms) Person Load (0.5ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (23.5ms) Completed 200 OK in 35ms (Views: 33.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 14:04:22 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 14:04:23 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 14:10:33 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1 CACHE (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1 CACHE (0.0ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1 Rendered application/_sort_form.html.haml (1.3ms) Person Load (0.8ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (20.1ms) Completed 200 OK in 272038ms (Views: 46.6ms | ActiveRecord: 1.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 14:15:05 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 14:15:05 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 14:15:08 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Person Load (0.3ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1 Rendered application/_sort_form.html.haml (1.0ms) Person Load (0.7ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (21.4ms) Completed 200 OK in 88053ms (Views: 25.4ms | ActiveRecord: 1.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 14:16:36 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 14:16:36 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 14:16:51 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (2.5ms) Person Load (0.6ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (36.1ms) Completed 200 OK in 462036ms (Views: 102.5ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 14:24:33 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 14:24:33 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 14:24:43 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Completed in 125479ms Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 14:26:56 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Completed in 64901ms Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 14:28:14 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (2.7ms) Person Load (0.6ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (66.0ms) Completed 200 OK in 9117214ms (Views: 152.8ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 17:00:11 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 17:00:11 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 17:00:28 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.6ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (30.8ms) Completed 200 OK in 56ms (Views: 52.7ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 17:00:29 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 17:00:29 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-15 17:00:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (7.8ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (27.8ms) Completed 200 OK in 33ms (Views: 31.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 17:00:29 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 17:00:29 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+desc" for 127.0.0.1 at 2014-07-15 17:00:41 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name desc"} Rendered application/_sort_form.html.haml (1.0ms) Person Load (1.1ms) SELECT "people".* FROM "people" ORDER BY "people"."first_name" DESC Rendered people/index.html.haml within layouts/application (29.7ms) Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 17:00:41 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 17:00:41 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 17:00:48 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.8ms) Person Load (0.9ms) SELECT "people".* FROM "people" ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (21.5ms) Completed 200 OK in 27ms (Views: 25.2ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 17:00:48 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 17:00:48 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=emdail+desc" for 127.0.0.1 at 2014-07-15 17:23:38 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"emdail desc"} Rendered application/_sort_form.html.haml (1.0ms) Person Load (0.5ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (25.1ms) Completed 200 OK in 30ms (Views: 28.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 17:23:38 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 17:23:38 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+desc" for 127.0.0.1 at 2014-07-15 17:23:49 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.0ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (18.2ms) Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 17:23:49 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 17:23:49 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+descXXX" for 127.0.0.1 at 2014-07-15 17:24:01 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email descXXX"} Completed 500 Internal Server Error in 1ms ArgumentError (Direction should be :asc or :desc): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.1ms) Started GET "/people?sort_by=email%2Binvalid_direction" for 127.0.0.1 at 2014-07-15 20:44:44 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"email+invalid_direction"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (2.4ms) Person Load (0.9ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (32.8ms) Completed 200 OK in 38ms (Views: 36.3ms | ActiveRecord: 0.9ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 20:44:44 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 20:44:44 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email+descXXX" for 127.0.0.1 at 2014-07-15 20:45:00 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email descXXX"} Completed 500 Internal Server Error in 1ms ArgumentError (Direction should be :asc or :desc): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.7ms) Started GET "/people?sort_by=email+descXXX" for 127.0.0.1 at 2014-07-15 20:45:09 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"email descXXX"} Completed 500 Internal Server Error in 1ms ArgumentError (Direction should be :asc or :desc): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.8ms) Started GET "/people?sort_by=email+descXXX" for 127.0.0.1 at 2014-07-15 20:50:31 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"email descXXX"} Completed 500 Internal Server Error in 1ms ArgumentError (Direction should be :asc or :desc): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.6ms) Started GET "/people?sort_by=email+descXXX" for 127.0.0.1 at 2014-07-15 20:50:51 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"email descXXX"} Rendered application/_sort_form.html.haml (2.2ms) Rendered application/_search_form.html.haml (3.0ms) Person Load (0.8ms) SELECT "people".* FROM "people" ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (46.0ms) Completed 200 OK in 110ms (Views: 105.7ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 20:50:51 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 20:50:51 -0400 Started GET "/people?sort_by=email+desc" for 127.0.0.1 at 2014-07-15 20:50:59 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (20.0ms) Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 20:50:59 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 20:50:59 -0400 Started GET "/people?sort_by=email+ng" for 127.0.0.1 at 2014-07-15 20:51:13 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"email ng"} Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (0.9ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (20.7ms) Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.6ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 20:51:13 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 20:51:13 -0400 Started GET "/people?sort_by=email+ng" for 127.0.0.1 at 2014-07-15 20:53:11 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"email ng"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (18.3ms) Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 20:53:11 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 20:53:11 -0400 Started GET "/people?sort_by=email+ng" for 127.0.0.1 at 2014-07-15 20:53:37 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"email ng"} Rendered application/_sort_form.html.haml (37.5ms) Rendered people/index.html.haml within layouts/application (48.7ms) Completed 500 Internal Server Error in 1841327ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 3: 4:   5: = label_tag :sort_by 6: = select_tag :sort_by, 7: options_for_select(opts, params[:sort_by]), :onchange => "submit()" app/views/application/_sort_form.html.haml:6:in `block in _app_views_application__sort_form_html_haml__3733507994762927000_2156410340' app/views/application/_sort_form.html.haml:1:in `_app_views_application__sort_form_html_haml__3733507994762927000_2156410340' app/views/people/index.html.haml:7:in `_app_views_people_index_html_haml__3127411299412402708_2159072860' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (20.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (29.8ms) Started GET "/people?sort_by=email+ng" for 127.0.0.1 at 2014-07-15 21:24:32 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"email ng"} Rendered application/_sort_form.html.haml (1.8ms) Rendered application/_search_form.html.haml (3.3ms) Person Load (1.2ms) SELECT "people".* FROM "people" ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (31.7ms) Completed 200 OK in 415870ms (Views: 44.7ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 21:31:28 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 21:31:28 -0400 Started GET "/people?sort_by=email+ng" for 127.0.0.1 at 2014-07-15 21:51:55 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"email ng"} Rendered application/_sort_form.html.haml (3.3ms) Rendered application/_search_form.html.haml (2.8ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (35.7ms) Completed 200 OK in 96ms (Views: 92.0ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 21:51:55 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 21:51:55 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 21:52:03 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (24.9ms) Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 21:52:03 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 21:52:03 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-15 21:53:24 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (3.6ms) Rendered application/_search_form.html.haml (3.1ms) Person Load (1.1ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (54.0ms) Completed 200 OK in 4481347ms (Views: 142.4ms | ActiveRecord: 1.4ms) Started GET "/people?utf8=%E2%9C%93&search_for=Something" for 127.0.0.1 at 2014-07-15 23:08:05 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something"} Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (1.0ms) Person Load (1.3ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (27.0ms) Completed 200 OK in 2402ms (Views: 29.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:08:08 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:08:08 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Something" for 127.0.0.1 at 2014-07-15 23:16:30 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something"} Rendered application/_sort_form.html.haml (2.9ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (1.1ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (24.3ms) Completed 200 OK in 16161ms (Views: 28.3ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:16:46 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:16:46 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Something" for 127.0.0.1 at 2014-07-15 23:17:14 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something"} Rendered application/_sort_form.html.haml (2.6ms) Rendered application/_search_form.html.haml (2.7ms) Person Load (0.8ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (40.2ms) Completed 200 OK in 74ms (Views: 69.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:17:14 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:17:14 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Something" for 127.0.0.1 at 2014-07-15 23:17:41 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (1.8ms) Person Load (1.1ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (23.7ms) Completed 200 OK in 29ms (Views: 27.2ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:17:41 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:17:41 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:18:17 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (20.0ms) Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:18:17 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:18:17 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:29:43 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (2.6ms) Person Load (1.2ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (26.3ms) Completed 200 OK in 90ms (Views: 87.6ms | ActiveRecord: 1.2ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:29:43 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:29:43 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-15 23:29:43 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:29:47 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (1.1ms) Person Load (1.3ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (29.5ms) Completed 200 OK in 36ms (Views: 33.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:29:47 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:29:47 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:29:56 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.0ms) Person Load (1.4ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (28.1ms) Completed 200 OK in 34ms (Views: 31.6ms | ActiveRecord: 1.4ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-15 23:29:56 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:29:56 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:29:56 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:29:58 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (1.2ms) Person Load (0.8ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (26.5ms) Completed 200 OK in 32ms (Views: 30.4ms | ActiveRecord: 0.8ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-15 23:29:58 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:29:58 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:29:58 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:36:47 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (22.8ms) Completed 500 Internal Server Error in 110ms ActionView::Template::Error (couldn't find file 'jquery' (in /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/assets/javascripts/application.js:13)): 3: 4: Dummy 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4568512504703265564_2176666060' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.0ms) Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:37:01 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (0.8ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (20.6ms) Completed 500 Internal Server Error in 30ms ActionView::Template::Error (couldn't find file 'jquery' (in /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/assets/javascripts/application.js:13)): 3: 4: Dummy 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4568512504703265564_2176666060' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.5ms) Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:37:24 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (1.1ms) Person Load (1.1ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (21.1ms) Completed 500 Internal Server Error in 32ms ActionView::Template::Error (couldn't find file 'jquery' (in /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/assets/javascripts/application.js:13)): 3: 4: Dummy 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4568512504703265564_2176666060' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.9ms) Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:38:51 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (22.0ms) Completed 500 Internal Server Error in 41ms ActionView::Template::Error (couldn't find file 'jquery' (in /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/assets/javascripts/application.js:13)): 3: 4: Dummy 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4568512504703265564_2176666060' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.5ms) Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:39:57 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.9ms) Person Load (1.1ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (21.6ms) Completed 500 Internal Server Error in 32ms ActionView::Template::Error (couldn't find file 'jquery' (in /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/assets/javascripts/application.js:13)): 3: 4: Dummy 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4568512504703265564_2176666060' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.1ms) Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:44:48 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (1.0ms) Person Load (1.2ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (20.7ms) Completed 500 Internal Server Error in 30ms ActionView::Template::Error (couldn't find file 'jquery' (in /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/assets/javascripts/application.js:14)): 3: 4: Dummy 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4568512504703265564_2176666060' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.5ms) Started GET "/people?utf8=%E2%9C%93&search_for=Something+else" for 127.0.0.1 at 2014-07-15 23:44:49 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Something else"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (22.9ms) Completed 500 Internal Server Error in 33ms ActionView::Template::Error (couldn't find file 'jquery' (in /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/assets/javascripts/application.js:14)): 3: 4: Dummy 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4568512504703265564_2176666060' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-15 23:44:59 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (17.7ms) Completed 500 Internal Server Error in 27ms ActionView::Template::Error (couldn't find file 'jquery' (in /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/assets/javascripts/application.js:14)): 3: 4: Dummy 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4568512504703265564_2176666060' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-15 23:45:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (2.2ms) Person Load (1.1ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (22.2ms) Completed 500 Internal Server Error in 32ms ActionView::Template::Error (couldn't find file 'jquery' (in /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/assets/javascripts/application.js:14)): 3: 4: Dummy 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> 7: <%= csrf_meta_tags %> 8: 9: app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___4568512504703265564_2176666060' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-15 23:45:18 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.3ms) Rendered application/_search_form.html.haml (3.4ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (35.2ms) Completed 200 OK in 108ms (Views: 103.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:45:18 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-15 23:45:18 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-15 23:45:18 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:45:18 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Seal" for 127.0.0.1 at 2014-07-15 23:46:28 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Seal"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (20.5ms) Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:46:28 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-15 23:46:28 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:46:28 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=Seal" for 127.0.0.1 at 2014-07-15 23:46:37 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"Seal"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (19.2ms) Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:46:37 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:46:37 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-15 23:46:37 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=sss" for 127.0.0.1 at 2014-07-15 23:46:41 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"sss"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (19.4ms) Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-15 23:46:41 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-15 23:46:41 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-15 23:46:41 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=sss" for 127.0.0.1 at 2014-07-16 15:25:11 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"sss"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.8ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (27.2ms) Completed 200 OK in 105ms (Views: 100.7ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 15:25:11 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 15:25:11 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 15:25:11 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=sss" for 127.0.0.1 at 2014-07-16 15:26:14 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"sss"} Rendered application/_sort_form.html.haml (2.2ms) Rendered application/_search_form.html.haml (3.7ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%sss%' or last_name like '%sss%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (16.0ms) Completed 200 OK in 129ms (Views: 126.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 15:26:14 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 15:26:14 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=" for 127.0.0.1 at 2014-07-16 15:52:33 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (23.6ms) Completed 200 OK in 31ms (Views: 26.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 15:52:33 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 15:52:33 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=first_name+desc" for 127.0.0.1 at 2014-07-16 15:53:05 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"first_name desc"} Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (1.0ms) Person Load (1.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."first_name" DESC Rendered people/index.html.haml within layouts/application (24.1ms) Completed 200 OK in 30ms (Views: 27.5ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 15:53:05 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 15:53:05 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=co" for 127.0.0.1 at 2014-07-16 15:53:11 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"co"} Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%co%' or last_name like '%co%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (6.4ms) Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 15:53:11 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 15:53:11 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=co" for 127.0.0.1 at 2014-07-16 16:15:49 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"co"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%co%' or last_name like '%co%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (8.7ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 16:15:49 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 16:15:49 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=" for 127.0.0.1 at 2014-07-16 16:15:50 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>""} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (26.4ms) Completed 200 OK in 34ms (Views: 32.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 16:15:50 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 16:15:50 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-16 16:15:54 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (1.0ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (25.7ms) Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 16:15:55 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 16:15:55 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=am" for 127.0.0.1 at 2014-07-16 16:16:12 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"am"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%am%' or last_name like '%am%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (5.7ms) Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 16:16:12 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 16:16:12 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=am" for 127.0.0.1 at 2014-07-16 16:20:45 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"am"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%am%' or last_name like '%am%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (8.5ms) Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.2ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:45 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:45 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 16:20:45 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:45 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=last_name&search_for=" for 127.0.0.1 at 2014-07-16 16:20:49 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"last_name", "search_for"=>""} Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (21.8ms) Completed 200 OK in 27ms (Views: 25.2ms | ActiveRecord: 0.8ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:49 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:49 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:49 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 16:20:49 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-16 16:20:54 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.9ms) Person Load (1.0ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (24.8ms) Completed 200 OK in 30ms (Views: 28.3ms | ActiveRecord: 1.0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:54 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:54 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:54 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 16:20:54 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email&search_for=ak" for 127.0.0.1 at 2014-07-16 16:20:58 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email", "search_for"=>"ak"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%ak%' or last_name like '%ak%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (5.4ms) Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:58 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:58 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 16:20:58 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 16:20:58 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email&search_for=" for 127.0.0.1 at 2014-07-16 16:21:01 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email", "search_for"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (19.6ms) Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.8ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 16:21:01 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 16:21:01 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 16:21:01 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 16:21:01 -0400 Started GET "/people?utf8=%E2%9C%93&sort_by=email&search_for=c" for 127.0.0.1 at 2014-07-16 16:21:10 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "sort_by"=>"email", "search_for"=>"c"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%c%' or last_name like '%c%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (11.6ms) Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.5ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 16:21:10 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 16:21:10 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 16:21:10 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 16:21:10 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=c&sort_by=last_name" for 127.0.0.1 at 2014-07-16 18:51:16 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"c", "sort_by"=>"last_name"} Rendered application/_sort_form.html.haml (5.1ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%c%' or last_name like '%c%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (16.6ms) Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.5ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 18:51:16 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 18:51:16 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 18:51:16 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 18:51:16 -0400 Started POST "/people?method=get" for 127.0.0.1 at 2014-07-16 18:51:23 -0400 AbstractController::ActionNotFound (The action 'create' could not be found for PeopleController): actionpack (4.1.4) lib/abstract_controller/base.rb:131:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:35:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.5ms) Started GET "/people?utf8=%E2%9C%93&search_for=c&sort_by=last_name" for 127.0.0.1 at 2014-07-16 18:57:25 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"c", "sort_by"=>"last_name"} Rendered application/_sort_form.html.haml (13957.0ms) Rendered application/_search_form.html.haml (2.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%c%' or last_name like '%c%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (13977.8ms) Completed 200 OK in 13985ms (Views: 13983.7ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 18:57:39 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 18:57:39 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 18:57:39 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 18:57:39 -0400 Started GET "/people?sort_by=last_name&search_for=c" for 127.0.0.1 at 2014-07-16 18:57:53 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"c"} Rendered application/_sort_form.html.haml (8769224.0ms) Rendered application/_search_form.html.haml (3.4ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%c%' or last_name like '%c%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (8769242.9ms) Completed 200 OK in 8769259ms (Views: 8769256.5ms | ActiveRecord: 0.9ms) Started GET "/people?utf8=%E2%9C%93&search_for=c&sort_by=last_name" for 127.0.0.1 at 2014-07-16 21:24:02 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"c", "sort_by"=>"last_name"} Rendered application/_sort_form.html.haml (2.7ms) Rendered application/_search_form.html.haml (3.0ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%c%' or last_name like '%c%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (25.3ms) Completed 200 OK in 31ms (Views: 29.3ms | ActiveRecord: 0.7ms) Started GET "/people?search_for=c&sort_by=email" for 127.0.0.1 at 2014-07-16 21:24:02 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"c", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%c%' or last_name like '%c%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (12.9ms) Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.8ms) Started GET "/people?search_for=c&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-16 21:24:02 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"c", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%c%' or last_name like '%c%') ORDER BY "people"."updated_at" DESC Rendered people/index.html.haml within layouts/application (12.0ms) Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.5ms) Started GET "/people?search_for=c&sort_by=first_name" for 127.0.0.1 at 2014-07-16 21:24:02 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"c", "sort_by"=>"first_name"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%c%' or last_name like '%c%') ORDER BY "people"."first_name" ASC Rendered people/index.html.haml within layouts/application (15.4ms) Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-16 21:24:02 -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.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (18.0ms) Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:03 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:03 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 21:24:03 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:03 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-16 21:24:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (1.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (26.4ms) Completed 200 OK in 34ms (Views: 31.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:07 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:07 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 21:24:07 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:07 -0400 Started GET "/people?search_for=&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-16 21:24:12 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (1.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (22.1ms) Completed 200 OK in 28ms (Views: 25.7ms | ActiveRecord: 1.1ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:12 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:12 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:12 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 21:24:12 -0400 Started GET "/people?search_for=&sort_by=email" for 127.0.0.1 at 2014-07-16 21:24:18 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (19.6ms) Completed 200 OK in 24ms (Views: 22.9ms | ActiveRecord: 0.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:18 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:18 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 21:24:18 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 21:24:18 -0400 Started GET "/people?search_for=&sort_by=email" for 127.0.0.1 at 2014-07-16 22:12:30 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (1.8ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (29.0ms) Completed 200 OK in 36ms (Views: 32.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 22:12:30 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 22:12:30 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 22:12:30 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 22:12:30 -0400 Started GET "/people?search_for=&sort_by=email" for 127.0.0.1 at 2014-07-16 22:41:47 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (25.1ms) Completed 200 OK in 33ms (Views: 29.1ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 22:41:47 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 22:41:47 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 22:41:47 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 22:41:47 -0400 Started GET "/people?search_for=&sort_by=email" for 127.0.0.1 at 2014-07-16 22:53:35 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (2.9ms) Person Load (1.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (45.5ms) Completed 200 OK in 36068ms (Views: 144.3ms | ActiveRecord: 1.5ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-16 22:54:12 -0400 Processing by PeopleController#sort_only_index as HTML Completed in 2892ms Started GET "/sort_people" for 127.0.0.1 at 2014-07-16 22:54:35 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#sort_only_index as HTML Completed 500 Internal Server Error in 3ms ArgumentError (Direction should be :asc or :desc): app/controllers/people_controller.rb:11:in `sort_only_index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.3ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-16 22:55:46 -0400 Processing by PeopleController#sort_only_index as HTML Completed 500 Internal Server Error in 3ms ArgumentError (Direction should be :asc or :desc): app/controllers/people_controller.rb:11:in `sort_only_index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.2ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-16 22:56:36 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (2.8ms) Person Load (1.0ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (47.8ms) Completed 200 OK in 5019ms (Views: 74.3ms | ActiveRecord: 1.4ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 22:56:41 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 22:56:41 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 22:56:41 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 22:56:41 -0400 Started GET "/sort_people?search_for=&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-16 23:15:40 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"search_for"=>"", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (1.1ms) Person Load (1.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" DESC Rendered people/sort_only_index.html.haml within layouts/application (42.6ms) Completed 200 OK in 52ms (Views: 46.4ms | ActiveRecord: 2.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 23:15:41 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 23:15:41 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 23:15:41 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 23:15:41 -0400 Started GET "/sort_people?search_for=&sort_by=last_name+desc&filter_by=Managers" for 127.0.0.1 at 2014-07-16 23:15:56 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"search_for"=>"", "sort_by"=>"last_name desc", "filter_by"=>"Managers"} Rendered application/_sort_form.html.haml (0.6ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" DESC Rendered people/sort_only_index.html.haml within layouts/application (18.7ms) Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 23:15:56 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 23:15:56 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 23:15:56 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 23:15:56 -0400 Started GET "/sort_people?search_for=&sort_by=email+desc" for 127.0.0.1 at 2014-07-16 23:16:05 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"search_for"=>"", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.6ms) Person Load (1.4ms) SELECT "people".* FROM "people" ORDER BY "people"."email" DESC Rendered people/sort_only_index.html.haml within layouts/application (26.0ms) Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 1.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 23:16:05 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 23:16:05 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 23:16:05 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 23:16:05 -0400 Started GET "/people?search_for=&sort_by=email" for 127.0.0.1 at 2014-07-16 23:37:22 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (2.1ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (34.5ms) Completed 200 OK in 41ms (Views: 37.4ms | ActiveRecord: 1.3ms) Started GET "/people?sort_by=last_name+desc&search_for=XOSMSOSM" for 127.0.0.1 at 2014-07-16 23:37:28 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc", "search_for"=>"XOSMSOSM"} 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 '%XOSMSOSM%' or last_name like '%XOSMSOSM%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (4.3ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 23:37:28 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 23:37:28 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 23:37:28 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 23:37:28 -0400 Started GET "/people?sort_by=last_name+desc&search_for=XOSMSOSM&huh=whaaaaa" for 127.0.0.1 at 2014-07-16 23:53:18 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc", "search_for"=>"XOSMSOSM", "huh"=>"whaaaaa"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%XOSMSOSM%' or last_name like '%XOSMSOSM%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (5.1ms) Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.2ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 23:53:18 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 23:53:18 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 23:53:18 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 23:53:18 -0400 Started GET "/people?search_for=XOSMSOSM&sort_by=email" for 127.0.0.1 at 2014-07-16 23:53:23 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"XOSMSOSM", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (1.0ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%XOSMSOSM%' or last_name like '%XOSMSOSM%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (6.3ms) Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.3ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-16 23:53:23 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-16 23:53:23 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-16 23:53:23 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-16 23:53:23 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 17:04:49 -0400 ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (11.1ms) Completed 500 Internal Server Error in 20ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (23.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (40.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:05:30 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (1.8ms) Person Load (63.0ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (88.7ms) Completed 200 OK in 161ms (Views: 97.2ms | ActiveRecord: 63.0ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 17:05:31 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 17:05:31 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 17:05:31 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 17:05:31 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 17:05:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (5.2ms) Completed 500 Internal Server Error in 8ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:4: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:4: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:06:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.3ms) Completed 500 Internal Server Error in 8ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:4: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:4: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:07:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.8ms) Completed 500 Internal Server Error in 8ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:09:14 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Completed 500 Internal Server Error in 7ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:09:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.5ms) Completed 500 Internal Server Error in 8ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:09:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.5ms) Completed 500 Internal Server Error in 7ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:09:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.1ms) Completed 500 Internal Server Error in 7ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:09:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.3ms) Completed 500 Internal Server Error in 7ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:09:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.2ms) Completed 500 Internal Server Error in 7ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:09:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.1ms) Completed 500 Internal Server Error in 6ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:09:39 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.5ms) Completed 500 Internal Server Error in 7ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.6ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:11:38 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (4.7ms) Completed 500 Internal Server Error in 7ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:5: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:5: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:12:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (2.1ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (20.8ms) Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 17:12:19 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 17:12:19 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 17:12:19 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 17:12:19 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 17:12:36 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (1.4ms) Rendered people/index.html.haml within layouts/application (4.4ms) Completed 500 Internal Server Error in 7ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:11: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:11: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:13:08 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (1.3ms) Rendered people/index.html.haml within layouts/application (4.0ms) Completed 500 Internal Server Error in 6ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:11: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:11: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.8ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:14:26 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.4ms) Completed 500 Internal Server Error in 8ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:5: syntax error, unexpected keyword_ensure, expecting end-of-input ...:Util.html_safe(_erbout);ensure;@haml_buffer = @haml_buffer.... ... ^): app/views/application/_search_form.html.haml:5: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:15:00 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (1.5ms) Rendered people/index.html.haml within layouts/application (4.3ms) Completed 500 Internal Server Error in 7ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:16:06 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (1.7ms) Rendered people/index.html.haml within layouts/application (4.7ms) Completed 500 Internal Server Error in 8ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:6: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.5ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:16:46 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (2.8ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (21.3ms) Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 17:16:46 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 17:16:46 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 17:16:46 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 17:16:46 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 17:22:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Person Load (1.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered application/_search_form.html.haml (24.4ms) Rendered people/index.html.haml within layouts/application (27.9ms) Completed 500 Internal Server Error in 31ms ActionView::Template::Error (undefined local variable or method `search' for #<#:0x0000010444dcc0>): 1: =form_tag(request.path, request.query_parameters.merge(id: search-form)) do 2: =hidden_field_tag(:sort_by, params[:sort_by]) 3: =text_field_tag :search_for, params[:search_for], :placeholder => "Search" 4: %button#submit-search{:type => "submit"}Find app/views/application/_search_form.html.haml:1:in `_app_views_application__search_form_html_haml___3089227442099839571_2183151020' app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 17:22:13 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (3.4ms) Person Load (1.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (27.3ms) Completed 200 OK in 33ms (Views: 31.4ms | ActiveRecord: 1.1ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 17:22:13 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 17:22:13 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 17:22:13 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 17:22:13 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 17:24:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (2.4ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (20.8ms) Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 17:24:28 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 17:24:28 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 17:24:28 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 17:24:28 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 17:29:57 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (20.6ms) Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 17:29:57 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 17:29:57 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 17:29:57 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 17:29:57 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 18:33:44 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.4ms) Rendered application/_search_form.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (7.0ms) Completed 500 Internal Server Error in 10ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:3: syntax error, unexpected ')', expecting => ...path: true, form_action_params), :method => :get ) do ... ^ /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:8: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_search_form.html.haml:3: syntax error, unexpected ')', expecting => app/views/application/_search_form.html.haml:8: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 18:35:15 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (6.0ms) Completed 500 Internal Server Error in 9ms ActionView::Template::Error (no implicit conversion of nil into Hash): 1: -url_for_opts = { only_path: true }.merge request.query_parameters.merge(id: "search-form").delete(:search_for) 2: /=binding.pry 3: =form_tag(url_for(url_for_opts), :method => :get ) do 4: /=hidden_field_tag(:sort_by, params[:sort_by]) app/views/application/_search_form.html.haml:1:in `merge' app/views/application/_search_form.html.haml:1:in `_app_views_application__search_form_html_haml___3089227442099839571_2162906760' app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.7ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 18:35:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (2.6ms) Rendered people/index.html.haml within layouts/application (7.1ms) Completed 500 Internal Server Error in 10ms ActionView::Template::Error (no implicit conversion of nil into Hash): 1: -url_for_opts = { only_path: true }.merge(request.query_parameters.merge(id: "search-form").delete(:search_for)) 2: /=binding.pry 3: =form_tag(url_for(url_for_opts), :method => :get ) do 4: /=hidden_field_tag(:sort_by, params[:sort_by]) app/views/application/_search_form.html.haml:1:in `merge' app/views/application/_search_form.html.haml:1:in `_app_views_application__search_form_html_haml___3089227442099839571_2185061560' app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.9ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 18:35:53 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (2.2ms) Rendered people/index.html.haml within layouts/application (6.2ms) Completed 500 Internal Server Error in 9ms ActionView::Template::Error (no implicit conversion of nil into Hash): 1: -url_for_opts = { :only_path => true }.merge(request.query_parameters.merge(id: "search-form").delete(:search_for)) 2: /=binding.pry 3: =form_tag(url_for(url_for_opts), :method => :get ) do 4: /=hidden_field_tag(:sort_by, params[:sort_by]) app/views/application/_search_form.html.haml:1:in `merge' app/views/application/_search_form.html.haml:1:in `_app_views_application__search_form_html_haml___3089227442099839571_2184212400' app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 18:37:01 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (2.5ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (21.7ms) Completed 200 OK in 27ms (Views: 25.6ms | ActiveRecord: 0.8ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 18:37:01 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 18:37:01 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 18:37:01 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 18:37:01 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 18:37:09 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (2.1ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (21.3ms) Completed 200 OK in 27ms (Views: 24.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 18:37:09 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 18:37:09 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 18:37:09 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 18:37:09 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 21:13:05 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.8ms) Rendered people/index.html.haml within layouts/application (6.0ms) Completed 500 Internal Server Error in 9ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:1: syntax error, unexpected ')', expecting '}' ...eters.merge(id: "search-form")).delete(:search_for} #.merge() ... ^ /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:1: syntax error, unexpected '}', expecting ')' ...rch-form")).delete(:search_for} #.merge() ... ^): app/views/application/_search_form.html.haml:1: syntax error, unexpected ')', expecting '}' app/views/application/_search_form.html.haml:1: syntax error, unexpected '}', expecting ')' app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 21:14:11 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (2.0ms) Rendered people/index.html.haml within layouts/application (5.7ms) Completed 500 Internal Server Error in 9ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:1: syntax error, unexpected ')', expecting '}' ...eters.merge(id: "search-form")).delete(:search_for)} #.merge... ... ^ /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:1: syntax error, unexpected '}', expecting keyword_end ...ch-form")).delete(:search_for)} #.merge() ... ^): app/views/application/_search_form.html.haml:1: syntax error, unexpected ')', expecting '}' app/views/application/_search_form.html.haml:1: syntax error, unexpected '}', expecting keyword_end app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 21:14:32 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (22.6ms) Completed 200 OK in 28ms (Views: 26.1ms | ActiveRecord: 0.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:14:32 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:14:32 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:14:32 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:14:32 -0400 Started GET "/people&myparam=val1" for 127.0.0.1 at 2014-07-17 21:14:48 -0400 ActionController::RoutingError (No route matches [GET] "/people&myparam=val1"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (33.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.6ms) Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:14:56 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (2.0ms) Rendered application/_search_form.html.haml (1.0ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (21.8ms) Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:14:56 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:14:56 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:14:56 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:14:56 -0400 Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:16:10 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (1382697.2ms) Person Load (1.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (1382721.7ms) Completed 200 OK in 1382728ms (Views: 1382725.5ms | ActiveRecord: 1.2ms) Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:39:13 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (2831.9ms) Person Load (1.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (2857.9ms) Completed 200 OK in 2863ms (Views: 2861.1ms | ActiveRecord: 1.3ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:39:16 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:39:16 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:39:16 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:39:16 -0400 Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:39:28 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (2.5ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (22.3ms) Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:39:29 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:39:29 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:39:29 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:39:29 -0400 Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:40:25 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (1.6ms) Rendered people/index.html.haml within layouts/application (5.1ms) Completed 500 Internal Server Error in 8ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_search_form.html.haml:1: syntax error, unexpected '}', expecting =>): app/views/application/_search_form.html.haml:1: syntax error, unexpected '}', expecting => app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml__383652493439859655_2157134920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.4ms) Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:40:51 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (22.5ms) Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:40:51 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:40:51 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:40:51 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:40:51 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=fa" for 127.0.0.1 at 2014-07-17 21:45:57 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"fa"} Rendered application/_sort_form.html.haml (1.9ms) Rendered application/_search_form.html.haml (3.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%fa%' or last_name like '%fa%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (10.6ms) Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.4ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:45:57 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:45:57 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:45:57 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:45:57 -0400 Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:46:08 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (1.4ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (22.0ms) Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:46:08 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:46:08 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:46:08 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:46:08 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=fa" for 127.0.0.1 at 2014-07-17 21:46:14 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"fa"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%fa%' or last_name like '%fa%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (5.9ms) Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.3ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:46:14 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:46:14 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:46:14 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:46:14 -0400 Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:46:28 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (1.0ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (22.7ms) Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:46:28 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:46:28 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:46:28 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:46:28 -0400 Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:53:43 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (3.7ms) Rendered application/_search_form.html.haml (2.7ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (100.8ms) Completed 500 Internal Server Error in 111ms ActionView::Template::Error (undefined method `edit_person_path' for #<#:0x00000106b62f18>): 21: %td= person.email 22: %td= person.age 23: %td= person.updated_at 24: %td= link_to "Edit", edit_person_path(person) app/views/people/index.html.haml:24:in `block in _app_views_people_index_html_haml___1189431512824985731_2203621140' app/views/people/index.html.haml:17:in `_app_views_people_index_html_haml___1189431512824985731_2203621140' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (14.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (23.8ms) Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:54:11 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (17.2ms) Completed 200 OK in 38ms (Views: 36.6ms | ActiveRecord: 0.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:54:11 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:54:11 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:54:11 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:54:11 -0400 Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:54:40 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (2.6ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (16.9ms) Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.6ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:54:40 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:54:40 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:54:40 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:54:40 -0400 Started GET "/people?utf8=%E2%9C%93&search_for=ma" for 127.0.0.1 at 2014-07-17 21:54:49 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "search_for"=>"ma"} Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%ma%' or last_name like '%ma%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (8.2ms) Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:54:49 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:54:49 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:54:49 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:54:49 -0400 Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:58:53 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (2.7ms) Rendered application/_search_form.html.haml (1.3ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (16.4ms) Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:58:53 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:58:53 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:58:53 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:58:53 -0400 Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:59:27 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (2.4ms) Completed 500 Internal Server Error in 5ms SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_sort_form.html.haml:2: syntax error, unexpected '}', expecting => haml_temp = form_tag({form_action_params}, :method => "post" ) do ^ /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_sort_form.html.haml:2: syntax error, unexpected ')', expecting keyword_end haml_temp = form_tag({form_action_params}, :method => "post" ) do ^ /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views/application/_sort_form.html.haml:7: syntax error, unexpected keyword_ensure, expecting end-of-input): app/views/application/_sort_form.html.haml:2: syntax error, unexpected '}', expecting => app/views/application/_sort_form.html.haml:2: syntax error, unexpected ')', expecting keyword_end app/views/application/_sort_form.html.haml:7: syntax error, unexpected keyword_ensure, expecting end-of-input app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml___1189431512824985731_2180861380' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms) Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 21:59:43 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (2.5ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (15.3ms) Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.6ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 21:59:43 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 21:59:43 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 21:59:43 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 21:59:43 -0400 Started GET "/people?myparam=val1" for 127.0.0.1 at 2014-07-17 22:02:52 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1"} Rendered application/_sort_form.html.haml (2.3ms) Rendered application/_search_form.html.haml (3.0ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (23.1ms) Completed 200 OK in 28ms (Views: 26.2ms | ActiveRecord: 0.9ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:02:52 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:02:52 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:02:52 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:02:52 -0400 Started POST "/people?id=search-form&myparam=val1" for 127.0.0.1 at 2014-07-17 22:03:03 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"cEdSC8ivCWJqbfLSUNc6qsKevIfL93HR1wbtS1JB0NY=", "search_for"=>"d", "id"=>"search-form", "myparam"=>"val1"} Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (1.0ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (8.8ms) Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.4ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:03:03 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:03:03 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:03:03 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:03:03 -0400 Started POST "/people?id=search-form&myparam=val1" for 127.0.0.1 at 2014-07-17 22:16:27 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"cEdSC8ivCWJqbfLSUNc6qsKevIfL93HR1wbtS1JB0NY=", "search_for"=>"d", "id"=>"search-form", "myparam"=>"val1"} Rendered application/_sort_form.html.haml (3.0ms) Rendered application/_search_form.html.haml (3.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (17.2ms) Completed 200 OK in 24ms (Views: 20.2ms | ActiveRecord: 0.9ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:16:27 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:16:27 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:16:27 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:16:27 -0400 Started GET "/people?search_for=d&sort_by=email" for 127.0.0.1 at 2014-07-17 22:16:31 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"d", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (1.5ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (10.3ms) Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:16:31 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:16:31 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:16:31 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:16:31 -0400 Started GET "/people?search_for=d&sort_by=email+desc" for 127.0.0.1 at 2014-07-17 22:16:34 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"d", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (2.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (11.2ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:16:35 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:16:35 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:16:35 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:16:35 -0400 Started POST "/people?id=search-form&sort_by=email+desc" for 127.0.0.1 at 2014-07-17 22:19:26 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"cEdSC8ivCWJqbfLSUNc6qsKevIfL93HR1wbtS1JB0NY=", "search_for"=>"d", "id"=>"search-form", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (1.6ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (9.3ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.4ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:19:26 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:19:26 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:19:26 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:19:26 -0400 Started GET "/people?id=search-form&sort_by=email+desc" for 127.0.0.1 at 2014-07-17 22:20:16 -0400 Processing by PeopleController#index as HTML Parameters: {"id"=>"search-form", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (1.0ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (15.5ms) Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:20:16 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:16 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:16 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:16 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 22:20:19 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (20.4ms) Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:20:19 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:19 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:19 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:19 -0400 Started GET "/people?sort_by=last_name&search_for=de" for 127.0.0.1 at 2014-07-17 22:20:25 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"de"} 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 '%de%' or last_name like '%de%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (4.7ms) Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:20:25 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:25 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:25 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:25 -0400 Started GET "/people?sort_by=last_name&search_for=de" for 127.0.0.1 at 2014-07-17 22:20:30 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"de"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%de%' or last_name like '%de%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (7.0ms) Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.3ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:30 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:30 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:20:30 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:20:30 -0400 Started GET "/people?sort_by=last_name&search_for=de" for 127.0.0.1 at 2014-07-17 22:21:02 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"de"} 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 '%de%' or last_name like '%de%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (8.6ms) Completed 200 OK in 16ms (Views: 12.5ms | ActiveRecord: 0.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:02 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:02 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:21:02 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:02 -0400 Started GET "/people?sort_by=last_name&search_for=de" for 127.0.0.1 at 2014-07-17 22:21:06 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"de"} 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 '%de%' or last_name like '%de%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (5.3ms) Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.3ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:06 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:06 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:06 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:21:06 -0400 Started GET "/people?sort_by=last_name&search_for=de" for 127.0.0.1 at 2014-07-17 22:21:09 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"de"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%de%' or last_name like '%de%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (5.9ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.3ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:09 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:09 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:09 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:21:09 -0400 Started GET "/people?sort_by=last_name&search_for=de" for 127.0.0.1 at 2014-07-17 22:21:16 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"de"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%de%' or last_name like '%de%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (6.2ms) Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:21:16 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:16 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:17 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:17 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:21:44 -0400 Started GET "/assets/sql_search_n_sort.js" for 127.0.0.1 at 2014-07-17 22:22:22 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:23:10 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/" for 127.0.0.1 at 2014-07-17 22:23:29 -0400 Processing by Rails::WelcomeController#index as HTML Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (1.7ms) Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 22:23:33 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (2.8ms) Rendered application/_search_form.html.haml (1.8ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (30.6ms) Completed 200 OK in 83ms (Views: 77.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:23:34 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:23:34 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:23:34 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:23:34 -0400 Started GET "/people?sort_by=last_name&search_for=s" for 127.0.0.1 at 2014-07-17 22:23:41 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"s"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%s%' or last_name like '%s%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (9.8ms) Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:23:41 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:23:41 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:23:41 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:23:41 -0400 Started GET "/people?sort_by=last_name&search_for=s" for 127.0.0.1 at 2014-07-17 22:23:42 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"s"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%s%' or last_name like '%s%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (11.1ms) Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.6ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:23:42 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:23:42 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:23:42 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:23:42 -0400 Started GET "/people?sort_by=last_name&search_for=s" for 127.0.0.1 at 2014-07-17 22:24:15 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"s"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%s%' or last_name like '%s%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (10.5ms) Completed 200 OK in 91ms (Views: 89.1ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:24:15 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:24:16 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:24:16 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:24:16 -0400 Started GET "/people?sort_by=last_name&search_for=s" for 127.0.0.1 at 2014-07-17 22:24:25 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"s"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%s%' or last_name like '%s%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (9.7ms) Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:24:25 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:24:25 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:24:25 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:24:25 -0400 Started GET "/people?sort_by=last_name&search_for=s" for 127.0.0.1 at 2014-07-17 22:25:47 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"s"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%s%' or last_name like '%s%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (11.2ms) Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:25:47 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:25:47 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:25:47 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:25:47 -0400 Started GET "/people?sort_by=last_name&search_for=s" for 127.0.0.1 at 2014-07-17 22:26:31 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"s"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%s%' or last_name like '%s%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (8.9ms) Completed 200 OK in 28ms (Views: 26.8ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:26:31 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:31 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:31 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:31 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 22:26:37 -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.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (12.8ms) Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:26:37 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:37 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:37 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:37 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 22:26:37 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (1.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (17.2ms) Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 1.1ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:37 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:26:37 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:37 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:37 -0400 Started GET "/people?sort_by=last_name&search_for=s" for 127.0.0.1 at 2014-07-17 22:26:50 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"s"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%s%' or last_name like '%s%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (10.0ms) Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:26:50 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:50 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:50 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:50 -0400 Started GET "/people?sort_by=last_name&search_for=s" for 127.0.0.1 at 2014-07-17 22:26:51 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"s"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%s%' or last_name like '%s%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (9.1ms) Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.5ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:51 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:51 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:26:51 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:26:51 -0400 Started GET "/people?sort_by=last_name&search_for=" for 127.0.0.1 at 2014-07-17 22:27:06 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (12.9ms) Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:27:06 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:27:06 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:27:06 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:27:06 -0400 Started GET "/people?sort_by=last_name&search_for=" for 127.0.0.1 at 2014-07-17 22:28:21 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (14.3ms) Completed 200 OK in 44ms (Views: 42.2ms | ActiveRecord: 0.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:28:21 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:28:21 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:28:21 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:28:21 -0400 Started GET "/people?sort_by=last_name&search_for=dd" for 127.0.0.1 at 2014-07-17 22:28:27 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"dd"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%dd%' or last_name like '%dd%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (3.9ms) Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:28:27 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:28:27 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:28:27 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:28:27 -0400 Started GET "/people?sort_by=last_name&search_for=dd" for 127.0.0.1 at 2014-07-17 22:30:48 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"dd"} Rendered application/_sort_form.html.haml (1.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%dd%' or last_name like '%dd%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (12.1ms) Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.2ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:30:48 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:30:48 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:30:48 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:30:48 -0400 Started GET "/people?sort_by=last_name" for 127.0.0.1 at 2014-07-17 22:30:54 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (12.7ms) Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:30:54 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:30:54 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:30:54 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:30:54 -0400 Started GET "/people?sort_by=last_name&search_for=d" for 127.0.0.1 at 2014-07-17 22:30:59 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"d"} 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 '%d%' or last_name like '%d%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (7.5ms) Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.4ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:30:59 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:30:59 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:30:59 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:30:59 -0400 Started GET "/people?sort_by=last_name&search_for=d" for 127.0.0.1 at 2014-07-17 22:31:00 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"d"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (8.8ms) Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.4ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:31:00 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:31:00 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:31:00 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:31:00 -0400 Started GET "/people?sort_by=last_name&search_for=d" for 127.0.0.1 at 2014-07-17 22:31:45 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"d"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (8.6ms) Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.4ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:31:45 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:31:45 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:31:45 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:31:45 -0400 Started GET "/people?sort_by=last_name&search_for=d" for 127.0.0.1 at 2014-07-17 22:32:36 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"d"} Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (13.9ms) Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.4ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:32:36 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:32:36 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:32:36 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:32:36 -0400 Started GET "/people?sort_by=last_name&search_for=d" for 127.0.0.1 at 2014-07-17 22:40:29 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name", "search_for"=>"d"} Rendered application/_sort_form.html.haml (1.8ms) Rendered application/_search_form.html.haml (1.8ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (11.1ms) Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.6ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:29 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:29 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:29 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:40:29 -0400 Started GET "/people?search_for=d&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-17 22:40:38 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"d", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (9.8ms) Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:40:38 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:38 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:38 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:38 -0400 Started GET "/people?sort_by=last_name+desc&search_for=d" for 127.0.0.1 at 2014-07-17 22:40:48 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc", "search_for"=>"d"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (7.5ms) Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.5ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:48 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:48 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:40:48 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:48 -0400 Started GET "/people?sort_by=last_name+desc&search_for=" for 127.0.0.1 at 2014-07-17 22:40:50 -0400 Processing by PeopleController#index as HTML Parameters: {"sort_by"=>"last_name desc", "search_for"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (15.7ms) Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.8ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:50 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:50 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:40:50 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:40:50 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-17 22:50:40 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (8.7ms) Rendered application/_search_form.html.haml (2.9ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (30.4ms) Completed 200 OK in 53ms (Views: 48.7ms | ActiveRecord: 1.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:50:40 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:50:40 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:50:40 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:50:40 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-17 22:50:43 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"cEdSC8ivCWJqbfLSUNc6qsKevIfL93HR1wbtS1JB0NY=", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (15.3ms) Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.6ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:50:43 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:50:43 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:50:43 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-17 22:50:48 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"cEdSC8ivCWJqbfLSUNc6qsKevIfL93HR1wbtS1JB0NY=", "search_for"=>"la"} Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%la%' or last_name like '%la%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (6.5ms) Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:50:48 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:50:48 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:50:48 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:51:04 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:51:04 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:51:04 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:51:04 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-17 22:51:25 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"cEdSC8ivCWJqbfLSUNc6qsKevIfL93HR1wbtS1JB0NY=", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.9ms) Rendered application/_search_form.html.haml (1.3ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (17.7ms) Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.9ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:51:25 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:51:25 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:51:25 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:51:25 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-17 22:52:05 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"cEdSC8ivCWJqbfLSUNc6qsKevIfL93HR1wbtS1JB0NY=", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (2.5ms) Rendered application/_search_form.html.haml (2.4ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (22.7ms) Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:05 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:05 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:52:05 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:05 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-17 22:52:11 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"cEdSC8ivCWJqbfLSUNc6qsKevIfL93HR1wbtS1JB0NY=", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (14.1ms) Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:52:11 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:11 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:11 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:11 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-17 22:52:15 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"cEdSC8ivCWJqbfLSUNc6qsKevIfL93HR1wbtS1JB0NY=", "search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (2.0ms) Rendered application/_search_form.html.haml (1.1ms) Person Load (1.0ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (16.9ms) Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:52:15 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:15 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:15 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:15 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-17 22:52:27 -0400 Processing by PeopleController#index as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"cEdSC8ivCWJqbfLSUNc6qsKevIfL93HR1wbtS1JB0NY=", "sort_by"=>"email", "search_for"=>"da"} Rendered application/_sort_form.html.haml (2.3ms) Rendered application/_search_form.html.haml (0.9ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%da%' or last_name like '%da%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (8.0ms) Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 22:52:27 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:27 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:27 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 22:52:27 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-17 23:00:34 -0400 ActionController::RoutingError (No route matches [POST] "/people"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (26.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:00:39 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:00:39 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:00:39 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:00:39 -0400 Started POST "/people" for 127.0.0.1 at 2014-07-17 23:00:46 -0400 ActionController::RoutingError (No route matches [POST] "/people"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.6ms) Started GET "/" for 127.0.0.1 at 2014-07-17 23:00:56 -0400 Processing by Rails::WelcomeController#index as HTML Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (0.1ms) Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 23:01:00 -0400 Processing by PeopleController#index as HTML Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered application/_sort_form.html.haml (18.7ms) Rendered people/index.html.haml within layouts/application (20.0ms) Completed 500 Internal Server Error in 24ms ActionView::Template::Error (undefined local variable or method `hide_current_params' for #<#:0x0000010693b6b8>): 1: %form 2: = hide_current_params 3: = hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml___4568388837389922868_2202602900' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__3851746915161419748_2202438660' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 23:01:00 -0400 Processing by PeopleController#index as HTML Person Load (1.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered application/_sort_form.html.haml (15.6ms) Rendered people/index.html.haml within layouts/application (17.3ms) Completed 500 Internal Server Error in 20ms ActionView::Template::Error (undefined local variable or method `hide_current_params' for #<#:0x00000101eb8ed8>): 1: %form 2: = hide_current_params 3: = hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml___4568388837389922868_2202602900' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__3851746915161419748_2202438660' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-17 23:02:34 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (85242.1ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (85263.4ms) Completed 200 OK in 85273ms (Views: 85268.6ms | ActiveRecord: 1.4ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:03:59 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:03:59 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:03:59 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:03:59 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:04:22 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (11463.1ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (11478.6ms) Completed 200 OK in 11485ms (Views: 11482.8ms | ActiveRecord: 0.9ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:04:34 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:04:34 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:04:34 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:04:34 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:04:39 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (7858.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (7872.1ms) Completed 200 OK in 7877ms (Views: 7875.3ms | ActiveRecord: 0.8ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:04:47 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:04:47 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:04:47 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:04:47 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:05:02 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (48455.9ms) Rendered application/_search_form.html.haml (3.8ms) Person Load (1.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (48491.1ms) Completed 200 OK in 48568ms (Views: 48564.1ms | ActiveRecord: 1.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:05:50 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:05:50 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:05:50 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:05:50 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:05:54 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (16.9ms) Completed 200 OK in 24ms (Views: 20.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:05:54 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:05:54 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:05:54 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:05:54 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:08:53 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (2.4ms) Rendered people/index.html.haml within layouts/application (3.5ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (undefined method `html_safe' for #): 1: %form 2: = hide_current_params 3: = hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/helpers/sql_search_n_sort_helper.rb:7:in `hide_current_params' app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml___589180604802110736_2203617080' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__6794952516071783_2165678920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.2ms) Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:09:01 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (1.2ms) Rendered people/index.html.haml within layouts/application (2.4ms) Completed 500 Internal Server Error in 5ms ActionView::Template::Error (undefined method `html_safe' for #): 1: %form 2: = hide_current_params 3: = hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/helpers/sql_search_n_sort_helper.rb:7:in `hide_current_params' app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml___589180604802110736_2203617080' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__6794952516071783_2165678920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.8ms) Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:09:22 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (1.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (20.7ms) Completed 200 OK in 29ms (Views: 24.4ms | ActiveRecord: 1.7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:09:22 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:09:22 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:09:22 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:09:22 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:09:32 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (17.9ms) Completed 200 OK in 25ms (Views: 21.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:09:32 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:09:32 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:09:32 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:09:32 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:10:07 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (19.4ms) Completed 200 OK in 26ms (Views: 22.8ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:10:08 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:10:08 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:10:08 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:10:08 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:10:37 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (17.4ms) Completed 200 OK in 25ms (Views: 20.9ms | ActiveRecord: 1.1ms) Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:10:46 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (15.6ms) Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.8ms) Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:10:59 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (2.0ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (15.2ms) Completed 200 OK in 22ms (Views: 19.4ms | ActiveRecord: 0.7ms) Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:11:59 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (1.9ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (18.6ms) Completed 200 OK in 26ms (Views: 21.9ms | ActiveRecord: 1.1ms) Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:12:17 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (25.6ms) Completed 200 OK in 33ms (Views: 29.1ms | ActiveRecord: 1.1ms) Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:12:56 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (15.9ms) Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.7ms) Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:13:31 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (14.1ms) Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:13:31 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:31 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:31 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:31 -0400 Started GET "/people?myparam=val1&myparam2=defr&controller=people&action=index&sort_by=last_name&search_for=da" for 127.0.0.1 at 2014-07-17 23:13:39 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"last_name", "search_for"=>"da"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%da%' or last_name like '%da%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (5.6ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:13:39 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:39 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:39 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:39 -0400 Started GET "/people?myparam=val1&myparam2=defr&controller=people&action=index&sort_by=last_name&search_for=&search_for=" for 127.0.0.1 at 2014-07-17 23:13:42 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"last_name", "search_for"=>""} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (1.1ms) Person Load (1.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (17.2ms) Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 1.4ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:42 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:42 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:42 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:13:42 -0400 Started GET "/people?myparam=val1&myparam2=defr&controller=people&action=index&sort_by=last_name&search_for=&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-17 23:13:47 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"last_name desc", "search_for"=>""} Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.0ms) Person Load (1.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (17.1ms) Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 1.1ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:47 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:47 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:47 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:13:47 -0400 Started GET "/people?myparam=val1&myparam2=defr&controller=people&action=index&sort_by=last_name+desc&search_for=&search_for=da" for 127.0.0.1 at 2014-07-17 23:13:52 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"last_name desc", "search_for"=>"da"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%da%' or last_name like '%da%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (4.7ms) Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:13:52 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:52 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:52 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:13:52 -0400 Started GET "/people?myparam=val1&myparam2=defr&controller=people&action=index&sort_by=last_name+desc&search_for=&search_for=da" for 127.0.0.1 at 2014-07-17 23:14:32 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"last_name desc", "search_for"=>"da"} Rendered application/_sort_form.html.haml (6217.8ms) Rendered application/_search_form.html.haml (1874.1ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%da%' or last_name like '%da%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (8099.9ms) Completed 200 OK in 8107ms (Views: 8103.7ms | ActiveRecord: 0.8ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:14:40 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:14:40 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:14:40 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:14:40 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:14:50 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered application/_sort_form.html.haml (83980.5ms) Rendered application/_search_form.html.haml (1796.0ms) Rendered people/index.html.haml within layouts/application (85785.5ms) Completed 200 OK in 85791ms (Views: 85789.5ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:16:16 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:16 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:16 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:16 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:16:24 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (16.0ms) Completed 200 OK in 23ms (Views: 19.4ms | ActiveRecord: 1.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:16:24 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:24 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:24 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:24 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=de" for 127.0.0.1 at 2014-07-17 23:16:30 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"de"} 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 '%de%' or last_name like '%de%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (5.3ms) Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:16:30 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:30 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:30 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:30 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=de&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-17 23:16:40 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"de", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%de%' or last_name like '%de%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (7.1ms) Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.4ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:16:40 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:40 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:40 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:40 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=de&sort_by=last_name+desc&sort_by=email" for 127.0.0.1 at 2014-07-17 23:16:53 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"de", "sort_by"=>"email"} 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 '%de%' or last_name like '%de%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (6.0ms) Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:16:53 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:53 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:53 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:16:53 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=de&sort_by=last_name+desc&sort_by=email" for 127.0.0.1 at 2014-07-17 23:19:22 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"de", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.9ms) Person Load (0.6ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%de%' or last_name like '%de%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (14.7ms) Completed 200 OK in 24ms (Views: 19.4ms | ActiveRecord: 1.2ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:19:22 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:19:22 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:19:22 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:19:22 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=de&sort_by=last_name+desc&sort_by=email" for 127.0.0.1 at 2014-07-17 23:19:42 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"de", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (2.3ms) Rendered people/index.html.haml within layouts/application (3.5ms) Completed 500 Internal Server Error in 6ms ActionView::Template::Error (wrong number of arguments (1 for 0)): 1: %form 2: = hide_current_params.html_safe(:sort_by) 3: /= hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml___589180604802110736_2232499460' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__6794952516071783_2165678920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.0ms) Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:20:24 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (3.8ms) Rendered people/index.html.haml within layouts/application (11.1ms) Completed 500 Internal Server Error in 20ms ActionView::Template::Error (wrong number of arguments (1 for 0)): 1: %form 2: = hide_current_params.html_safe(:sort_by) 3: /= hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml__1687751155949280794_2202373980' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml___2232606750866284213_2175972380' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.7ms) Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:20:49 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (2.8ms) Rendered application/_search_form.html.haml (2.9ms) Person Load (1.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (30.1ms) Completed 200 OK in 55ms (Views: 52.8ms | ActiveRecord: 1.2ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:20:49 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:20:49 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:20:49 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:20:49 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=email" for 127.0.0.1 at 2014-07-17 23:21:02 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (14.1ms) Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:02 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:21:02 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:02 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:02 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=email&sort_by=email+desc" for 127.0.0.1 at 2014-07-17 23:21:08 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.8ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (18.3ms) Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:21:08 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:08 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:08 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:08 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:21:37 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (2.1ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (1.0ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (16.8ms) Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:21:37 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:37 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:37 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:37 -0400 Started GET "/people?myparam=val1&myparam2=defr" for 127.0.0.1 at 2014-07-17 23:21:37 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.9ms) Person Load (1.1ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (16.7ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 1.1ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:37 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:37 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:37 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:21:37 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-17 23:21:41 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (1.2ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (17.4ms) Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.8ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:41 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:41 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:21:41 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:41 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=email" for 127.0.0.1 at 2014-07-17 23:21:44 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.9ms) Person Load (1.0ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (22.4ms) Completed 200 OK in 30ms (Views: 28.1ms | ActiveRecord: 1.0ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:44 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:44 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:44 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:21:44 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-17 23:21:49 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."updated_at" DESC Rendered people/index.html.haml within layouts/application (16.2ms) Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.8ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:49 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:49 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:21:49 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:21:49 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-17 23:22:28 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (0.8ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."updated_at" DESC Rendered application/_search_form.html.haml (19.7ms) Rendered people/index.html.haml within layouts/application (24.0ms) Completed 500 Internal Server Error in 27ms ActionView::Template::Error (undefined local variable or method `search_for' for #<#:0x000001033ff2d8>): 1: %form{id: "search-form"} 2: = hide_current_params(search_for).html_safe 3: /=hidden_field_tag(:sort_by, params[:sort_by]) 4: =text_field_tag :search_for, params[:search_for], :placeholder => "Search" 5: %button#submit-search{:type => "submit"}Find app/views/application/_search_form.html.haml:2:in `_app_views_application__search_form_html_haml___4519403512619040088_2174139520' app/views/people/index.html.haml:8:in `_app_views_people_index_html_haml___2232606750866284213_2175972380' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.4ms) Started GET "/people?myparam=val1&myparam2=defr&sort_by=updated_at+desc" for 127.0.0.1 at 2014-07-17 23:22:37 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"updated_at desc"} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (2.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."updated_at" DESC Rendered people/index.html.haml within layouts/application (14.5ms) Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:37 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:37 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:22:37 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:37 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-17 23:22:42 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"last_name desc"} Rendered application/_sort_form.html.haml (1.1ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (1.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (19.9ms) Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 1.2ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:42 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:42 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:42 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:22:42 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=last_name+desc&search_for=ka" for 127.0.0.1 at 2014-07-17 23:22:46 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"last_name desc", "search_for"=>"ka"} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%ka%' or last_name like '%ka%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (4.8ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:22:46 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:46 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:46 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:46 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=last_name+desc&search_for=lo" for 127.0.0.1 at 2014-07-17 23:22:52 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"last_name desc", "search_for"=>"lo"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.2ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%lo%' or last_name like '%lo%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (4.7ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:22:52 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:52 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:52 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:22:52 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=last_name+desc&search_for=" for 127.0.0.1 at 2014-07-17 23:23:02 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"last_name desc", "search_for"=>""} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" DESC Rendered people/index.html.haml within layouts/application (13.9ms) Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:23:02 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:23:02 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:23:02 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:23:02 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-17 23:23:08 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (22.3ms) Completed 200 OK in 29ms (Views: 26.8ms | ActiveRecord: 0.8ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-17 23:23:08 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-17 23:23:08 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-17 23:23:08 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-17 23:23:08 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-19 15:23:58 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (2.2ms) Rendered application/_search_form.html.haml (2.6ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (32.2ms) Completed 200 OK in 47783ms (Views: 166.7ms | ActiveRecord: 1.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-19 15:24:46 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-19 15:24:46 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-19 15:24:46 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-19 15:24:46 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-19 15:24:52 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"", "sort_by"=>"email"} Completed 500 Internal Server Error in 2ms NoMethodError (undefined method `inject' for nil:NilClass): app/controllers/application_controller.rb:25:in `setup_sql_search_n_sort' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.5ms) Started GET "/people?myparam=val1&myparam2=defr&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-19 15:26:05 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"", "sort_by"=>"email"} Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `inject' for nil:NilClass): app/controllers/application_controller.rb:25:in `setup_sql_search_n_sort' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.8ms) Started GET "/people?myparam=val1&myparam2=defr&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-19 15:27:32 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (2.6ms) Rendered application/_search_form.html.haml (2.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."" ASC SQLite3::SQLException: no such column: people.: SELECT "people".* FROM "people" ORDER BY "people"."" ASC Rendered people/index.html.haml within layouts/application (21.1ms) Completed 500 Internal Server Error in 36420ms ActionView::Template::Error (SQLite3::SQLException: no such column: people.: SELECT "people".* FROM "people" ORDER BY "people"."" ASC): 14: %th Last updated 15: %th 16: %tbody 17: - @people.each do |person| 18: %tr 19: %td= person.first_name 20: %td= person.last_name app/views/people/index.html.haml:17:in `_app_views_people_index_html_haml___1349697882705765714_2202213540' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.9ms) Started GET "/people?myparam=val1&myparam2=defr&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-19 15:29:22 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"", "sort_by"=>"email"} Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."" ASC SQLite3::SQLException: no such column: people.: SELECT "people".* FROM "people" ORDER BY "people"."" ASC Person Load (12.2ms) SELECT "people".* FROM "people" Rendered application/_sort_form.html.haml (2.2ms) Rendered application/_search_form.html.haml (2.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" ORDER BY "people"."" ASC SQLite3::SQLException: no such column: people.: SELECT "people".* FROM "people" ORDER BY "people"."" ASC Rendered people/index.html.haml within layouts/application (62.9ms) Completed 500 Internal Server Error in 185532ms ActionView::Template::Error (SQLite3::SQLException: no such column: people.: SELECT "people".* FROM "people" ORDER BY "people"."" ASC): 14: %th Last updated 15: %th 16: %tbody 17: - @people.each do |person| 18: %tr 19: %td= person.first_name 20: %td= person.last_name app/views/people/index.html.haml:17:in `_app_views_people_index_html_haml___3159855463929987071_2163405960' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (15.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (24.4ms) Started GET "/people?myparam=val1&myparam2=defr&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-19 15:32:43 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (2.8ms) Person Load (0.6ms) SELECT "people".* FROM "people" Rendered people/index.html.haml within layouts/application (32.5ms) Completed 200 OK in 66ms (Views: 63.4ms | ActiveRecord: 1.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-19 15:32:43 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-19 15:32:43 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-19 15:32:43 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-19 15:32:43 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-19 20:08:31 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (1.8ms) Rendered application/_search_form.html.haml (1.8ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (21.2ms) Completed 200 OK in 27ms (Views: 24.1ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-19 20:08:31 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-19 20:08:31 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-19 20:08:31 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-19 20:08:31 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=&sort_by=email" for 127.0.0.1 at 2014-07-19 20:08:54 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"", "sort_by"=>"email"} Rendered application/_sort_form.html.haml (3.1ms) Rendered application/_search_form.html.haml (2.9ms) Person Load (1.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" ASC Rendered people/index.html.haml within layouts/application (37.7ms) Completed 200 OK in 112ms (Views: 107.8ms | ActiveRecord: 1.8ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-19 20:08:54 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-19 20:08:54 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-19 20:08:54 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-19 20:08:54 -0400 Started GET "/people?myparam=val1&myparam2=defr&search_for=&sort_by=email+desc" for 127.0.0.1 at 2014-07-19 20:09:00 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "search_for"=>"", "sort_by"=>"email desc"} Rendered application/_sort_form.html.haml (0.7ms) Rendered application/_search_form.html.haml (0.6ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (15.2ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.8ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:00 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:00 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:00 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-19 20:09:00 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=email+desc&search_for=d" for 127.0.0.1 at 2014-07-19 20:09:04 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"email desc", "search_for"=>"d"} Rendered application/_sort_form.html.haml (0.9ms) Rendered application/_search_form.html.haml (0.5ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%d%' or last_name like '%d%') ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (8.4ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.4ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:04 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:04 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:04 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-19 20:09:04 -0400 Started GET "/people?myparam=val1&myparam2=defr&sort_by=email+desc&search_for=" for 127.0.0.1 at 2014-07-19 20:09:06 -0400 Processing by PeopleController#index as HTML Parameters: {"myparam"=>"val1", "myparam2"=>"defr", "sort_by"=>"email desc", "search_for"=>""} Rendered application/_sort_form.html.haml (0.8ms) Rendered application/_search_form.html.haml (0.7ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."email" DESC Rendered people/index.html.haml within layouts/application (14.4ms) Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.9ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:06 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:06 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:06 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-19 20:09:06 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-19 20:09:57 -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 (1.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (17.7ms) Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 1.4ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:57 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:57 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-19 20:09:58 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-19 20:09:58 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-19 20:11:20 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (14.9ms) Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.9ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-19 20:11:20 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-19 20:11:20 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-19 20:11:20 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-19 20:11:20 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-19 20:11:22 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.0ms) Rendered application/_search_form.html.haml (0.4ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (19.4ms) Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.9ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-19 20:11:22 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-19 20:11:22 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-19 20:11:22 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-19 20:11:22 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-19 20:24:49 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms NoMethodError (undefined method `setup_sql_search_n_sort' for #): activesupport (4.1.4) lib/active_support/callbacks.rb:424:in `block in make_lambda' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-19 20:34:42 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/controllers/application_controller.rb:9: syntax error, unexpected end-of-input, expecting keyword_end): app/controllers/application_controller.rb:9: syntax error, unexpected end-of-input, expecting keyword_end app/controllers/people_controller.rb:1:in `' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.4ms) Started GET "/people" for 127.0.0.1 at 2014-07-19 20:36:02 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" SyntaxError (/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/controllers/application_controller.rb:9: syntax error, unexpected end-of-input, expecting keyword_end): app/controllers/application_controller.rb:9: syntax error, unexpected end-of-input, expecting keyword_end app/controllers/people_controller.rb:1:in `' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (30.7ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-19 21:04:28 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (2.1ms) Rendered people/sort_only_index.html.haml within layouts/application (9.2ms) Completed 500 Internal Server Error in 16ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 2: = hide_current_params("sort_by").html_safe 3: /= hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:5:in `_app_views_application__sort_form_html_haml__1550398886017793750_2197836660' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml___1286410610905768209_2198231640' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.2ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-19 21:04:58 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (1.3ms) Rendered people/sort_only_index.html.haml within layouts/application (2.6ms) Completed 500 Internal Server Error in 7ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 2: = hide_current_params("sort_by").html_safe 3: /= hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:5:in `_app_views_application__sort_form_html_haml__1550398886017793750_2197836660' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml___1286410610905768209_2198231640' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.7ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-19 22:23:46 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (0.8ms) Rendered people/sort_only_index.html.haml within layouts/application (1.9ms) Completed 500 Internal Server Error in 4ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 2: = hide_current_params("sort_by").html_safe 3: /= hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:5:in `_app_views_application__sort_form_html_haml__1550398886017793750_2197836660' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml___1286410610905768209_2198231640' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.5ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-19 22:24:16 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered people/sort_only_index.html.haml within layouts/application (2.7ms) Completed 500 Internal Server Error in 5ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 2: = hide_current_params("sort_by").html_safe 3: /= hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:5:in `_app_views_application__sort_form_html_haml__1550398886017793750_2197836660' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml___1286410610905768209_2198231640' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.9ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-19 22:24:20 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (0.9ms) Rendered people/sort_only_index.html.haml within layouts/application (2.0ms) Completed 500 Internal Server Error in 4ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 2: = hide_current_params("sort_by").html_safe 3: /= hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:5:in `_app_views_application__sort_form_html_haml__1550398886017793750_2197836660' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml___1286410610905768209_2198231640' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.4ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-19 22:25:34 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (5.5ms) Rendered people/sort_only_index.html.haml within layouts/application (13.8ms) Completed 500 Internal Server Error in 23ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 2: = hide_current_params("sort_by").html_safe 3: /= hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:5:in `_app_views_application__sort_form_html_haml__2260597861724202827_2202424620' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml__2948278467789890452_2202799900' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (55.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (70.0ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-19 22:26:27 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (3.9ms) Rendered people/sort_only_index.html.haml within layouts/application (11.8ms) Completed 500 Internal Server Error in 19ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 2: = hide_current_params("sort_by").html_safe 3: /= hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:5:in `_app_views_application__sort_form_html_haml__3078903832198780633_2203607120' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml__1662681725822186670_2203973700' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.8ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-19 22:27:47 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (3.3ms) Rendered people/sort_only_index.html.haml within layouts/application (9.7ms) Completed 500 Internal Server Error in 17ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 2: = hide_current_params("sort_by").html_safe 3: /= hidden_field_tag(:search_for, params[:search_for]) 4: = label_tag :sort_by 5: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:5:in `_app_views_application__sort_form_html_haml__3704709582010174983_2180587740' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml__1756645028297945979_2180954240' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.7ms) Started GET "/sort_people" for 127.0.0.1 at 2014-07-19 22:28:22 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (2.4ms) Rendered people/sort_only_index.html.haml within layouts/application (4.0ms) Completed 500 Internal Server Error in 7ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 1: %form 2: = hide_current_params("sort_by").html_safe 3: = label_tag :sort_by 4: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:4:in `_app_views_application__sort_form_html_haml__3704709582010174983_2186551160' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml__1756645028297945979_2180954240' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.6ms) Started GET "/sort_people?p=1" for 127.0.0.1 at 2014-07-20 14:27:36 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"p"=>"1"} Rendered application/_sort_form.html.haml (2.1ms) Rendered people/sort_only_index.html.haml within layouts/application (19.4ms) Completed 500 Internal Server Error in 56ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 1: %form 2: = hide_current_params("sort_by").html_safe 3: = label_tag :sort_by 4: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:4:in `_app_views_application__sort_form_html_haml__3704709582010174983_2186551160' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml__1756645028297945979_2180954240' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.3ms) Started GET "/sort_people?p=1" for 127.0.0.1 at 2014-07-20 14:28:17 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"p"=>"1"} Rendered application/_sort_form.html.haml (1.2ms) Rendered people/sort_only_index.html.haml within layouts/application (2.6ms) Completed 500 Internal Server Error in 5ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 1: %form 2: = hide_current_params("sort_by").html_safe 3: = label_tag :sort_by 4: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:4:in `_app_views_application__sort_form_html_haml__3704709582010174983_2186551160' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml__1756645028297945979_2180954240' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.8ms) Started GET "/sort_people?p=1" for 127.0.0.1 at 2014-07-20 14:28:36 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"p"=>"1"} Rendered application/_sort_form.html.haml (1.4ms) Rendered people/sort_only_index.html.haml within layouts/application (2.9ms) Completed 500 Internal Server Error in 6ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 1: %form 2: = hide_current_params("sort_by").html_safe 3: = label_tag :sort_by 4: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:4:in `_app_views_application__sort_form_html_haml__3704709582010174983_2186551160' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml__1756645028297945979_2180954240' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.5ms) Started GET "/sort_people?p=1" for 127.0.0.1 at 2014-07-20 14:29:05 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"p"=>"1"} Rendered application/_sort_form.html.haml (1.6ms) Rendered people/sort_only_index.html.haml within layouts/application (3.5ms) Completed 500 Internal Server Error in 7ms ActionView::Template::Error (undefined method `map' for nil:NilClass): 1: %form 2: = hide_current_params("sort_by").html_safe 3: = label_tag :sort_by 4: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts, params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:4:in `_app_views_application__sort_form_html_haml__3704709582010174983_2186551160' app/views/people/sort_only_index.html.haml:6:in `_app_views_people_sort_only_index_html_haml__1756645028297945979_2180954240' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.5ms) Started GET "/sort_people?p=1" for 127.0.0.1 at 2014-07-20 14:30:31 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"p"=>"1"} Rendered application/_sort_form.html.haml (1.6ms) Person Load (0.8ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (19.1ms) Completed 200 OK in 135ms (Views: 133.9ms | ActiveRecord: 1.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-20 14:30:31 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-20 14:30:31 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-20 14:30:31 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-20 14:30:31 -0400 Started GET "/sort_people?p=1" for 127.0.0.1 at 2014-07-20 14:33:48 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#sort_only_index as HTML Parameters: {"p"=>"1"} Rendered application/_sort_form.html.haml (1.7ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (24.1ms) Completed 200 OK in 100ms (Views: 97.1ms | ActiveRecord: 1.0ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-20 14:33:48 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-20 14:33:48 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-20 14:33:48 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-20 14:33:49 -0400 Started GET "/sort_people?p=1" for 127.0.0.1 at 2014-07-20 14:34:25 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"p"=>"1"} Rendered application/_sort_form.html.haml (0.9ms) Person Load (1.1ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (13.0ms) Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 1.1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-20 14:34:25 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-20 14:34:25 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-20 14:34:25 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-20 14:34:25 -0400 Started GET "/sort_people?p=1" for 127.0.0.1 at 2014-07-20 14:36:23 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"p"=>"1"} Person Load (1.1ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered application/_sort_form.html.haml (0.5ms) Rendered people/sort_only_index.html.haml within layouts/application (383768.9ms) Completed 200 OK in 383777ms (Views: 383775.4ms | ActiveRecord: 1.1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-20 14:42:47 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-20 14:42:47 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-20 14:42:47 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-20 14:42:47 -0400 Started GET "/sort_people?p=1" for 127.0.0.1 at 2014-07-20 14:42:51 -0400 Processing by PeopleController#sort_only_index as HTML Parameters: {"p"=>"1"} Rendered application/_sort_form.html.haml (0.6ms) Person Load (1.1ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (5784.0ms) Completed 200 OK in 5791ms (Views: 5789.5ms | ActiveRecord: 1.1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-20 14:42:57 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-20 14:42:57 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-20 14:42:57 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-20 14:42:57 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateProducts (20140723223003)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "descr" text, "price" integer, "date_produced" datetime, "manufacturer" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140723223003"]]  (1.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/people?search_for=fo" for 127.0.0.1 at 2014-07-23 20:44:20 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"search_for"=>"fo"} Rendered application/_sort_form.html.haml (1.7ms) Rendered application/_search_form.html.haml (1.7ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%fo%' or last_name like '%fo%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (19.9ms) Completed 200 OK in 92ms (Views: 88.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-23 20:44:21 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-23 20:44:21 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-23 20:44:21 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-23 20:44:21 -0400 Started GET "/products" for 127.0.0.1 at 2014-07-23 20:44:36 -0400 Processing by ProductsController#index as HTML Rendered application/_sort_form.html.haml (0.5ms) Product Load (0.2ms) SELECT "products".* FROM "products" Rendered products/index.html.haml within layouts/application (6.8ms) Completed 200 OK in 13ms (Views: 10.8ms | ActiveRecord: 0.1ms) Started GET "/pople" for 127.0.0.1 at 2014-07-23 22:08:41 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (No route matches [GET] "/pople"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (97.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (179.1ms) Started GET "/people" for 127.0.0.1 at 2014-07-23 22:08:52 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.4ms) Rendered application/_search_form.html.haml (1.7ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (27.4ms) Completed 200 OK in 89ms (Views: 85.5ms | ActiveRecord: 1.2ms) Started GET "/people" for 127.0.0.1 at 2014-07-23 22:09:39 -0400 Processing by PeopleController#index as HTML Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered application/_sort_form.html.haml (22.9ms) Rendered people/index.html.haml within layouts/application (24.2ms) Completed 500 Internal Server Error in 28ms ActionView::Template::Error (undefined method `hide_current_params' for #<#:0x00000104311140>): 1: %form 2: = hide_current_params("sort_by").html_safe 3: = label_tag :sort_by 4: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts ||= [], params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml__4260185375940338108_2203616700' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml___1908674433262842860_2203848740' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.3ms) Started GET "/people" for 127.0.0.1 at 2014-07-24 15:17:11 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.7ms) Person Load (0.7ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (25.2ms) Completed 200 OK in 91ms (Views: 87.4ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 15:17:12 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 15:17:12 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 15:17:12 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 15:17:12 -0400 Started GET "/sort_people" for 127.0.0.1 at 2014-07-24 15:17:49 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (0.6ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (16.2ms) Completed 200 OK in 21ms (Views: 19.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 15:17:49 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 15:17:49 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 15:17:49 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 15:17:49 -0400 Started GET "/sort_people" for 127.0.0.1 at 2014-07-24 15:22:15 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (0.9ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (16.9ms) Completed 200 OK in 26ms (Views: 21.3ms | ActiveRecord: 1.4ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 15:22:15 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 15:22:15 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 15:22:15 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 15:22:15 -0400 Started GET "/sort_people" for 127.0.0.1 at 2014-07-24 15:22:46 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (0.5ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (13.2ms) Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 15:22:46 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 15:22:46 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 15:22:46 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 15:22:46 -0400 Started GET "/sort_people" for 127.0.0.1 at 2014-07-24 15:23:01 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (0.5ms) Person Load (0.8ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (11.1ms) Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.8ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 15:23:01 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 15:23:01 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 15:23:01 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 15:23:01 -0400 Started GET "/sort_people" for 127.0.0.1 at 2014-07-24 15:23:20 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (2.0ms) Person Load (0.8ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (29.1ms) Completed 200 OK in 189716ms (Views: 78.0ms | ActiveRecord: 1.0ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 15:26:30 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 15:26:30 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 15:26:30 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 15:26:30 -0400 Started GET "/sort_people" for 127.0.0.1 at 2014-07-24 15:26:35 -0400 Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (0.6ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (12.6ms) Completed 200 OK in 5218ms (Views: 16.7ms | ActiveRecord: 0.7ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 15:26:40 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 15:26:40 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 15:26:40 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 15:26:40 -0400 Started GET "/sort_people" for 127.0.0.1 at 2014-07-24 15:26:54 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (1.6ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (27.9ms) Completed 200 OK in 63ms (Views: 59.5ms | ActiveRecord: 1.0ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 15:26:54 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 15:26:54 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 15:26:54 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 15:26:54 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateProducts (20140724205317)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "descr" text, "price" integer, "date_produced" datetime, "manufacturer" varchar(255), "created_at" datetime, "updated_at" datetime)  SQLite3::SQLException: table "products" already exists: CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "descr" text, "price" integer, "date_produced" datetime, "manufacturer" varchar(255), "created_at" datetime, "updated_at" datetime)  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateProducts (20140724205317)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "descr" text, "price" integer, "date_produced" datetime, "manufacturer" varchar(255), "created_at" datetime, "updated_at" datetime)  SQLite3::SQLException: table "products" already exists: CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "descr" text, "price" integer, "date_produced" datetime, "manufacturer" varchar(255), "created_at" datetime, "updated_at" datetime)  (0.0ms) rollback transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateProduct (20140723223003) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateProducts (20140723223003)  (0.1ms) begin transaction  (0.6ms) DROP TABLE "products" SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140723223003'  (1.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateProducts (20140723223003)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "descr" text, "price" integer, "date_produced" datetime, "manufacturer" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140723223003"]]  (1.3ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/sort_people" for 127.0.0.1 at 2014-07-24 17:20:44 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#sort_only_index as HTML Rendered application/_sort_form.html.haml (1.6ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/sort_only_index.html.haml within layouts/application (15.4ms) Completed 200 OK in 22ms (Views: 19.0ms | ActiveRecord: 0.9ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 17:20:44 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 17:20:44 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 17:20:44 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 17:20:44 -0400 Started GET "/products" for 127.0.0.1 at 2014-07-24 17:20:52 -0400 Processing by ProductsController#index as HTML Completed 500 Internal Server Error in 2ms TypeError (no implicit conversion of Symbol into String): /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/lib/sql_search_n_sort/sql_sort_setup.rb:20:in `+' /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/lib/sql_search_n_sort/sql_sort_setup.rb:20:in `setup_sql_sort' activesupport (4.1.4) lib/active_support/callbacks.rb:424:in `block in make_lambda' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (53.6ms) Started GET "/products" for 127.0.0.1 at 2014-07-24 21:09:29 -0400 Processing by ProductsController#index as HTML Completed 500 Internal Server Error in 1ms TypeError (no implicit conversion of Symbol into String): /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/lib/sql_search_n_sort/sql_sort_setup.rb:20:in `+' /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/lib/sql_search_n_sort/sql_sort_setup.rb:20:in `setup_sql_sort' activesupport (4.1.4) lib/active_support/callbacks.rb:424:in `block in make_lambda' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.0ms) Started GET "/products" for 127.0.0.1 at 2014-07-24 21:09:43 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by ProductsController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Product Load (0.2ms) SELECT "products".* FROM "products" ORDER BY "products"."manufacturer" DESC Rendered products/index.html.haml within layouts/application (8.9ms) Completed 200 OK in 84ms (Views: 82.0ms | ActiveRecord: 0.2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 21:09:43 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 21:09:43 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 21:09:43 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 21:09:43 -0400 Started GET "/products?sort_by=price" for 127.0.0.1 at 2014-07-24 21:09:50 -0400 Processing by ProductsController#index as HTML Parameters: {"sort_by"=>"price"} Rendered application/_sort_form.html.haml (0.6ms) Product Load (0.2ms) SELECT "products".* FROM "products" ORDER BY "products"."price" DESC Rendered products/index.html.haml within layouts/application (2.7ms) Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 21:09:50 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 21:09:50 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 21:09:50 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 21:09:50 -0400 Started GET "/products?sort_by=price+desc" for 127.0.0.1 at 2014-07-24 21:09:52 -0400 Processing by ProductsController#index as HTML Parameters: {"sort_by"=>"price desc"} Rendered application/_sort_form.html.haml (2.0ms) Product Load (0.2ms) SELECT "products".* FROM "products" ORDER BY "products"."price" DESC Rendered products/index.html.haml within layouts/application (4.8ms) Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 21:09:52 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 21:09:52 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-24 21:09:52 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 21:09:52 -0400 Started GET "/products?sort_by=price+desc" for 127.0.0.1 at 2014-07-24 21:15:52 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by ProductsController#index as HTML Parameters: {"sort_by"=>"price desc"} Rendered products/index.html.haml within layouts/application (8.4ms) Completed 500 Internal Server Error in 16ms ActionView::Template::Error (Missing partial products/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 2: 3: %table 4: %tr 5: %td{colspan: "8"}= render 'sort_form' 6: %tr 7: %th Name 8: %th Descr app/views/products/index.html.haml:5:in `_app_views_products_index_html_haml___2503572814566417422_2202619160' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.8ms) Started GET "/products?sort_by=price+desc" for 127.0.0.1 at 2014-07-24 21:16:25 -0400 Processing by ProductsController#index as HTML Parameters: {"sort_by"=>"price desc"} Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `+' for :price:Symbol): /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/lib/sql_search_n_sort/sql_sort_setup.rb:13:in `setup_sql_sort' activesupport (4.1.4) lib/active_support/callbacks.rb:424:in `block in make_lambda' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms) Started GET "/products?sort_by=price+desc" for 127.0.0.1 at 2014-07-24 21:21:12 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by ProductsController#index as HTML Parameters: {"sort_by"=>"price desc"} Rendered products/index.html.haml within layouts/application (12.4ms) Completed 500 Internal Server Error in 24ms ActionView::Template::Error (Missing partial products/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 2: 3: %table 4: %tr 5: %td{colspan: "8"}= render 'sort_form' 6: %tr 7: %th Name 8: %th Descr app/views/products/index.html.haml:5:in `_app_views_products_index_html_haml__905534594163043552_2198903360' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (28.2ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateArticles (20140725015524)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "headline" varchar(255), "by_line" varchar(255), "date_pub" datetime, "body" text, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140725015524"]]  (1.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddDobAndGradeToPeople (20140725161555)  (0.1ms) begin transaction  (0.7ms) ALTER TABLE "people" ADD "dob" datetime  (0.2ms) ALTER TABLE "people" ADD "grade" integer SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140725161555"]]  (0.9ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/products?sort_by=price+desc" for 127.0.0.1 at 2014-07-25 12:34:16 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by ProductsController#index as HTML Parameters: {"sort_by"=>"price desc"} Rendered application/_sort_form.html.haml (1.5ms) Product Load (0.3ms) SELECT "products".* FROM "products" ORDER BY "products"."price" DESC Rendered products/index.html.haml within layouts/application (8.8ms) Completed 200 OK in 76ms (Views: 73.2ms | ActiveRecord: 0.3ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-25 12:34:17 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-25 12:34:17 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-25 12:34:17 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-25 12:34:17 -0400 Started GET "/people" for 127.0.0.1 at 2014-07-25 12:34:28 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (0.4ms) Rendered application/_search_form.html.haml (2.1ms) Person Load (0.9ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or bio like '%%' or updated_at like '%%' or dob like '%%' or grade like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (24.2ms) Completed 200 OK in 34ms (Views: 28.8ms | ActiveRecord: 1.2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-25 12:34:28 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-25 12:34:28 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-25 12:34:28 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-25 12:34:28 -0400 Started GET "/people?search_for=25" for 127.0.0.1 at 2014-07-25 12:34:50 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"25"} 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 '%25%' or last_name like '%25%' or bio like '%25%' or updated_at like '%25%' or dob like '%25%' or grade like '%25%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (5.2ms) Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.3ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-25 12:34:50 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-25 12:34:50 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-25 12:34:50 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-25 12:34:50 -0400 Started GET "/people?search_for=25" for 127.0.0.1 at 2014-07-25 13:10:02 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"search_for"=>"25"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%25%' or last_name like '%25%' or bio like '%25%' or updated_at like '%25%' or dob like '%25%' or grade like '%25%') ORDER BY "people"."last_name" ASC Rendered application/_sort_form.html.haml (18.6ms) Rendered people/index.html.haml within layouts/application (26.2ms) Completed 500 Internal Server Error in 35ms ActionView::Template::Error (undefined method `hide_current_params' for #<#:0x000001044c4488>): 1: %form 2: = hide_current_params("sort_by").html_safe 3: = label_tag :sort_by 4: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts ||= [], params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml___1367472031394097803_2169525800' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml___3214731536362553765_2183149920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (16.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (28.1ms) Started GET "/people?search_for=25" for 127.0.0.1 at 2014-07-25 13:10:14 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"25"} Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%25%' or last_name like '%25%' or bio like '%25%' or updated_at like '%25%' or dob like '%25%' or grade like '%25%') ORDER BY "people"."last_name" ASC Rendered application/_sort_form.html.haml (8.0ms) Rendered people/index.html.haml within layouts/application (9.6ms) Completed 500 Internal Server Error in 13ms ActionView::Template::Error (undefined method `hide_current_params' for #<#:0x00000101af6840>): 1: %form 2: = hide_current_params("sort_by").html_safe 3: = label_tag :sort_by 4: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts ||= [], params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml___1367472031394097803_2169525800' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml___3214731536362553765_2183149920' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.6ms) Started GET "/people?search_for=25" for 127.0.0.1 at 2014-07-25 13:10:27 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"search_for"=>"25"} Person Load (0.5ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%25%' or last_name like '%25%' or bio like '%25%' or updated_at like '%25%' or dob like '%25%' or grade like '%25%') ORDER BY "people"."last_name" ASC Rendered application/_sort_form.html.haml (22.7ms) Rendered people/index.html.haml within layouts/application (29.8ms) Completed 500 Internal Server Error in 38ms ActionView::Template::Error (undefined method `hide_current_params' for #<#:0x000001068c81e0>): 1: %form 2: = hide_current_params("sort_by").html_safe 3: = label_tag :sort_by 4: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts ||= [], params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml___2303187684451967570_2185098020' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__1716589075459342030_2202275620' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.6ms) Started GET "/people?search_for=25" for 127.0.0.1 at 2014-07-25 13:20:18 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"search_for"=>"25"} Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%25%' or last_name like '%25%' or bio like '%25%' or updated_at like '%25%' or dob like '%25%' or grade like '%25%') ORDER BY "people"."last_name" ASC Rendered application/_sort_form.html.haml (20.6ms) Rendered people/index.html.haml within layouts/application (28.4ms) Completed 500 Internal Server Error in 38ms ActionView::Template::Error (undefined method `hide_current_params' for #<#:0x000001045eccc0>): 1: %form 2: = hide_current_params("sort_by").html_safe 3: = label_tag :sort_by 4: = select_tag :sort_by, options_for_select(opts ||= @sort_dropdown_opts ||= [], params[:sort_by]), :onchange => "submit();" app/views/application/_sort_form.html.haml:2:in `_app_views_application__sort_form_html_haml___3012066301578544627_2183608600' app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__1363221739925543408_2184001100' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (22.3ms) Started GET "/people?search_for=25" for 127.0.0.1 at 2014-07-25 13:22:07 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"search_for"=>"25"} Rendered application/_sort_form.html.haml (2.2ms) Rendered application/_search_form.html.haml (1.9ms) Person Load (0.4ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%25%' or last_name like '%25%' or bio like '%25%' or updated_at like '%25%' or dob like '%25%' or grade like '%25%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (25.1ms) Completed 200 OK in 60ms (Views: 55.9ms | ActiveRecord: 0.7ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-25 13:22:07 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-25 13:22:07 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-07-25 13:22:07 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-25 13:22:07 -0400 Started GET "/people?search_for=25&sort_by=last_name+desc" for 127.0.0.1 at 2014-07-25 13:22:55 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"25", "sort_by"=>"last_name desc"} Rendered people/index.html.haml within layouts/application (3.3ms) Completed 500 Internal Server Error in 9ms ActionView::Template::Error (Missing partial people/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "sort_form" #, :opts => @sort_dropdown_opts 7: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 8: =render "search_form" 9: %tr app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml___1354379603007262227_2184317620' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.2ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateCreditApplications (20140730200419)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "credit_applications" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "credit_score" integer, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140730200419"]]  (5.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/people" for 127.0.0.1 at 2014-07-30 16:16:54 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered people/index.html.haml within layouts/application (8.4ms) Completed 500 Internal Server Error in 17ms ActionView::Template::Error (Missing partial people/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "sort_form" #, :opts => @sort_dropdown_opts 7: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 8: =render "search_form" 9: %tr app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml___4434338519299115954_2183985500' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.2ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateCreditApplications (20140730200419)  (0.1ms) begin transaction  (0.5ms) DROP TABLE "credit_applications" SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140730200419'  (1.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/people" for 127.0.0.1 at 2014-10-01 22:04:54 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered people/index.html.haml within layouts/application (51.5ms) Completed 500 Internal Server Error in 1059772ms ActionView::Template::Error (Missing partial people/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "sort_form" #, :opts => @sort_dropdown_opts 7: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 8: =render "search_form" 9: %tr app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__1808015714022331107_2182486100' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (23.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (39.1ms) Started GET "/people" for 127.0.0.1 at 2014-10-01 22:22:46 -0400 Processing by PeopleController#index as HTML Rendered people/index.html.haml within layouts/application (2.2ms) Completed 500 Internal Server Error in 13566ms ActionView::Template::Error (Missing partial people/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "sort_form" #, :opts => @sort_dropdown_opts 7: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 8: =render "search_form" 9: %tr app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__1808015714022331107_2182486100' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.2ms) Started GET "/people" for 127.0.0.1 at 2014-10-01 22:23:22 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered people/index.html.haml within layouts/application (8.5ms) Completed 500 Internal Server Error in 17ms ActionView::Template::Error (Missing partial people/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "sort_form" #, :opts => @sort_dropdown_opts 7: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 8: =render "search_form" 9: %tr app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__3505030605571195658_2175142980' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.0ms) Started GET "/people" for 127.0.0.1 at 2014-10-01 22:24:23 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.6ms) Rendered application/_search_form.html.haml (2.0ms) Person Load (0.8ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or bio like '%%' or updated_at like '%%' or dob like '%%' or grade like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (21.5ms) Completed 200 OK in 43ms (Views: 39.1ms | ActiveRecord: 1.2ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-01 22:24:23 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-01 22:24:23 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-01 22:24:23 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-01 22:24:24 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateUnsearchables (20141003015903)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "unsearchables" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "int" integer, "dt" date, "tm" time, "dtm" datetime, "bool" boolean, "flt" float, "dec" decimal, "bn" blob, "ts" datetime, "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141003015903"]]  (1.7ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.9ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "headline" varchar(255), "by_line" varchar(255), "date_pub" datetime, "body" text, "created_at" datetime, "updated_at" datetime)   (1.2ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "age" integer, "email" varchar(255), "bio" text, "nickname" varchar(255), "created_at" datetime, "updated_at" datetime, "dob" datetime, "grade" integer)  (1.2ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "descr" text, "price" integer, "date_produced" datetime, "manufacturer" varchar(255), "created_at" datetime, "updated_at" datetime)   (1.0ms) CREATE TABLE "unsearchables" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "int" integer, "dt" date, "tm" time, "dtm" datetime, "bool" boolean, "flt" float, "dec" decimal, "bn" blob, "ts" datetime, "created_at" datetime, "updated_at" datetime)  (1.1ms) CREATE TABLE "vehicles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "year" integer, "manufacturer" varchar(255), "model" varchar(255), "color" varchar(255), "engine" varchar(255), "doorrs" integer, "cylinders" integer, "created_at" datetime, "updated_at" datetime)   (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.1ms) select sqlite_version(*)  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20141003015903')  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140713221826')  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140715080028')  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140723223003')  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140725015524')  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20140725161555') Started GET "/people" for 127.0.0.1 at 2014-10-04 11:59:33 -0400 ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered people/index.html.haml within layouts/application (33.5ms) Completed 500 Internal Server Error in 139ms ActionView::Template::Error (Missing partial people/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "sort_form" #, :opts => @sort_dropdown_opts 7: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 8: =render "search_form" 9: %tr app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml___1397626248905117301_2173059720' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (16.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (29.1ms) Started GET "/people" for 127.0.0.1 at 2014-10-04 12:14:59 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.8ms) Rendered application/_search_form.html.haml (10.2ms) Person Load (47.0ms) SELECT "people".* FROM "people" WHERE (1=2 or first_name like '%%' or last_name like '%%' or bio like '%%') ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (82.4ms) Completed 200 OK in 211ms (Views: 161.1ms | ActiveRecord: 47.3ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-04 12:15:00 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-04 12:15:00 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-04 12:15:00 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-04 12:15:00 -0400 Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:15:12 -0400 ActionController::RoutingError (No route matches [GET] "/unsearchables"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (48.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.1ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:16:34 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (uninitialized constant UnsearchablesController): activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (30.2ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:18:00 -0400 Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 32ms ActionView::MissingTemplate (Missing template unsearchables/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): actionview (4.1.4) lib/action_view/path_set.rb:46:in `find' actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.8ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:19:14 -0400 Processing by UnsearchablesController#index as HTML Rendered unsearchables/index.html.haml within layouts/application (0.9ms) Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.0ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-04 12:19:15 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-04 12:19:15 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-04 12:19:15 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-04 12:19:15 -0400 Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:19:59 -0400 Processing by UnsearchablesController#index as HTML Rendered unsearchables/index.html.haml within layouts/application (1.0ms) Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-04 12:19:59 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2014-10-04 12:19:59 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-10-04 12:19:59 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-04 12:19:59 -0400 Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:36:41 -0400 Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 3ms Exceptions::UnsearchableType (column dt of unsearchables is not searchable): app/models/unsearchable.rb:4:in `' app/models/unsearchable.rb:1:in `' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.9ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:37:50 -0400 Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 2ms Exceptions::UnsearchableType (column dt of unsearchables is not searchable): app/models/unsearchable.rb:4:in `' app/models/unsearchable.rb:1:in `' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.9ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:38:00 -0400 Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 2ms Exceptions::UnsearchableType (column dt of unsearchables is not searchable): app/models/unsearchable.rb:4:in `' app/models/unsearchable.rb:1:in `' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.3ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:38:14 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by UnsearchablesController#index as HTML Completed in 96319ms Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:39:58 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 388ms Exceptions::UnsearchableType (Column 'dt' of model Unsearchable is not searchable): app/models/unsearchable.rb:4:in `' app/models/unsearchable.rb:1:in `' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.9ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:41:40 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 365ms Exceptions::UnsearchableType (Column 'dt' of model Unsearchable is not searchable because it is not of type string or text.): app/models/unsearchable.rb:4:in `' app/models/unsearchable.rb:1:in `' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.3ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:55:27 -0400 Processing by UnsearchablesController#index as HTML Rendered unsearchables/index.html.haml within layouts/application (1.0ms) Completed 200 OK in 56ms (Views: 54.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-10-04 12:55:27 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-10-04 12:55:27 -0400 Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:55:48 -0400 Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 3ms Exceptions::UnsearchableType (Column 'dt' of model Unsearchable is not searchable because it is not of type string or text.): app/models/unsearchable.rb:4:in `' app/models/unsearchable.rb:1:in `' app/controllers/unsearchables_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.5ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:56:15 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 372ms ArgumentError (wrong number of arguments (1 for 2)): app/models/unsearchable.rb:4:in `' app/models/unsearchable.rb:1:in `' app/controllers/unsearchables_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.3ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 12:58:15 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 103508ms Exceptions::UnsearchableType (Exceptions::UnsearchableType): app/models/unsearchable.rb:4:in `' app/models/unsearchable.rb:1:in `' app/controllers/unsearchables_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.0ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 13:00:06 -0400 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 2ms ArgumentError (wrong number of arguments (1 for 2)): app/models/unsearchable.rb:4:in `' app/models/unsearchable.rb:1:in `' app/controllers/unsearchables_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (34.2ms) Started GET "/unsearchables" for 127.0.0.1 at 2014-10-04 13:00:50 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by UnsearchablesController#index as HTML Completed 500 Internal Server Error in 1699731ms Exceptions::UnsearchableType (Exceptions::UnsearchableType): app/models/unsearchable.rb:4:in `' app/models/unsearchable.rb:1:in `' app/controllers/unsearchables_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (28.0ms) Started GET "/admin/membersX" for 127.0.0.1 at 2015-03-05 22:15:01 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (No route matches [GET] "/admin/membersX"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (31.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (55.2ms) Started GET "/admin/members" for 127.0.0.1 at 2015-03-05 22:15:07 -0500 ActionController::RoutingError (uninitialized constant MembersController): activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.4ms) Started GET "/admin/members" for 127.0.0.1 at 2015-03-05 22:15:43 -0500 ActionController::RoutingError (uninitialized constant MembersController): activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.8ms) Started GET "/admin/members" for 127.0.0.1 at 2015-03-05 22:15:57 -0500 ActionController::RoutingError (uninitialized constant MembersController): activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.9ms) Started GET "/admin/members" for 127.0.0.1 at 2015-03-05 22:16:13 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (uninitialized constant MembersController): activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (25.0ms) Started GET "/admin/members" for 127.0.0.1 at 2015-03-05 22:17:03 -0500 ActionController::RoutingError (No route matches [GET] "/admin/members"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.6ms) Started GET "/admin/members" for 127.0.0.1 at 2015-03-05 22:17:22 -0500 ActionController::RoutingError (No route matches [GET] "/admin/members"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.3ms) Started GET "/admin/members" for 127.0.0.1 at 2015-03-05 22:18:29 -0500 ArgumentError (controller name should not start with a slash): config/routes.rb:20:in `block (2 levels) in ' config/routes.rb:19:in `block in ' config/routes.rb:1:in `' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms) Started GET "/admin/members" for 127.0.0.1 at 2015-03-05 22:18:46 -0500 ActionController::RoutingError (No route matches [GET] "/admin/members"): actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.1ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:19:17 -0500 ActionController::RoutingError (uninitialized constant Admin): activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.3ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:21:06 -0500 ActionController::RoutingError (uninitialized constant Admin): activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.9ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:22:04 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActionController::RoutingError (uninitialized constant Admin::MembersController): activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:240:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:68:in `controller' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:46:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.3ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:23:30 -0500 Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 79355ms ActionView::MissingTemplate (Missing template admin/members/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): actionview (4.1.4) lib/action_view/path_set.rb:46:in `find' actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.9ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:25:07 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 1ms NameError (uninitialized constant Admin::MembersController::Member): app/controllers/admin/members_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (54.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (68.8ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:25:44 -0500 Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 1ms NameError (uninitialized constant Admin::Member): app/controllers/admin/members_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.5ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:28:56 -0500 Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 1ms NameError (uninitialized constant ActiveModel::Base): app/models/admin/member.rb:1:in `' app/controllers/admin/members_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:29:18 -0500 Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 2ms NoMethodError (undefined method `sql_search' for Admin::Member(Table doesn't exist):Class): app/controllers/admin/members_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.5ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:30:42 -0500 Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 2ms NoMethodError (undefined method `sql_sortable' for Admin::Member(Table doesn't exist):Class): app/models/admin/member.rb:2:in `' app/models/admin/member.rb:1:in `' app/controllers/admin/members_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:31:13 -0500 Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 3ms ActionView::MissingTemplate (Missing template admin/members/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): actionview (4.1.4) lib/action_view/path_set.rb:46:in `find' actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.7ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:32:38 -0500 Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 1ms ActionView::MissingTemplate (Missing template admin/members/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): actionview (4.1.4) lib/action_view/path_set.rb:46:in `find' actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.4ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:33:09 -0500 Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 1ms ActionView::MissingTemplate (Missing template admin/members/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): actionview (4.1.4) lib/action_view/path_set.rb:46:in `find' actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.4ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:34:02 -0500 Processing by Admin::MembersController#index as HTML Rendered admin/members/index.html.haml within layouts/application (0.8ms) Completed 200 OK in 39ms (Views: 38.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-05 22:34:02 -0500 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-05 22:34:02 -0500 Started GET "/members" for 127.0.0.1 at 2015-03-05 22:35:22 -0500 Processing by Admin::MembersController#index as HTML Rendered admin/members/index.html.haml within layouts/application (5.9ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (Missing partial admin/members/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "sort_form" #, :opts => @sort_dropdown_opts 7: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 8: =render "search_form" 9: %tr app/views/admin/members/index.html.haml:6:in `_app_views_admin_members_index_html_haml___898357944263448672_2157592840' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.8ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:40:58 -0500 Processing by Admin::MembersController#index as HTML Rendered admin/members/index.html.haml within layouts/application (3.6ms) Completed 500 Internal Server Error in 6ms ActionView::Template::Error (Missing partial application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "application/sort_form" #, :opts => @sort_dropdown_opts 7: 8: %tr 9: %th First name app/views/admin/members/index.html.haml:6:in `_app_views_admin_members_index_html_haml___898357944263448672_2170278380' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.1ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:41:38 -0500 Processing by Admin::MembersController#index as HTML Rendered admin/members/index.html.haml within layouts/application (3.2ms) Completed 500 Internal Server Error in 5ms ActionView::Template::Error (Missing partial application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "/application/sort_form" #, :opts => @sort_dropdown_opts 7: 8: %tr 9: %th First name app/views/admin/members/index.html.haml:6:in `_app_views_admin_members_index_html_haml___898357944263448672_2157924820' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.4ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:41:53 -0500 Processing by Admin::MembersController#index as HTML Rendered admin/members/index.html.haml within layouts/application (4.1ms) Completed 500 Internal Server Error in 6ms ActionView::Template::Error (Missing partial views/application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "views/application/sort_form" #, :opts => @sort_dropdown_opts 7: 8: %tr 9: %th First name app/views/admin/members/index.html.haml:6:in `_app_views_admin_members_index_html_haml___898357944263448672_2170490600' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.4ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:42:55 -0500 Processing by Admin::MembersController#index as HTML Rendered admin/members/index.html.haml within layouts/application (2.9ms) Completed 500 Internal Server Error in 5ms ActionView::Template::Error (Missing partial application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "application/sort_form" 7: 8: %tr 9: %th First name app/views/admin/members/index.html.haml:6:in `_app_views_admin_members_index_html_haml___898357944263448672_2173577680' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.0ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:53:36 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 1ms NameError (uninitialized constant Member): activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/lib/sql_search_n_sort/sql_sort_setup.rb:5:in `setup_sql_sort' activesupport (4.1.4) lib/active_support/callbacks.rb:424:in `block in make_lambda' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (25.4ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (48.9ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:56:33 -0500 Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 1ms NameError (uninitialized constant Member): activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/lib/sql_search_n_sort/sql_sort_setup.rb:5:in `setup_sql_sort' activesupport (4.1.4) lib/active_support/callbacks.rb:424:in `block in make_lambda' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:57:44 -0500 Processing by Admin::MembersController#index as HTML Completed 500 Internal Server Error in 1ms NameError (uninitialized constant Member): activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `const_get' activesupport (4.1.4) lib/active_support/inflector/methods.rb:238:in `block in constantize' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `each' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `inject' activesupport (4.1.4) lib/active_support/inflector/methods.rb:236:in `constantize' activesupport (4.1.4) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' /Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/lib/sql_search_n_sort/sql_sort_setup.rb:5:in `setup_sql_sort' activesupport (4.1.4) lib/active_support/callbacks.rb:424:in `block in make_lambda' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.6ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:58:14 -0500 Processing by Admin::MembersController#index_explicit_setup as HTML Completed 500 Internal Server Error in 3ms ActionView::MissingTemplate (Missing template admin/members/index_explicit_setup, application/index_explicit_setup with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): actionview (4.1.4) lib/action_view/path_set.rb:46:in `find' actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find' actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template' actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template' actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body' actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call' activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks' actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument' activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument' actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process' actionview (4.1.4) lib/action_view/rendering.rb:30:in `process' actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch' actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each' actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call' actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call' rack (1.5.2) lib/rack/etag.rb:23:in `call' rack (1.5.2) lib/rack/conditionalget.rb:25:in `call' rack (1.5.2) lib/rack/head.rb:11:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call' rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context' rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call' activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call' activerecord (4.1.4) lib/active_record/migration.rb:380:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks' actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app' railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.1.4) lib/rails/rack/logger.rb:20:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.5.2) lib/rack/methodoverride.rb:21:in `call' rack (1.5.2) lib/rack/runtime.rb:17:in `call' activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call' rack (1.5.2) lib/rack/sendfile.rb:112:in `call' railties (4.1.4) lib/rails/engine.rb:514:in `call' railties (4.1.4) lib/rails/application.rb:144:in `call' rack (1.5.2) lib/rack/lock.rb:17:in `call' rack (1.5.2) lib/rack/content_length.rb:14:in `call' rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/johnomalley/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.4ms) Started GET "/members" for 127.0.0.1 at 2015-03-05 22:59:48 -0500 Processing by Admin::MembersController#index_explicit_setup as HTML Rendered application/_sort_form.html.haml (1.3ms) Admin::Member Load (0.5ms) SELECT "members".* FROM "members" WHERE (1=2 ) SQLite3::SQLException: no such table: members: SELECT "members".* FROM "members" WHERE (1=2 ) Rendered admin/members/index.html.haml within layouts/application (7.4ms) Completed 500 Internal Server Error in 11ms ActionView::Template::Error (SQLite3::SQLException: no such table: members: SELECT "members".* FROM "members" WHERE (1=2 )): 10: %th Last name 11: %th Email 12: %tbody 13: - @members.each do |member| 14: %tr 15: %td= member.first_name 16: %td= member.last_name app/views/admin/members/index.html.haml:13:in `_app_views_admin_members_index_html_haml__1389803198823966099_2185075560' app/controllers/admin/members_controller.rb:6:in `index_explicit_setup' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.8ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateMembers (20150306040113)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "members" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150306040113"]]  (1.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/members" for 127.0.0.1 at 2015-03-05 23:02:11 -0500 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Admin::MembersController#index_explicit_setup as HTML Rendered application/_sort_form.html.haml (0.5ms) Admin::Member Load (0.1ms) SELECT "members".* FROM "members" WHERE (1=2 ) Rendered admin/members/index.html.haml within layouts/application (1.7ms) Completed 200 OK in 108ms (Views: 106.5ms | ActiveRecord: 0.1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-05 23:02:11 -0500 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2015-03-05 23:02:11 -0500 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-05 23:02:11 -0500 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-05 23:02:11 -0500 Started GET "/" for 127.0.0.1 at 2015-03-10 22:52:49 -0400 ActiveRecord::SchemaMigration Load (20.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Rails::WelcomeController#index as HTML Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/railties-4.1.4/lib/rails/templates/rails/welcome/index.html.erb (1.9ms) Completed 200 OK in 7ms (Views: 7.3ms | ActiveRecord: 0.0ms) Started GET "/people" for 127.0.0.1 at 2015-03-10 22:53:00 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 3ms ArgumentError (wrong number of arguments (0 for 1)): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (31.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (49.8ms) Started GET "/people" for 127.0.0.1 at 2015-03-10 22:54:20 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 1ms ArgumentError (wrong number of arguments (0 for 1)): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.5ms) Started GET "/people" for 127.0.0.1 at 2015-03-10 22:54:35 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms ArgumentError (wrong number of arguments (0 for 1)): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (24.6ms) Started GET "/people" for 127.0.0.1 at 2015-03-10 22:55:33 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (wrong number of arguments (0 for 1)): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.3ms) Started GET "/people" for 127.0.0.1 at 2015-03-10 22:55:51 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 2ms ArgumentError (malformed format string - %l): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.0ms) Started GET "/people" for 127.0.0.1 at 2015-03-10 22:56:03 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (malformed format string - %l): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms) Started GET "/people" for 127.0.0.1 at 2015-03-10 22:56:16 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 3ms ActiveRecord::PreparedStatementInvalid (wrong number of bind variables (1 for 3) in: 1=2 or first_name like '%?%' or last_name like '%?%' or bio like '%?%'): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.8ms) Started GET "/people" for 127.0.0.1 at 2015-03-10 23:02:53 -0400 Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 0ms ActiveRecord::PreparedStatementInvalid (wrong number of bind variables (1 for 3) in: 1=2 or first_name like '%?%' or last_name like '%?%' or bio like '%?%'): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.2ms) Started GET "/people" for 127.0.0.1 at 2015-03-10 23:03:10 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered people/index.html.haml within layouts/application (7.7ms) Completed 500 Internal Server Error in 43ms ActionView::Template::Error (Missing partial people/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "sort_form" #, :opts => @sort_dropdown_opts 7: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 8: =render "search_form" 9: %tr app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__3337791899237451744_2174330140' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.2ms) Started GET "/people" for 127.0.0.1 at 2015-03-11 18:33:57 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 3ms NoMethodError (undefined method `scoped' for #): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.9ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.4ms) Started GET "/people" for 127.0.0.1 at 2015-03-11 18:36:16 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.7ms) Person Load (41.3ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (68.7ms) Completed 200 OK in 205ms (Views: 160.6ms | ActiveRecord: 41.6ms) Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2015-03-11 18:36:16 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-11 18:36:16 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-11 18:36:16 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-11 18:36:16 -0400 Started GET "/people" for 127.0.0.1 at 2015-03-11 19:38:12 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Completed 500 Internal Server Error in 3ms NoMethodError (undefined method `empty?' for nil:NilClass): app/controllers/people_controller.rb:3:in `index' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.6ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.3ms) Started GET "/people" for 127.0.0.1 at 2015-03-11 19:41:12 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (1.3ms) Person Load (0.7ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (25.4ms) Completed 200 OK in 69ms (Views: 66.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-11 19:41:13 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-11 19:41:13 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2015-03-11 19:41:13 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-11 19:41:13 -0400 Started GET "/people" for 127.0.0.1 at 2015-03-11 19:43:08 -0400 Processing by PeopleController#index as HTML Rendered people/index.html.haml within layouts/application (2.7ms) Completed 500 Internal Server Error in 7ms ActionView::Template::Error (Missing partial people/_sort_form, application/_sort_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/johnomalley/Rails_Projects/Rails_4.1/sql_search_n_sort/test/dummy/app/views" ): 3: %thead 4: %tr 5: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 6: =render "sort_form" #, :opts => @sort_dropdown_opts 7: %td{:colspan => 3, :style => "padding-bottom: 15px;"} 8: =render "search_form" 9: %tr app/views/people/index.html.haml:6:in `_app_views_people_index_html_haml__3646038511775210484_2162410260' Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/johnomalley/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.6ms) Started GET "/people" for 127.0.0.1 at 2015-03-11 19:43:29 -0400 Processing by PeopleController#index as HTML Rendered application/_sort_form.html.haml (1.3ms) Rendered application/_search_form.html.haml (1.2ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (17.3ms) Completed 200 OK in 35ms (Views: 31.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-11 19:43:29 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2015-03-11 19:43:29 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-11 19:43:29 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-11 19:43:29 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2015-03-11 19:43:34 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.6ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (12.4ms) Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.6ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-11 19:43:34 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-11 19:43:34 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2015-03-11 19:43:34 -0400 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-11 19:43:34 -0400 Started GET "/people?search_for=" for 127.0.0.1 at 2015-03-11 19:46:22 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>""} Rendered application/_sort_form.html.haml (0.5ms) Rendered application/_search_form.html.haml (0.2ms) Person Load (0.6ms) SELECT "people".* FROM "people" ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (14.5ms) Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-11 19:46:23 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-11 19:46:23 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2015-03-11 19:46:23 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-11 19:46:23 -0400 Started GET "/people?search_for=beer" for 127.0.0.1 at 2015-03-11 19:46:28 -0400 Processing by PeopleController#index as HTML Parameters: {"search_for"=>"beer"} Rendered application/_sort_form.html.haml (63.5ms) Rendered application/_search_form.html.haml (0.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (((('f' OR "people"."first_name" LIKE '%#{search_for}%') OR "people"."last_name" LIKE '%#{search_for}%') OR "people"."bio" LIKE '%#{search_for}%')) ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (70.1ms) Completed 200 OK in 87ms (Views: 85.3ms | ActiveRecord: 0.3ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-11 19:46:28 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-11 19:46:28 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-11 19:46:28 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2015-03-11 19:46:28 -0400 Started GET "/people?search_for=beer" for 127.0.0.1 at 2015-03-11 19:47:32 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PeopleController#index as HTML Parameters: {"search_for"=>"beer"} Rendered application/_sort_form.html.haml (1.5ms) Rendered application/_search_form.html.haml (1.3ms) Person Load (0.3ms) SELECT "people".* FROM "people" WHERE (((('f' OR "people"."first_name" LIKE '%beer%') OR "people"."last_name" LIKE '%beer%') OR "people"."bio" LIKE '%beer%')) ORDER BY "people"."last_name" ASC Rendered people/index.html.haml within layouts/application (21.1ms) Completed 200 OK in 68ms (Views: 65.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-11 19:47:32 -0400 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-11 19:47:32 -0400 Started GET "/assets/sql_search_n_sort.js?body=1" for 127.0.0.1 at 2015-03-11 19:47:32 -0400 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-11 19:47:32 -0400 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateComments (20160121020023)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "ctext" text, "commentator" varchar(255))  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160121020023"]]  (1.2ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddTimestampsToComments (20160121020232)  (0.1ms) begin transaction  (1.0ms) ALTER TABLE "comments" ADD "created_at" datetime  (0.1ms) ALTER TABLE "comments" ADD "updated_at" datetime SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160121020232"]]  (5.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddArticleIdToComments (20160121020730)  (0.1ms) begin transaction  (0.5ms) ALTER TABLE "comments" ADD "article_id" integer SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160121020730"]]  (5.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateItems (20160128023040)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "descr" text)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160128023040"]]  (1.3ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Mysql2::Error: Table 'sql-search-n-sort_development.members' doesn't exist: SHOW FULL FIELDS FROM `members` Mysql2::Error: Table 'ssns_development.members' doesn't exist: SHOW FULL FIELDS FROM `members` Mysql2::Error: Table 'ssns_development.members' doesn't exist: SHOW FULL FIELDS FROM `members` Mysql2::Error: Table 'ssns_development.members' doesn't exist: SHOW FULL FIELDS FROM `members` Mysql2::Error: Table 'ssns_development.members' doesn't exist: SHOW FULL FIELDS FROM `members`  (119.9ms) CREATE TABLE `articles` (`id` int(11) auto_increment PRIMARY KEY, `headline` varchar(255), `by_line` varchar(255), `date_pub` datetime, `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (180.4ms) CREATE TABLE `comments` (`id` int(11) auto_increment PRIMARY KEY, `ctext` text, `commentator` varchar(255), `created_at` datetime, `updated_at` datetime, `article_id` int(11)) ENGINE=InnoDB  (215.1ms) CREATE TABLE `items` (`id` int(11) auto_increment PRIMARY KEY, `name` varchar(255), `descr` text) ENGINE=InnoDB  (174.9ms) CREATE TABLE `people` (`id` int(11) auto_increment PRIMARY KEY, `first_name` varchar(255), `last_name` varchar(255), `age` int(11), `email` varchar(255), `bio` text, `nickname` varchar(255), `created_at` datetime, `updated_at` datetime, `dob` datetime, `grade` int(11)) ENGINE=InnoDB  (197.9ms) CREATE TABLE `products` (`id` int(11) auto_increment PRIMARY KEY, `name` varchar(255), `descr` text, `price` int(11), `date_produced` datetime, `manufacturer` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (188.5ms) CREATE TABLE `unsearchables` (`id` int(11) auto_increment PRIMARY KEY, `int` int(11), `dt` date, `tm` time, `dtm` datetime, `bool` tinyint(1), `flt` float, `dec` decimal, `bn` blob, `ts` datetime, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (166.2ms) CREATE TABLE `vehicles` (`id` int(11) auto_increment PRIMARY KEY, `year` int(11), `manufacturer` varchar(255), `model` varchar(255), `color` varchar(255), `engine` varchar(255), `doorrs` int(11), `cylinders` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (158.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB  (201.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)   (0.3ms) SELECT version FROM `schema_migrations`  (0.5ms) INSERT INTO `schema_migrations` (version) VALUES ('20160128023040')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20140713221826')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20140715080028')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20140723223003')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20140725015524')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20140725161555')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20141003015903')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20150306040113') Mysql2::Error: Table 'ssns_development.members' doesn't exist: SHOW FULL FIELDS FROM `members`  (16.5ms) DROP DATABASE IF EXISTS `ssns_development`  (0.5ms) DROP DATABASE IF EXISTS `ssns_test`  (0.5ms) CREATE DATABASE `ssns_development` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`  (0.5ms) CREATE DATABASE `ssns_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`  (177.2ms) CREATE TABLE `articles` (`id` int(11) auto_increment PRIMARY KEY, `headline` varchar(255), `by_line` varchar(255), `date_pub` datetime, `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (463.7ms) CREATE TABLE `comments` (`id` int(11) auto_increment PRIMARY KEY, `ctext` text, `commentator` varchar(255), `created_at` datetime, `updated_at` datetime, `article_id` int(11)) ENGINE=InnoDB  (144.4ms) CREATE TABLE `items` (`id` int(11) auto_increment PRIMARY KEY, `name` varchar(255), `descr` text) ENGINE=InnoDB  (153.6ms) CREATE TABLE `members` (`id` int(11) auto_increment PRIMARY KEY, `first_name` varchar(255), `last_name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (179.2ms) CREATE TABLE `people` (`id` int(11) auto_increment PRIMARY KEY, `first_name` varchar(255), `last_name` varchar(255), `age` int(11), `email` varchar(255), `bio` text, `nickname` varchar(255), `created_at` datetime, `updated_at` datetime, `dob` datetime, `grade` int(11)) ENGINE=InnoDB  (156.7ms) CREATE TABLE `products` (`id` int(11) auto_increment PRIMARY KEY, `name` varchar(255), `descr` text, `price` int(11), `date_produced` datetime, `manufacturer` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (165.4ms) CREATE TABLE `unsearchables` (`id` int(11) auto_increment PRIMARY KEY, `int` int(11), `dt` date, `tm` time, `dtm` datetime, `bool` tinyint(1), `flt` float, `dec` decimal, `bn` blob, `ts` datetime, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (154.3ms) CREATE TABLE `vehicles` (`id` int(11) auto_increment PRIMARY KEY, `year` int(11), `manufacturer` varchar(255), `model` varchar(255), `color` varchar(255), `engine` varchar(255), `doorrs` int(11), `cylinders` int(11), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB  (342.8ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB  (268.2ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)  (0.3ms) SELECT version FROM `schema_migrations`  (0.6ms) INSERT INTO `schema_migrations` (version) VALUES ('20160128023040')  (0.5ms) INSERT INTO `schema_migrations` (version) VALUES ('20140713221826')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20140715080028')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20140723223003')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20140725015524')  (0.4ms) INSERT INTO `schema_migrations` (version) VALUES ('20140725161555')  (0.5ms) INSERT INTO `schema_migrations` (version) VALUES ('20141003015903')  (0.3ms) INSERT INTO `schema_migrations` (version) VALUES ('20150306040113') ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations` ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations` ActiveRecord::SchemaMigration Load (0.3ms) SELECT `schema_migrations`.* FROM `schema_migrations` ActiveRecord::SchemaMigration Load (35.8ms) SELECT `schema_migrations`.* FROM `schema_migrations` Migrating to CreateComments (20160121020023)  (62.5ms) CREATE TABLE `comments` (`id` int(11) auto_increment PRIMARY KEY, `ctext` text, `commentator` varchar(255)) ENGINE=InnoDB Mysql2::Error: Table 'comments' already exists: CREATE TABLE `comments` (`id` int(11) auto_increment PRIMARY KEY, `ctext` text, `commentator` varchar(255)) ENGINE=InnoDB ActiveRecord::SchemaMigration Load (0.4ms) SELECT `schema_migrations`.* FROM `schema_migrations` Migrating to CreateComments (20160121020023)  (130.4ms) CREATE TABLE `comments` (`id` int(11) auto_increment PRIMARY KEY, `ctext` text, `commentator` varchar(255)) ENGINE=InnoDB  (0.2ms) BEGIN SQL (0.3ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20160121020023')  (0.5ms) COMMIT Migrating to AddTimestampsToComments (20160121020232)  (217.9ms) ALTER TABLE `comments` ADD `created_at` datetime  (175.7ms) ALTER TABLE `comments` ADD `updated_at` datetime  (0.2ms) BEGIN SQL (0.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20160121020232')  (0.5ms) COMMIT Migrating to AddArticleIdToComments (20160121020730)  (210.6ms) ALTER TABLE `comments` ADD `article_id` int(11)  (0.2ms) BEGIN SQL (0.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20160121020730')  (28.0ms) COMMIT ActiveRecord::SchemaMigration Load (0.4ms) SELECT `schema_migrations`.* FROM `schema_migrations` Comment Load (1.3ms) SELECT `comments`.* FROM `comments` INNER JOIN `articles` ON `articles`.`id` = `comments`.`article_id` ORDER BY `articles`.`headline` ASC Comment Load (1.8ms) SELECT `comments`.* FROM `comments` INNER JOIN `articles` ON `articles`.`id` = `comments`.`article_id` ORDER BY `articles`.`headline` ASC Comment Load (0.6ms) SELECT `comments`.* FROM `comments` ORDER BY `articles`.`headline` ASC Mysql2::Error: Unknown column 'articles.headline' in 'order clause': SELECT `comments`.* FROM `comments` ORDER BY `articles`.`headline` ASC Comment Load (0.5ms) SELECT `comments`.* FROM `comments` ORDER BY `articles`.`headline` ASC Mysql2::Error: Unknown column 'articles.headline' in 'order clause': SELECT `comments`.* FROM `comments` ORDER BY `articles`.`headline` ASC Comment Load (1.7ms) SELECT `comments`.* FROM `comments` INNER JOIN `articles` ON `articles`.`id` = `comments`.`article_id` ORDER BY `articles`.`headline` ASC Comment Load (0.4ms) SELECT `comments`.* FROM `comments` Comment Load (0.4ms) SELECT `comments`.* FROM `comments` Comment Load (0.4ms) SELECT `comments`.* FROM `comments` Comment Load (0.3ms) SELECT `comments`.* FROM `comments` Comment Load (0.4ms) SELECT `comments`.* FROM `comments` ORDER BY `articles`.`headline` ASC Mysql2::Error: Unknown column 'articles.headline' in 'order clause': SELECT `comments`.* FROM `comments` ORDER BY `articles`.`headline` ASC Comment Load (1.3ms) SELECT `comments`.* FROM `comments` INNER JOIN `articles` ON `articles`.`id` = `comments`.`article_id` ORDER BY `articles`.`headline` ASC Comment Load (1.7ms) SELECT `comments`.* FROM `comments` INNER JOIN `articles` ON `articles`.`id` = `comments`.`article_id` ORDER BY `articles`.`headline` ASC  (0.4ms) SET NAMES utf8, @@SESSION.sql_mode = CONCAT(CONCAT(@@sql_mode, ',STRICT_ALL_TABLES'), ',NO_AUTO_VALUE_ON_ZERO'), @@SESSION.sql_auto_is_null = 0, @@SESSION.wait_timeout = 2147483