Started GET "/" for ::1 at 2016-05-12 17:51:15 -0300 ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rake db:migrate RAILS_ENV=development ): activerecord (4.2.0) lib/active_record/migration.rb:393:in `check_pending!' activerecord (4.2.0) lib/active_record/migration.rb:374:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.1ms)  (62.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (79.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateSearchLocations (20150901153531)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "search_locations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150901153531"]]  (69.7ms) 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 CreatePulitzerPostTypes (20160512205158)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205158"]]  (59.7ms) commit transaction Migrating to CreatePulitzerContentElementTypes (20160512205159)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205159"]]  (77.4ms) commit transaction Migrating to CreatePulitzerPosts (20160512205160)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "post_type_id" integer, "status" varchar DEFAULT 'unpublished', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205160"]]  (78.9ms) commit transaction Migrating to CreatePulitzerContentElements (20160512205161)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "post_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205161"]]  (77.3ms) commit transaction Migrating to CreatePulitzerTags (20160512205162)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "pulitzer_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205162"]]  (76.4ms) commit transaction Migrating to CreatePulitzerPostTags (20160512205163)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205163"]]  (77.6ms) commit transaction Migrating to CreatePulitzerPostTypeContentElementTypes (20160512205164)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "pulitzer_post_type_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "content_element_type_id" integer, "label" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205164"]]  (77.9ms) commit transaction Migrating to AddPluralAndTemplateToPulitzerPostTypes (20160512205165)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_post_types" ADD "plural" boolean  (0.1ms) ALTER TABLE "pulitzer_post_types" ADD "template" boolean SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205165"]]  (57.8ms) commit transaction Migrating to AddPulitzerContentElementTypes (20160512205166)  (0.1ms) begin transaction Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text"], ["created_at", "2016-05-12 20:52:07.915344"], ["updated_at", "2016-05-12 20:52:07.915344"]] Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Image' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Image"], ["created_at", "2016-05-12 20:52:07.917109"], ["updated_at", "2016-05-12 20:52:07.917109"]] Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1 SQL (0.0ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Video"], ["created_at", "2016-05-12 20:52:07.918411"], ["updated_at", "2016-05-12 20:52:07.918411"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205166"]]  (38.6ms) commit transaction Migrating to AddSlugToPulitzerPosts (20160512205167)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_posts" ADD "slug" varchar  (0.1ms) select sqlite_version(*)  (0.1ms) CREATE UNIQUE INDEX "index_pulitzer_posts_on_slug" ON "pulitzer_posts" ("slug") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205167"]]  (61.7ms) commit transaction Migrating to ChangeLabelTypeFromPulitzerPostTags (20160512205168)  (0.1ms) begin transaction  (0.5ms) CREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_post_tags"  (0.2ms) DROP TABLE "pulitzer_post_tags"  (0.1ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_post_tags"  (0.1ms) DROP TABLE "apulitzer_post_tags" SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205168"]]  (54.5ms) commit transaction Migrating to AddTextEditorToPulitzerPostTypeContentElementTypes (20160512205169)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "pulitzer_post_type_content_element_types" ADD "text_editor" varchar SQL (0.1ms) UPDATE "pulitzer_post_type_content_element_types" SET "text_editor" = 'None' WHERE "pulitzer_post_type_content_element_types"."id" IN (SELECT "pulitzer_post_type_content_element_types"."id" FROM "pulitzer_post_type_content_element_types" ORDER BY "pulitzer_post_type_content_element_types"."id" ASC) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205169"]]  (38.8ms) commit transaction Migrating to CreatePulitzerVersions (20160512205170)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "pulitzer_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer DEFAULT 0, "post_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205170"]]  (57.4ms) commit transaction Migrating to ChangePostElementsToVersions (20160512205171)  (0.1ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "apulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_content_elements"  (0.3ms) DROP TABLE "pulitzer_content_elements"  (0.3ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_content_elements"  (0.3ms) DROP TABLE "apulitzer_content_elements"  (0.3ms) CREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_post_tags"  (0.3ms) DROP TABLE "pulitzer_post_tags"  (0.3ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_post_tags"  (0.2ms) DROP TABLE "apulitzer_post_tags" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" ORDER BY "pulitzer_posts"."id" ASC LIMIT 1000 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205171"]]  (40.3ms) commit transaction Migrating to AddPostTypeContentElementAttributesToContentElements (20160512205172)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_content_elements" ADD "text_editor" varchar  (0.2ms) ALTER TABLE "pulitzer_content_elements" ADD "height" integer DEFAULT 100  (0.2ms) ALTER TABLE "pulitzer_content_elements" ADD "width" integer DEFAULT 100  (0.2ms) ALTER TABLE "pulitzer_content_elements" ADD "sort_order" integer Scoped order and limit are ignored, it's forced to be batch order and batch size Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1000 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205172"]]  (40.9ms) commit transaction Migrating to ChangeTemplateToPulitzerPostTypes (20160512205173)  (0.1ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "apulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean, "template" boolean)   (0.1ms) SELECT * FROM "pulitzer_post_types"  (0.2ms) DROP TABLE "pulitzer_post_types"  (0.2ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean)  (0.1ms) SELECT * FROM "apulitzer_post_types"  (0.1ms) DROP TABLE "apulitzer_post_types"  (0.2ms) ALTER TABLE "pulitzer_post_types" ADD "kind" integer DEFAULT 0 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205173"]]  (37.6ms) commit transaction Migrating to AddKindToPulitzerContentElements (20160512205174)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "pulitzer_content_elements" ADD "kind" integer DEFAULT 0 SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205174"]]  (40.1ms) commit transaction Migrating to AddErrorsToVersion (20160512205175)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_versions" ADD "cloning_errors" jsonb SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205175"]]  (37.7ms) commit transaction Migrating to AddParentIdToPulitzerTag (20160512205176)  (0.2ms) begin transaction  (0.6ms) ALTER TABLE "pulitzer_tags" ADD "parent_id" integer  (0.3ms) ALTER TABLE "pulitzer_tags" ADD "hierarchical" boolean DEFAULT 'f' NOT NULL  (0.2ms) CREATE INDEX "index_pulitzer_tags_on_hierarchical" ON "pulitzer_tags" ("hierarchical") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205176"]]  (60.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_pulitzer_posts_on_slug' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_pulitzer_posts_on_slug' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_pulitzer_tags_on_hierarchical' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_pulitzer_tags_on_hierarchical' AND type='index' Started GET "/" for ::1 at 2016-05-12 17:52:20 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 18ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (26.9ms) Started GET "/" for ::1 at 2016-05-12 17:52:21 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.3ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (20.5ms) Started GET "/" for ::1 at 2016-05-12 17:52:21 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.8ms) Started GET "/" for ::1 at 2016-05-12 17:52:22 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.8ms) Started GET "/" for ::1 at 2016-05-12 17:52:24 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.9ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Started GET "/" for ::1 at 2016-05-12 17:52:51 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 13ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.7ms) Started GET "/" for ::1 at 2016-05-12 17:52:52 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (20.2ms) Started GET "/" for ::1 at 2016-05-12 17:52:53 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.3ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.6ms) Started GET "/" for ::1 at 2016-05-12 17:52:53 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 0ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.3ms) Started GET "/" for ::1 at 2016-05-12 17:52:53 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.5ms) Started GET "/" for ::1 at 2016-05-12 17:52:53 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 0ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.8ms) Started GET "/" for ::1 at 2016-05-12 17:52:54 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.4ms) Started GET "/" for ::1 at 2016-05-12 17:52:54 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.3ms) Started GET "/" for ::1 at 2016-05-12 17:52:55 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.0ms) Started GET "/" for ::1 at 2016-05-12 17:52:55 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.1ms) Started GET "/" for ::1 at 2016-05-12 17:52:55 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.8ms) Started GET "/" for ::1 at 2016-05-12 17:52:56 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.9ms) Started GET "/" for ::1 at 2016-05-12 17:52:56 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.8ms) Started GET "/" for ::1 at 2016-05-12 17:52:56 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 0ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.1ms) Started GET "/" for ::1 at 2016-05-12 17:52:56 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.5ms) Started GET "/" for ::1 at 2016-05-12 17:52:56 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.7ms)  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) rollback transaction DEPRECATION WARNING: You attempted to assign a value which is not explicitly `true` or `false` to a boolean column. Currently this value casts to `false`. This will change to match Ruby's semantics, and will cast to `true` in Rails 5. If you would like to maintain the current behavior, you should explicitly handle the values you would like cast to `false`. (called from
at (pry):6)  (0.2ms) begin transaction SQL (0.6ms) INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "News articles"], ["plural", "f"], ["created_at", "2016-05-12 20:54:00.916228"], ["updated_at", "2016-05-12 20:54:00.916228"]]  (44.7ms) commit transaction Started GET "/" for ::1 at 2016-05-12 17:54:28 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Pulitzer::Post Load (0.3ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? [["post_type_id", 1]] Rendered pages/news_posts.html.erb within layouts/application (4.3ms) Completed 200 OK in 349ms (Views: 312.9ms | ActiveRecord: 0.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-12 17:54:28 -0300 Started GET "/" for ::1 at 2016-05-12 17:54:30 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? [["post_type_id", 1]] Rendered pages/news_posts.html.erb within layouts/application (0.5ms) Completed 200 OK in 56ms (Views: 54.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-12 17:54:30 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-12 17:54:30 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-12 17:54:30 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-12 17:54:30 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-12 17:54:30 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-12 17:54:30 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-12 17:54:30 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-12 17:54:30 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-12 17:54:30 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-12 17:54:30 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-12 17:54:30 -0300  (62.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (79.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateSearchLocations (20150901153531)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "search_locations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150901153531"]]  (69.3ms) commit transaction Migrating to CreatePulitzerPostTypes (20160512205158)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205158"]]  (79.1ms) commit transaction Migrating to CreatePulitzerContentElementTypes (20160512205159)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "pulitzer_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205159"]]  (76.9ms) commit transaction Migrating to CreatePulitzerPosts (20160512205160)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "pulitzer_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "post_type_id" integer, "status" varchar DEFAULT 'unpublished', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205160"]]  (77.9ms) commit transaction Migrating to CreatePulitzerContentElements (20160512205161)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "post_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205161"]]  (77.9ms) commit transaction Migrating to CreatePulitzerTags (20160512205162)  (0.2ms) begin transaction  (0.5ms) CREATE TABLE "pulitzer_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205162"]]  (75.8ms) commit transaction Migrating to CreatePulitzerPostTags (20160512205163)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205163"]]  (77.4ms) commit transaction Migrating to CreatePulitzerPostTypeContentElementTypes (20160512205164)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_post_type_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "content_element_type_id" integer, "label" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205164"]]  (76.1ms) commit transaction Migrating to AddPluralAndTemplateToPulitzerPostTypes (20160512205165)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_post_types" ADD "plural" boolean  (0.1ms) ALTER TABLE "pulitzer_post_types" ADD "template" boolean SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205165"]]  (57.8ms) commit transaction Migrating to AddPulitzerContentElementTypes (20160512205166)  (0.1ms) begin transaction Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text"], ["created_at", "2016-05-12 20:54:42.067695"], ["updated_at", "2016-05-12 20:54:42.067695"]] Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Image' LIMIT 1 SQL (0.0ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Image"], ["created_at", "2016-05-12 20:54:42.069405"], ["updated_at", "2016-05-12 20:54:42.069405"]] Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1 SQL (0.0ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Video"], ["created_at", "2016-05-12 20:54:42.070634"], ["updated_at", "2016-05-12 20:54:42.070634"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205166"]]  (40.0ms) commit transaction Migrating to AddSlugToPulitzerPosts (20160512205167)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_posts" ADD "slug" varchar  (0.2ms) CREATE UNIQUE INDEX "index_pulitzer_posts_on_slug" ON "pulitzer_posts" ("slug") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205167"]]  (60.9ms) commit transaction Migrating to ChangeLabelTypeFromPulitzerPostTags (20160512205168)  (0.1ms) begin transaction  (0.4ms) CREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_post_tags"  (0.2ms) DROP TABLE "pulitzer_post_tags"  (0.1ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_post_tags"  (0.1ms) DROP TABLE "apulitzer_post_tags" SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205168"]]  (55.9ms) commit transaction Migrating to AddTextEditorToPulitzerPostTypeContentElementTypes (20160512205169)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_post_type_content_element_types" ADD "text_editor" varchar SQL (0.1ms) UPDATE "pulitzer_post_type_content_element_types" SET "text_editor" = 'None' WHERE "pulitzer_post_type_content_element_types"."id" IN (SELECT "pulitzer_post_type_content_element_types"."id" FROM "pulitzer_post_type_content_element_types" ORDER BY "pulitzer_post_type_content_element_types"."id" ASC) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205169"]]  (38.6ms) commit transaction Migrating to CreatePulitzerVersions (20160512205170)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer DEFAULT 0, "post_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205170"]]  (57.3ms) commit transaction Migrating to ChangePostElementsToVersions (20160512205171)  (0.1ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "apulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_content_elements"  (0.2ms) DROP TABLE "pulitzer_content_elements"  (0.1ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_content_elements"  (0.1ms) DROP TABLE "apulitzer_content_elements"  (0.1ms) CREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_post_tags"  (0.1ms) DROP TABLE "pulitzer_post_tags"  (0.1ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_post_tags"  (0.1ms) DROP TABLE "apulitzer_post_tags" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" ORDER BY "pulitzer_posts"."id" ASC LIMIT 1000 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205171"]]  (41.7ms) commit transaction Migrating to AddPostTypeContentElementAttributesToContentElements (20160512205172)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_content_elements" ADD "text_editor" varchar  (0.1ms) ALTER TABLE "pulitzer_content_elements" ADD "height" integer DEFAULT 100  (0.1ms) ALTER TABLE "pulitzer_content_elements" ADD "width" integer DEFAULT 100  (0.1ms) ALTER TABLE "pulitzer_content_elements" ADD "sort_order" integer Scoped order and limit are ignored, it's forced to be batch order and batch size Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1000 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205172"]]  (37.5ms) commit transaction Migrating to ChangeTemplateToPulitzerPostTypes (20160512205173)  (0.1ms) begin transaction  (0.3ms) CREATE TEMPORARY TABLE "apulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean, "template" boolean)   (0.1ms) SELECT * FROM "pulitzer_post_types"  (0.3ms) DROP TABLE "pulitzer_post_types"  (0.2ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean)  (0.1ms) SELECT * FROM "apulitzer_post_types"  (0.2ms) DROP TABLE "apulitzer_post_types"  (0.3ms) ALTER TABLE "pulitzer_post_types" ADD "kind" integer DEFAULT 0 SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205173"]]  (39.5ms) commit transaction Migrating to AddKindToPulitzerContentElements (20160512205174)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_content_elements" ADD "kind" integer DEFAULT 0 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205174"]]  (39.7ms) commit transaction Migrating to AddErrorsToVersion (20160512205175)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_versions" ADD "cloning_errors" jsonb SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205175"]]  (37.3ms) commit transaction Migrating to AddParentIdToPulitzerTag (20160512205176)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_tags" ADD "parent_id" integer  (0.2ms) ALTER TABLE "pulitzer_tags" ADD "hierarchical" boolean DEFAULT 'f' NOT NULL  (0.1ms) CREATE INDEX "index_pulitzer_tags_on_hierarchical" ON "pulitzer_tags" ("hierarchical") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512205176"]]  (60.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_pulitzer_posts_on_slug' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_pulitzer_posts_on_slug' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_pulitzer_tags_on_hierarchical' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_pulitzer_tags_on_hierarchical' AND type='index' Started GET "/" for ::1 at 2016-05-12 17:54:58 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 16ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.3ms) Started GET "/" for ::1 at 2016-05-12 17:55:25 -0300 Processing by PagesController#news_posts as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."name" = ? LIMIT 1 [["name", "News articles"]] Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `posts' for nil:NilClass): app/controllers/pages_controller.rb:7:in `news_posts' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.1ms) Started GET "/pulitzer" for ::1 at 2016-05-13 14:06:15 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::PostTypesController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.0ms) Started GET "/pulitzer" for ::1 at 2016-05-13 14:06:30 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (5.7ms) Completed 200 OK in 156ms (Views: 148.2ms | ActiveRecord: 0.3ms) Started GET "/pulitzer" for ::1 at 2016-05-13 14:06:30 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (0.8ms) Completed 200 OK in 62ms (Views: 61.7ms | ActiveRecord: 0.1ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/pulitzer" for ::1 at 2016-05-13 14:06:30 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (0.9ms) Completed 200 OK in 48ms (Views: 48.1ms | ActiveRecord: 0.2ms) Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 14:06:30 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 14:06:35 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (4.2ms) Completed 200 OK in 70ms (Views: 58.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 14:06:35 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=0rxncX4H8WIN%2FIjWKgTWupSFKkEYYuAXEI%2BPLZrqf%2BDw2M7EGswbAfkOC%2BNteg2aBH2e0LhM8y6TQepQhcYTuQ%3D%3D" for ::1 at 2016-05-13 14:06:37 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"0rxncX4H8WIN/IjWKgTWupSFKkEYYuAXEI+PLZrqf+Dw2M7EGswbAfkOC+Nteg2aBH2e0LhM8y6TQepQhcYTuQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (13.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (22.0ms) Completed 200 OK in 48ms (Views: 44.2ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 14:07:39 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (0.9ms) Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.1ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 14:07:39 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=IWByVSmPOpuNXSvmq0IKNiPWFzxqnHEPTXlIJyBrjPMDBNvgTUTQ%2BHmvqNPsPNEWsy6jrcqyYjbOty1aP0fgqg%3D%3D" for ::1 at 2016-05-13 14:07:40 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"IWByVSmPOpuNXSvmq0IKNiPWFzxqnHEPTXlIJyBrjPMDBNvgTUTQ+HmvqNPsPNEWsy6jrcqyYjbOty1aP0fgqg=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.7ms) Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-13 14:07:44 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"DifVJDhW4TYRkkT9HeDEvX4OcQs/DIe3pmyAKz1QVBgsQ3yRXJ0LVeVgx8hanh+d7vbFmp8ilI4louVWInw4QQ==", "tag"=>{"name"=>"something", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'something' LIMIT 1 SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "something"], ["hierarchical", "t"], ["created_at", "2016-05-13 17:07:44.363683"], ["updated_at", "2016-05-13 17:07:44.363683"]]  (79.1ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.1ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.9ms) Completed 200 OK in 110ms (Views: 16.8ms | ActiveRecord: 80.0ms) Started GET "/pulitzer/tags/new?tag%5Bparent_id%5D=1&authenticity_token=IWByVSmPOpuNXSvmq0IKNiPWFzxqnHEPTXlIJyBrjPMDBNvgTUTQ%2BHmvqNPsPNEWsy6jrcqyYjbOty1aP0fgqg%3D%3D" for ::1 at 2016-05-13 14:07:45 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"parent_id"=>"1"}, "authenticity_token"=>"IWByVSmPOpuNXSvmq0IKNiPWFzxqnHEPTXlIJyBrjPMDBNvgTUTQ+HmvqNPsPNEWsy6jrcqyYjbOty1aP0fgqg=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.2ms) Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-13 14:07:49 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"F2x0kdoFUImlxAYIaFGyvQNyOYadortjH031iXL4UBA1CN0kvs666lE2hT0vL2mdk4qNFz2MqFqcg5D0bdQ8SQ==", "tag"=>{"name"=>"something else", "hierarchical"=>"f", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'something else' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "something else"], ["parent_id", 1], ["created_at", "2016-05-13 17:07:49.658152"], ["updated_at", "2016-05-13 17:07:49.658152"]]  (71.9ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.1ms) Completed 200 OK in 83ms (Views: 7.0ms | ActiveRecord: 72.5ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-13 14:07:52 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"F2x0kdoFUImlxAYIaFGyvQNyOYadortjH031iXL4UBA1CN0kvs666lE2hT0vL2mdk4qNFz2MqFqcg5D0bdQ8SQ==", "tag"=>{"name"=>"something else", "hierarchical"=>"f", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'something else' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (16.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (19.8ms) Completed 500 Internal Server Error in 47ms ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"pulitzer/tags", :format=>nil, :id=>#} missing required keys: [:id]): 3:
  • <%= tag.name %>
  • 4: <% if authenticated %> 5:
  • 6: <%= ajax_link "Edit", edit_tag_path(tag), {}, dom_target(tag) %> 7:
  • 8:
  • 9: <%= ajax_delete 'Delete', tag_path(tag), {}, dom_target(tag) %> actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb:6:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__show_html_erb___1371117791164296817_47028807787360' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__show_wrapper_html_erb___4201358829903561670_47028807889300' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:19:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (7.6ms) Started GET "/pulitzer/tags/2/edit?authenticity_token=IWByVSmPOpuNXSvmq0IKNiPWFzxqnHEPTXlIJyBrjPMDBNvgTUTQ%2BHmvqNPsPNEWsy6jrcqyYjbOty1aP0fgqg%3D%3D" for ::1 at 2016-05-13 14:07:59 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"IWByVSmPOpuNXSvmq0IKNiPWFzxqnHEPTXlIJyBrjPMDBNvgTUTQ+HmvqNPsPNEWsy6jrcqyYjbOty1aP0fgqg==", "id"=>"2"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (9.2ms) Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags/2?authenticity_token=IWByVSmPOpuNXSvmq0IKNiPWFzxqnHEPTXlIJyBrjPMDBNvgTUTQ%2BHmvqNPsPNEWsy6jrcqyYjbOty1aP0fgqg%3D%3D" for ::1 at 2016-05-13 14:08:01 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 14:08:15 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (6.4ms) Completed 200 OK in 59ms (Views: 58.1ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 14:08:15 -0300 Started GET "/pulitzer/" for ::1 at 2016-05-13 14:09:05 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (1.0ms) Completed 200 OK in 46ms (Views: 45.7ms | ActiveRecord: 0.1ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 14:09:05 -0300 Started GET "/pulitzer/post_types/new?authenticity_token=ZShgmYF%2FnqiODXKmjRGC5qf2uvNBsJwm41%2BmQdfwNklHTMks5bR0y3r%2F8ZPKb1nGNw4OYuGejx9gkcM8yNxaEA%3D%3D" for ::1 at 2016-05-13 14:09:06 -0300 Processing by Pulitzer::PostTypesController#new as */* Parameters: {"authenticity_token"=>"ZShgmYF/nqiODXKmjRGC5qf2uvNBsJwm41+mQdfwNklHTMks5bR0y3r/8ZPKb1nGNw4OYuGejx9gkcM8yNxaEA=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_form_fields.html.erb (3.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_new.html.erb (12.4ms) Completed 200 OK in 27ms (Views: 23.6ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/post_types" for ::1 at 2016-05-13 14:09:14 -0300 Processing by Pulitzer::PostTypesController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"/U4sWCPcQpU8lFMqvxng5urlJZwkvE2ZwTkOQU1GgIzfKoXtRxeo9shm0B/4ZzvGeh2RDYSSXqBC92s8Umrs1Q==", "post_type"=>{"name"=>"something something", "plural"=>"0", "kind"=>"template"}}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "something something"], ["plural", "f"], ["created_at", "2016-05-13 17:09:14.960936"], ["updated_at", "2016-05-13 17:09:14.960936"]]  (103.3ms) commit transaction Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]]  (0.1ms) begin transaction Pulitzer::Post Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "something-something"]] SQL (0.2ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "something something"], ["post_type_id", 1], ["slug", "something-something"], ["created_at", "2016-05-13 17:09:15.178948"], ["updated_at", "2016-05-13 17:09:15.178948"]] SQL (0.2ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-05-13 17:09:15.191980"], ["updated_at", "2016-05-13 17:09:15.191980"]]  (40.7ms) commit transaction Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] CACHE (0.0ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (3.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (7.1ms) Completed 200 OK in 296ms (Views: 10.6ms | ActiveRecord: 146.4ms) Started GET "/pulitzer/posts/something-something/edit" for ::1 at 2016-05-13 14:09:17 -0300 Processing by Pulitzer::PostsController#edit as HTML Parameters: {"id"=>"something-something"} Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "something-something"]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/posts/edit.html.erb within layouts/application (3.5ms) Completed 200 OK in 65ms (Views: 63.0ms | ActiveRecord: 0.4ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 14:09:17 -0300 Started GET "/pulitzer/versions/1/edit?authenticity_token=W0BOi3rp5%2BJzxWNaIf5qrBSV8FTxFk%2BE%2FJovatim%2F5B5JOc%2BHiINgYc34G9mgLGMhG1ExVE4XL1%2FVEoXx4qTyQ%3D%3D" for ::1 at 2016-05-13 14:09:17 -0300 Processing by Pulitzer::VersionsController#edit as */* Parameters: {"authenticity_token"=>"W0BOi3rp5+JzxWNaIf5qrBSV8FTxFk+E/Jovatim/5B5JOc+HiINgYc34G9mgLGMhG1ExVE4XL1/VEoXx4qTyQ==", "id"=>"1"} Pulitzer::Version Load (0.2ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (5.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (9.2ms) Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (4.1ms) Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_index.html.erb (44.9ms) Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (5.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_edit.html.erb (76.8ms) Completed 200 OK in 88ms (Views: 80.6ms | ActiveRecord: 1.4ms) Started GET "/pulitzer/post_tags/new?tag_model=Pulitzer%3A%3ATag&version_id=1&authenticity_token=W0BOi3rp5%2BJzxWNaIf5qrBSV8FTxFk%2BE%2FJovatim%2F5B5JOc%2BHiINgYc34G9mgLGMhG1ExVE4XL1%2FVEoXx4qTyQ%3D%3D" for ::1 at 2016-05-13 14:09:19 -0300 Processing by Pulitzer::PostTagsController#new as */* Parameters: {"tag_model"=>"Pulitzer::Tag", "version_id"=>"1", "authenticity_token"=>"W0BOi3rp5+JzxWNaIf5qrBSV8FTxFk+E/Jovatim/5B5JOc+HiINgYc34G9mgLGMhG1ExVE4XL1/VEoXx4qTyQ=="} Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Tag Load (0.8ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_new.html.erb (7.8ms) Completed 200 OK in 21ms (Views: 14.1ms | ActiveRecord: 1.0ms) Started GET "/pulitzer/post_types" for ::1 at 2016-05-13 14:10:51 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (8.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (9.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (11.9ms) Completed 200 OK in 63ms (Views: 62.8ms | ActiveRecord: 0.4ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 14:10:51 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 14:10:55 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (5.0ms) Completed 200 OK in 58ms (Views: 57.5ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 14:10:55 -0300 Started DELETE "/pulitzer/tags/1" for ::1 at 2016-05-13 14:11:17 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"kOApn53ZngNRlmksdd6vNX8DxvDhwJ4KsBJbVMp4FxqyhIAq+RJ0YKVk6hkyoHQV7/tyYUHujTMz3D4p1VR7Qw==", "id"=>"1"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.3ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 1], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 1]]  (43.2ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 50ms (Views: 1.3ms | ActiveRecord: 44.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=kOApn53ZngNRlmksdd6vNX8DxvDhwJ4KsBJbVMp4FxqyhIAq%2BRJ0YKVk6hkyoHQV7%2FtyYUHujTMz3D4p1VR7Qw%3D%3D" for ::1 at 2016-05-13 14:11:19 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"kOApn53ZngNRlmksdd6vNX8DxvDhwJ4KsBJbVMp4FxqyhIAq+RJ0YKVk6hkyoHQV7/tyYUHujTMz3D4p1VR7Qw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.1ms) Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms) Started GET "/pulitzer" for ::1 at 2016-05-13 14:11:27 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (3.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (3.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (5.1ms) Completed 200 OK in 54ms (Views: 53.0ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 14:11:27 -0300 Started GET "/pulitzer" for ::1 at 2016-05-13 15:13:03 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (38.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (39.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (51.5ms) Completed 200 OK in 164ms (Views: 156.7ms | ActiveRecord: 1.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:13:03 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:13:07 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (1.8ms) Completed 200 OK in 71ms (Views: 62.7ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:13:07 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=cwrBTdW7sqH0xWtMn8hF9YEjHypH0zxqnIoVwVVXIGVRbmj4sXBYwgA36HnYtp7VEduru%2Bf9L1MfRHC8SntMPA%3D%3D" for ::1 at 2016-05-13 15:13:11 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"cwrBTdW7sqH0xWtMn8hF9YEjHypH0zxqnIoVwVVXIGVRbmj4sXBYwgA36HnYtp7VEduru+f9L1MfRHC8SntMPA=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (9.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (17.6ms) Completed 200 OK in 24ms (Views: 20.4ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:14:42 -0300 SyntaxError (/home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:8: syntax error, unexpected keyword_end /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:45: syntax error, unexpected end-of-input, expecting keyword_end): /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:8: syntax error, unexpected keyword_end /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:45: syntax error, unexpected end-of-input, expecting keyword_end activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.6ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:14:49 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.6ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:14:56 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (18.8ms) Completed 500 Internal Server Error in 38ms ActionView::Template::Error (undefined local variable or method `authenticated' for #<#:0x0055d1495a9928>): 1:

    Tags

    2: <% if authenticated %> 3: <%= ajax_link 'Add a new root tag', new_tag_path("tag[hierarchical]" => true), {}, '#new_tag' %> 4:
    5: <% end %> /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags_index_html_erb__3134061994491888653_47178684165100' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.8ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:14:56 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (10.3ms) Completed 500 Internal Server Error in 13ms ActionView::Template::Error (undefined local variable or method `authenticated' for #<#:0x0055d14a3a6c60>): 1:

    Tags

    2: <% if authenticated %> 3: <%= ajax_link 'Add a new root tag', new_tag_path("tag[hierarchical]" => true), {}, '#new_tag' %> 4:
    5: <% end %> /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags_index_html_erb__3134061994491888653_47178684165100' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.7ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:14:57 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (6.8ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (undefined local variable or method `authenticated' for #<#:0x0055d149682b38>): 1:

    Tags

    2: <% if authenticated %> 3: <%= ajax_link 'Add a new root tag', new_tag_path("tag[hierarchical]" => true), {}, '#new_tag' %> 4:
    5: <% end %> /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags_index_html_erb__3134061994491888653_47178684165100' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:14:57 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (9.4ms) Completed 500 Internal Server Error in 13ms ActionView::Template::Error (undefined local variable or method `authenticated' for #<#:0x0055d14a63f0f8>): 1:

    Tags

    2: <% if authenticated %> 3: <%= ajax_link 'Add a new root tag', new_tag_path("tag[hierarchical]" => true), {}, '#new_tag' %> 4:
    5: <% end %> /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags_index_html_erb__3134061994491888653_47178684165100' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.3ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:14:57 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (6.9ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (undefined local variable or method `authenticated' for #<#:0x0055d14acbb788>): 1:

    Tags

    2: <% if authenticated %> 3: <%= ajax_link 'Add a new root tag', new_tag_path("tag[hierarchical]" => true), {}, '#new_tag' %> 4:
    5: <% end %> /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags_index_html_erb__3134061994491888653_47178684165100' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.6ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:17:33 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (4.8ms) Completed 500 Internal Server Error in 25ms ActionView::Template::Error (undefined method `each' for nil:NilClass): 5: <% end %> 6: 7:
    8: <% @tags.each do |tag| %> 9: <%= render partial: 'show_wrapper', locals: {tag: tag} %> 10: <% end %> 11:
    /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb:8:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags_index_html_erb___3756536548676098495_47163325904060' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (31.7ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:18:56 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.1ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (25.2ms) Completed 200 OK in 114ms (Views: 112.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:18:56 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:21:56 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.6ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:22:03 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (16.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (28.0ms) Completed 200 OK in 146ms (Views: 136.8ms | ActiveRecord: 0.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:22:03 -0300 Started GET "/pulitzer/tags/2/edit?authenticity_token=Zq65Ud5SIgRttQ0eAadYrJTkDVPS95NMWccubKKbC2JEyhDkupnIZ5lHjitG2YOMBBy5wnLZgHXaCUsRvbdnOw%3D%3D" for ::1 at 2016-05-13 15:22:06 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"Zq65Ud5SIgRttQ0eAadYrJTkDVPS95NMWccubKKbC2JEyhDkupnIZ5lHjitG2YOMBBy5wnLZgHXaCUsRvbdnOw==", "id"=>"2"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (31.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (37.1ms) Completed 500 Internal Server Error in 47ms ActionView::Template::Error (undefined method `checkbox' for #): 1: <%= f.label :name %> 2: <%= f.text_field :name %> 3: <%= f.checkbox :hierarchical %> 4: <%= f.hidden_field :parent_id %> /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb:3:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__form_fields_html_erb__3987524130404567638_47433852920920' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb:2:in `block in __home_darkside_work_pulitzer_app_views_pulitzer_tags__form_html_erb__629331370644260884_47433852875200' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb:1:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__form_html_erb__629331370644260884_47433852875200' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:15:in `edit' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (7.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:22:41 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (2.7ms) Completed 200 OK in 51ms (Views: 50.4ms | ActiveRecord: 0.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:22:41 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:22:42 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (3.8ms) Completed 200 OK in 60ms (Views: 59.5ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:22:42 -0300 Started GET "/pulitzer/tags/2/edit?authenticity_token=pxIowEuZhfeGfkYkv4jo1twMUm0g62aiHRzR855oooqFdoF1L1JvlHKMxRH49jP2TPTm%2FIDFdZue0rSOgUTO0w%3D%3D" for ::1 at 2016-05-13 15:22:44 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"pxIowEuZhfeGfkYkv4jo1twMUm0g62aiHRzR855oooqFdoF1L1JvlHKMxRH49jP2TPTm/IDFdZue0rSOgUTO0w==", "id"=>"2"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (2.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (10.5ms) Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:25:38 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (3.5ms) Completed 200 OK in 52ms (Views: 51.2ms | ActiveRecord: 0.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:25:38 -0300 Started GET "/pulitzer/tags/2/edit?authenticity_token=rDf%2F3Lb3WaETO4oTPwIlBQ5%2Bi5tw53BGGdwuDduZOZKOU1Zp0jyzwufJCSZ4fP4lnoY%2FCtDJY3%2BaEktwxLVVyw%3D%3D" for ::1 at 2016-05-13 15:25:40 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"rDf/3Lb3WaETO4oTPwIlBQ5+i5tw53BGGdwuDduZOZKOU1Zp0jyzwufJCSZ4fP4lnoY/CtDJY3+aEktwxLVVyw==", "id"=>"2"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (8.3ms) Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.1ms) Started PATCH "/pulitzer/tags/2" for ::1 at 2016-05-13 15:25:44 -0300 Processing by Pulitzer::TagsController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"9uHuJ9DCgrcjt3v5dzs5YV+V09S/Nt8lGkg+u/95T23UhUeStAlo1NdF+MwwReJBz21nRR8YzByZhlvG4FUjNA==", "tag"=>{"name"=>"something else", "hierarchical"=>"1", "parent_id"=>"1"}, "id"=>"2"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'something else' AND "pulitzer_tags"."id" != 2) LIMIT 1 SQL (0.3ms) UPDATE "pulitzer_tags" SET "hierarchical" = ?, "updated_at" = ? WHERE "pulitzer_tags"."id" = ? [["hierarchical", "t"], ["updated_at", "2016-05-13 18:25:44.499392"], ["id", 2]]  (43.5ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Completed 200 OK in 60ms (Views: 6.9ms | ActiveRecord: 44.1ms) Started GET "/pulitzer/tags/2/edit?authenticity_token=rDf%2F3Lb3WaETO4oTPwIlBQ5%2Bi5tw53BGGdwuDduZOZKOU1Zp0jyzwufJCSZ4fP4lnoY%2FCtDJY3%2BaEktwxLVVyw%3D%3D" for ::1 at 2016-05-13 15:25:48 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"rDf/3Lb3WaETO4oTPwIlBQ5+i5tw53BGGdwuDduZOZKOU1Zp0jyzwufJCSZ4fP4lnoY/CtDJY3+aEktwxLVVyw==", "id"=>"2"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (9.1ms) Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) Started PATCH "/pulitzer/tags/2" for ::1 at 2016-05-13 15:25:49 -0300 Processing by Pulitzer::TagsController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"GHjyKY+SymnfrDWU7sNGw+p42lc6vFOBejniz2PPUIQ6HFuc61kgCitetqGpvZ3jeoBuxpqSQLj594eyfOM83Q==", "tag"=>{"name"=>"something else", "hierarchical"=>"1", "parent_id"=>"1"}, "id"=>"2"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'something else' AND "pulitzer_tags"."id" != 2) LIMIT 1  (0.1ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.0ms) Completed 200 OK in 10ms (Views: 4.8ms | ActiveRecord: 0.6ms) Started GET "/pulitzer/tags/2/edit?authenticity_token=rDf%2F3Lb3WaETO4oTPwIlBQ5%2Bi5tw53BGGdwuDduZOZKOU1Zp0jyzwufJCSZ4fP4lnoY%2FCtDJY3%2BaEktwxLVVyw%3D%3D" for ::1 at 2016-05-13 15:25:50 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"rDf/3Lb3WaETO4oTPwIlBQ5+i5tw53BGGdwuDduZOZKOU1Zp0jyzwufJCSZ4fP4lnoY/CtDJY3+aEktwxLVVyw==", "id"=>"2"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (13.1ms) Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.2ms) Started PATCH "/pulitzer/tags/2" for ::1 at 2016-05-13 15:25:53 -0300 Processing by Pulitzer::TagsController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"k0tVy+kElNU5E+QJvNDMZz2RSecztAodVBF7T0WXvtmxL/x+jc9+ts3hZzz7rhdHrWn9dpOaGSTX3x4yWrvSgA==", "tag"=>{"name"=>"something else", "hierarchical"=>"1", "parent_id"=>"1"}, "id"=>"2"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'something else' AND "pulitzer_tags"."id" != 2) LIMIT 1  (0.0ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Completed 200 OK in 6ms (Views: 3.2ms | ActiveRecord: 0.3ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=rDf%2F3Lb3WaETO4oTPwIlBQ5%2Bi5tw53BGGdwuDduZOZKOU1Zp0jyzwufJCSZ4fP4lnoY%2FCtDJY3%2BaEktwxLVVyw%3D%3D" for ::1 at 2016-05-13 15:25:55 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"rDf/3Lb3WaETO4oTPwIlBQ5+i5tw53BGGdwuDduZOZKOU1Zp0jyzwufJCSZ4fP4lnoY/CtDJY3+aEktwxLVVyw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.2ms) Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-13 15:25:58 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"R66CeZPOJQqN4NSk7tpC6SSIa56hHuTcYT6lfALuT2FlyivM9wXPaXkSV5GppJnJtHDfDwEw9+Xi8MABHcIjOA==", "tag"=>{"name"=>"something", "hierarchical"=>"1", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'something' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "something"], ["hierarchical", "t"], ["created_at", "2016-05-13 18:25:58.337062"], ["updated_at", "2016-05-13 18:25:58.337062"]]  (82.0ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.6ms) Completed 200 OK in 96ms (Views: 9.7ms | ActiveRecord: 82.7ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:27:09 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:27:15 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (19.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (33.1ms) Completed 200 OK in 161ms (Views: 150.1ms | ActiveRecord: 0.8ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:27:15 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (4.7ms) Completed 200 OK in 68ms (Views: 67.3ms | ActiveRecord: 0.3ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:27:15 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (6.7ms) Completed 200 OK in 61ms (Views: 60.5ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:27:16 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (6.9ms) Completed 200 OK in 56ms (Views: 55.7ms | ActiveRecord: 0.5ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:27:16 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (5.1ms) Completed 200 OK in 52ms (Views: 50.8ms | ActiveRecord: 0.3ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:27:16 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (6.3ms) Completed 200 OK in 52ms (Views: 51.3ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:27:16 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (5.2ms) Completed 200 OK in 50ms (Views: 49.1ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:27:16 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=68NSh9S%2B%2Fg5%2BKYLzrg1lo4CUb%2BuMcyKLEUIMPPyCnpLJp%2FsysHUUbYrbAcbpc76DEGzbeixdMbKSjGlB467yyw%3D%3D" for ::1 at 2016-05-13 15:27:19 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"68NSh9S+/g5+KYLzrg1lo4CUb+uMcyKLEUIMPPyCnpLJp/sysHUUbYrbAcbpc76DEGzbeixdMbKSjGlB467yyw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (11.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (19.9ms) Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-13 15:27:21 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZtD+AopJCbpkhbYZ6L35z45B4n72ZGpcFZiqfOaNh6FEtFe37oLj2ZB3NSyvwyLvHrlW71ZKeWWWVs8B+aHr+A==", "tag"=>{"name"=>"abracadabra", "hierarchical"=>"1", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'abracadabra' LIMIT 1 SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "abracadabra"], ["hierarchical", "t"], ["created_at", "2016-05-13 18:27:21.481027"], ["updated_at", "2016-05-13 18:27:21.481027"]]  (82.4ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.9ms) Completed 200 OK in 112ms (Views: 7.9ms | ActiveRecord: 83.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:27:23 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (11.5ms) Completed 200 OK in 65ms (Views: 64.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:27:23 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=Gf4M1jEwd%2B3Yhj6KmgEs%2BxNC90pvKgGVcOlM9x1oxaE7mqVjVfudjix0vb%2Fdf%2Ffbg7pD288EEqzzJymKAkSp%2BA%3D%3D" for ::1 at 2016-05-13 15:27:26 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"Gf4M1jEwd+3Yhj6KmgEs+xNC90pvKgGVcOlM9x1oxaE7mqVjVfudjix0vb/df/fbg7pD288EEqzzJymKAkSp+A=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (15.4ms) Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-13 15:27:29 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kQW1ykK0QPkEc0udPA3kXeHgfVrzwN3ZAihNGWJCHe+zYRx/Jn+qmvCByKh7cz99cRjJy1PuzuCB5ihkfW5xtg==", "tag"=>{"name"=>"bieber", "hierarchical"=>"1", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'bieber' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "bieber"], ["hierarchical", "t"], ["created_at", "2016-05-13 18:27:29.959374"], ["updated_at", "2016-05-13 18:27:29.959374"]]  (80.5ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.8ms) Completed 200 OK in 90ms (Views: 6.7ms | ActiveRecord: 80.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:27:31 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.3ms) Completed 200 OK in 60ms (Views: 58.5ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:27:31 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:28:23 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (10.1ms) Completed 200 OK in 56ms (Views: 55.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:28:23 -0300 Started GET "/pulitzer/tags/5/edit?authenticity_token=0SNauiE1ukIamIu8aoPNlCECdY7ZksxwLTHMIPGkm2LzR%2FMPRf5QIe5qCIkt%2FRa0sfrBH3m830mu%2F6ld7oj3Ow%3D%3D" for ::1 at 2016-05-13 15:28:25 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"0SNauiE1ukIamIu8aoPNlCECdY7ZksxwLTHMIPGkm2LzR/MPRf5QIe5qCIkt/Ra0sfrBH3m830mu/6ld7oj3Ow==", "id"=>"5"} Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (12.0ms) Completed 200 OK in 21ms (Views: 16.3ms | ActiveRecord: 0.3ms) Started PATCH "/pulitzer/tags/5" for ::1 at 2016-05-13 15:28:27 -0300 Processing by Pulitzer::TagsController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZNDUhGpI9e5M3xnmr+4po2p+ontgFXTTog6FKIh7T99GtH0xDoMfjbgtmtPokPKD+oYW6sA7Z+ohwOBVl1cjhg==", "tag"=>{"name"=>"bieber", "hierarchical"=>"0", "parent_id"=>""}, "id"=>"5"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'bieber' AND "pulitzer_tags"."id" != 5) LIMIT 1 SQL (0.3ms) UPDATE "pulitzer_tags" SET "hierarchical" = ?, "updated_at" = ? WHERE "pulitzer_tags"."id" = ? [["hierarchical", "f"], ["updated_at", "2016-05-13 18:28:27.194243"], ["id", 5]]  (44.4ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Completed 200 OK in 58ms (Views: 7.7ms | ActiveRecord: 45.1ms) Started GET "/pulitzer/tags/5/edit?authenticity_token=0SNauiE1ukIamIu8aoPNlCECdY7ZksxwLTHMIPGkm2LzR%2FMPRf5QIe5qCIkt%2FRa0sfrBH3m830mu%2F6ld7oj3Ow%3D%3D" for ::1 at 2016-05-13 15:28:28 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"0SNauiE1ukIamIu8aoPNlCECdY7ZksxwLTHMIPGkm2LzR/MPRf5QIe5qCIkt/Ra0sfrBH3m830mu/6ld7oj3Ow==", "id"=>"5"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (9.2ms) Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.1ms) Started PATCH "/pulitzer/tags/5" for ::1 at 2016-05-13 15:28:29 -0300 Processing by Pulitzer::TagsController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"C1GOCbWhnCU9VL4vzCuvpiCUlJ58SGbA+tPChiLXNOwpNSe80Wp2RsmmPRqLVXSGsGwgD9xmdfl5Haf7PftYtQ==", "tag"=>{"name"=>"bieber", "hierarchical"=>"0", "parent_id"=>""}, "id"=>"5"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 5]]  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'bieber' AND "pulitzer_tags"."id" != 5) LIMIT 1  (0.1ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Completed 200 OK in 7ms (Views: 4.2ms | ActiveRecord: 0.3ms) Started GET "/pulitzer/tags/new?tag%5Bparent_id%5D=4&authenticity_token=0SNauiE1ukIamIu8aoPNlCECdY7ZksxwLTHMIPGkm2LzR%2FMPRf5QIe5qCIkt%2FRa0sfrBH3m830mu%2F6ld7oj3Ow%3D%3D" for ::1 at 2016-05-13 15:28:31 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"parent_id"=>"4"}, "authenticity_token"=>"0SNauiE1ukIamIu8aoPNlCECdY7ZksxwLTHMIPGkm2LzR/MPRf5QIe5qCIkt/Ra0sfrBH3m830mu/6ld7oj3Ow=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.4ms) Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-13 15:29:09 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"nrpDqZntXL81FRiMaWnlkCPfEyBLv+3ODETsg5kxESG83uoc/Sa23MHnm7kuFz6wsyenseuR/vePion+hh19eA==", "tag"=>{"name"=>"child tag", "hierarchical"=>"1", "parent_id"=>"4"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.3ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child tag' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child tag"], ["hierarchical", "t"], ["parent_id", 4], ["created_at", "2016-05-13 18:29:09.548816"], ["updated_at", "2016-05-13 18:29:09.548816"]]  (57.0ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.8ms) Completed 200 OK in 89ms (Views: 8.4ms | ActiveRecord: 57.8ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:29:33 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (13.1ms) Completed 200 OK in 64ms (Views: 62.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:29:34 -0300 Started DELETE "/pulitzer/tags/6" for ::1 at 2016-05-13 15:29:54 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"GL2fnnKQZZkrPbEUynHg84110TGHh5CD6WCGU/MP9OI62TYrFluP+t/PMiGNDzvTHY1loCepg7pqruMu7COYuw==", "id"=>"6"} Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 6]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 6], ["label_type", "Pulitzer::Tag"]] SQL (0.3ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 6]]  (42.5ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 54ms (Views: 1.5ms | ActiveRecord: 43.6ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:29:55 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (9.2ms) Completed 200 OK in 64ms (Views: 62.9ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:29:55 -0300 Started GET "/pulitzer/tags/new?tag%5Bparent_id%5D=4&authenticity_token=aBNZB%2FHF9Qmoaqo8i545AChUp7ByZrWhVpC%2BC9chzadKd%2FCylQ4falyYKQnM4OIguKwTIdJIppjVXtt2yA2h%2Fg%3D%3D" for ::1 at 2016-05-13 15:29:56 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"parent_id"=>"4"}, "authenticity_token"=>"aBNZB/HF9Qmoaqo8i545AChUp7ByZrWhVpC+C9chzadKd/CylQ4falyYKQnM4OIguKwTIdJIppjVXtt2yA2h/g=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.2ms) Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-13 15:30:02 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"+2AbZdJBLaiaSbVET2BI0nJzKDVEFrpNBOTBbXQTuyvZBLLQtorHy267NnEIHpPy4oucpOQ4qXSHKqQQaz/Xcg==", "tag"=>{"name"=>"lalala", "hierarchical"=>"1", "parent_id"=>"4"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'lalala' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "lalala"], ["hierarchical", "t"], ["parent_id", 4], ["created_at", "2016-05-13 18:30:02.010589"], ["updated_at", "2016-05-13 18:30:02.010589"]]  (85.9ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 7]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.7ms) Completed 200 OK in 96ms (Views: 7.0ms | ActiveRecord: 86.3ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-13 15:30:39 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"+2AbZdJBLaiaSbVET2BI0nJzKDVEFrpNBOTBbXQTuyvZBLLQtorHy267NnEIHpPy4oucpOQ4qXSHKqQQaz/Xcg==", "tag"=>{"name"=>"lalala", "hierarchical"=>"1", "parent_id"=>"4"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'lalala' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.9ms) Completed 500 Internal Server Error in 13ms ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"pulitzer/tags", :format=>nil, :id=>#} missing required keys: [:id]): 3:
  • <%= tag.name %>
  • 4: <% if authenticated %> 5:
  • 6: <%= ajax_link "Edit", edit_tag_path(tag), {}, dom_target(tag) %> 7:
  • 8:
  • 9: <%= ajax_delete 'Delete', tag_path(tag), {}, dom_target(tag) %> actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb:6:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__show_html_erb___2700766288272188964_46964324817160' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__show_wrapper_html_erb__4384466060660407727_46964328402400' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:20:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (7.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:30:49 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 7]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (27.3ms) Completed 200 OK in 88ms (Views: 86.0ms | ActiveRecord: 1.1ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:30:49 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:31:37 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 7]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (16.1ms) Completed 200 OK in 66ms (Views: 64.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:31:37 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:31:39 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 7]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (15.7ms) Completed 200 OK in 68ms (Views: 67.2ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:31:39 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:31:52 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 7]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.1ms) Completed 200 OK in 55ms (Views: 54.7ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:31:53 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:32:26 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."name" ASC Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 7]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.3ms) Completed 200 OK in 59ms (Views: 58.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:32:26 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:47:58 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (1.8ms) Completed 200 OK in 119ms (Views: 117.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:47:59 -0300 Started GET "/pulitzer/tags/hierarchical" for ::1 at 2016-05-13 15:48:02 -0300 Processing by Pulitzer::TagsController#hierarchical as HTML Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/hierarchical.html.erb within layouts/application (0.2ms) Completed 200 OK in 78ms (Views: 67.3ms | ActiveRecord: 0.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:48:02 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:48:51 -0300 Processing by Pulitzer::TagsController#index as HTML Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (0.7ms) Completed 200 OK in 47ms (Views: 46.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:48:51 -0300 Started GET "/pulitzer" for ::1 at 2016-05-13 15:48:54 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.3ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (29.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (31.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (47.1ms) Completed 200 OK in 105ms (Views: 96.3ms | ActiveRecord: 1.4ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:48:54 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:48:56 -0300 Processing by Pulitzer::TagsController#index as HTML Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (0.3ms) Completed 200 OK in 53ms (Views: 52.5ms | ActiveRecord: 0.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:48:57 -0300 Started GET "/pulitzer" for ::1 at 2016-05-13 15:49:47 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (3.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (3.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (4.9ms) Completed 200 OK in 53ms (Views: 52.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:49:47 -0300 Started GET "/pulitzer/posts/something-something/edit" for ::1 at 2016-05-13 15:49:49 -0300 Processing by Pulitzer::PostsController#edit as HTML Parameters: {"id"=>"something-something"} Pulitzer::Post Load (0.4ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "something-something"]] Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/posts/edit.html.erb within layouts/application (17.5ms) Completed 200 OK in 73ms (Views: 69.6ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:49:49 -0300 Started GET "/pulitzer/versions/1/edit?authenticity_token=LLkLETs%2F2mPuO%2By32gNhnAVl5rcLrXKDRuvba083f6sO3aKkX%2FQwABrJb4Kdfbq8lZ1SJquDYbrFJb4WUBsT8g%3D%3D" for ::1 at 2016-05-13 15:49:49 -0300 Processing by Pulitzer::VersionsController#edit as */* Parameters: {"authenticity_token"=>"LLkLETs/2mPuO+y32gNhnAVl5rcLrXKDRuvba083f6sO3aKkX/QwABrJb4Kdfbq8lZ1SJquDYbrFJb4WUBsT8g==", "id"=>"1"} Pulitzer::Version Load (0.2ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (7.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (12.1ms) Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (6.0ms) Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_index.html.erb (21.0ms) Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_edit.html.erb (57.5ms) Completed 200 OK in 233ms (Views: 63.0ms | ActiveRecord: 1.4ms) Started GET "/pulitzer/post_types" for ::1 at 2016-05-13 15:49:54 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.3ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (5.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (6.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (9.5ms) Completed 200 OK in 81ms (Views: 79.4ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:49:54 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:49:56 -0300 Processing by Pulitzer::TagsController#index as HTML Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (0.4ms) Completed 200 OK in 90ms (Views: 90.1ms | ActiveRecord: 0.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:49:57 -0300 Started GET "/pulitzer/post_types" for ::1 at 2016-05-13 15:50:21 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (2.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (3.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (5.0ms) Completed 200 OK in 48ms (Views: 47.4ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:50:22 -0300 Started GET "/pulitzer/posts/something-something/edit" for ::1 at 2016-05-13 15:50:24 -0300 Processing by Pulitzer::PostsController#edit as HTML Parameters: {"id"=>"something-something"} Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "something-something"]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/posts/edit.html.erb within layouts/application (2.6ms) Completed 200 OK in 47ms (Views: 45.6ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:50:24 -0300 Started GET "/pulitzer/versions/1/edit?authenticity_token=FTNAy3osBKWrPfEknLZcuOkImzWg8apovqab%2FvH4RCk3V%2Bl%2BHufuxl%2FPchHbyIeYefAvpADfuVE9aP6D7tQocA%3D%3D" for ::1 at 2016-05-13 15:50:24 -0300 Processing by Pulitzer::VersionsController#edit as */* Parameters: {"authenticity_token"=>"FTNAy3osBKWrPfEknLZcuOkImzWg8apovqab/vH4RCk3V+l+Hufuxl/PchHbyIeYefAvpADfuVE9aP6D7tQocA==", "id"=>"1"} Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (4.9ms) Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (4.3ms) Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_index.html.erb (1.2ms) Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_edit.html.erb (25.0ms) Completed 200 OK in 32ms (Views: 27.5ms | ActiveRecord: 0.6ms) Started GET "/pulitzer/posts/something-something/edit" for ::1 at 2016-05-13 15:57:06 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::PostsController#edit as HTML Parameters: {"id"=>"something-something"} Pulitzer::Post Load (0.3ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "something-something"]] Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/posts/edit.html.erb within layouts/application (37.0ms) Completed 200 OK in 177ms (Views: 147.2ms | ActiveRecord: 1.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:57:06 -0300 Started GET "/pulitzer/versions/1/edit?authenticity_token=wGLP%2BJbZAkA7zZB%2FXFyy0JqeqpAdd2ggagk29lavkLniBmZN8hLoI88%2FE0obImnwCmYeAb1Zexnpx1OLSYP84A%3D%3D" for ::1 at 2016-05-13 15:57:06 -0300 Processing by Pulitzer::VersionsController#edit as */* Parameters: {"authenticity_token"=>"wGLP+JbZAkA7zZB/XFyy0JqeqpAdd2ggagk29lavkLniBmZN8hLoI88/E0obImnwCmYeAb1Zexnpx1OLSYP84A==", "id"=>"1"} Pulitzer::Version Load (0.2ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (4.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (7.6ms) Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (4.0ms) Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_index.html.erb (22.3ms) Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (3.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_edit.html.erb (49.7ms) Completed 200 OK in 159ms (Views: 55.1ms | ActiveRecord: 1.2ms) Started GET "/pulitzer/post_types" for ::1 at 2016-05-13 15:57:08 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.2ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (11.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (12.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (16.0ms) Completed 200 OK in 79ms (Views: 78.3ms | ActiveRecord: 0.7ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:57:10 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (7.6ms) Completed 500 Internal Server Error in 14ms ActionView::Template::Error (wrong number of arguments (0 for 1..4)): 1:
    2: <%= render partial: 'show', locals: {tag: tag} %> 3: <% tag.children.each do |t| %> 4:
    actionview (4.2.0) lib/action_view/helpers/tag_helper.rb:74:in `tag' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb:1:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__show_wrapper_html_erb___252240150765591278_70306168900720' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:436:in `block in collection_with_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:432:in `map' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:432:in `collection_with_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:324:in `render_collection' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:306:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:305:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb:5:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags_index_html_erb___3442077867961236144_70306168779300' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.5ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:59:42 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.2ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.3ms) Completed 500 Internal Server Error in 14ms ActionView::Template::Error (undefined method `each' for nil:NilClass): 15: <% end %> 16: 17:
    18: <% @tags.each do |tag| %> 19: <%= render partial: 'show_wrapper', locals: {tag: tag} %> 20: <% end %> 21:
    --> /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb:18:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags_index_html_erb___3442077867961236144_70306177614860' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-13 15:59:58 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.6ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (9.9ms) Completed 200 OK in 58ms (Views: 56.6ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 15:59:58 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 16:03:44 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? LIMIT 1 [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? LIMIT 1 [["parent_id", 4]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.2ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.5ms) Completed 200 OK in 64ms (Views: 63.2ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 16:03:44 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-13 16:04:43 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.2ms) Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? LIMIT 1 [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.5ms) Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? LIMIT 1 [["parent_id", 4]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.0ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (9.0ms) Completed 200 OK in 52ms (Views: 50.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-13 16:04:43 -0300 Started GET "/pulitzer" for ::1 at 2016-05-16 13:04:19 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rake db:migrate RAILS_ENV=development ): activerecord (4.2.0) lib/active_record/migration.rb:393:in `check_pending!' activerecord (4.2.0) lib/active_record/migration.rb:374:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.4ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePulitzerPostTypes (20160511202333)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQLite3::SQLException: table "pulitzer_post_types" already exists: CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) rollback transaction  (64.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (79.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePulitzerPostTypes (20160516160526)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160526"]]  (59.0ms) commit transaction Migrating to CreatePulitzerContentElementTypes (20160516160527)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "pulitzer_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160527"]]  (77.0ms) commit transaction Migrating to CreatePulitzerPosts (20160516160528)  (0.2ms) begin transaction  (0.6ms) CREATE TABLE "pulitzer_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "post_type_id" integer, "status" varchar DEFAULT 'unpublished', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160528"]]  (74.4ms) commit transaction Migrating to CreatePulitzerContentElements (20160516160529)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "post_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160529"]]  (77.7ms) commit transaction Migrating to CreatePulitzerTags (20160516160530)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160530"]]  (77.4ms) commit transaction Migrating to CreatePulitzerPostTags (20160516160531)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160531"]]  (77.2ms) commit transaction Migrating to CreatePulitzerPostTypeContentElementTypes (20160516160532)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_post_type_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "content_element_type_id" integer, "label" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160532"]]  (78.6ms) commit transaction Migrating to AddPluralAndTemplateToPulitzerPostTypes (20160516160533)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_post_types" ADD "plural" boolean  (0.2ms) ALTER TABLE "pulitzer_post_types" ADD "template" boolean SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160533"]]  (56.1ms) commit transaction Migrating to AddPulitzerContentElementTypes (20160516160534)  (0.1ms) begin transaction Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text"], ["created_at", "2016-05-16 16:05:47.594667"], ["updated_at", "2016-05-16 16:05:47.594667"]] Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Image' LIMIT 1 SQL (0.0ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Image"], ["created_at", "2016-05-16 16:05:47.596577"], ["updated_at", "2016-05-16 16:05:47.596577"]] Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1 SQL (0.0ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Video"], ["created_at", "2016-05-16 16:05:47.597831"], ["updated_at", "2016-05-16 16:05:47.597831"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160534"]]  (40.2ms) commit transaction Migrating to AddSlugToPulitzerPosts (20160516160535)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_posts" ADD "slug" varchar  (0.2ms) CREATE UNIQUE INDEX "index_pulitzer_posts_on_slug" ON "pulitzer_posts" ("slug") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160535"]]  (60.1ms) commit transaction Migrating to ChangeLabelTypeFromPulitzerPostTags (20160516160536)  (0.1ms) begin transaction  (0.4ms) CREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_post_tags"  (0.2ms) DROP TABLE "pulitzer_post_tags"  (0.1ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_post_tags"  (0.1ms) DROP TABLE "apulitzer_post_tags" SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160536"]]  (59.0ms) commit transaction Migrating to AddTextEditorToPulitzerPostTypeContentElementTypes (20160516160537)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_post_type_content_element_types" ADD "text_editor" varchar SQL (0.1ms) UPDATE "pulitzer_post_type_content_element_types" SET "text_editor" = 'None' WHERE "pulitzer_post_type_content_element_types"."id" IN (SELECT "pulitzer_post_type_content_element_types"."id" FROM "pulitzer_post_type_content_element_types" ORDER BY "pulitzer_post_type_content_element_types"."id" ASC) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160537"]]  (39.9ms) commit transaction Migrating to CreatePulitzerVersions (20160516160538)  (0.1ms) begin transaction  (0.2ms) CREATE TABLE "pulitzer_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer DEFAULT 0, "post_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160538"]]  (59.9ms) commit transaction Migrating to ChangePostElementsToVersions (20160516160539)  (0.1ms) begin transaction  (0.3ms) CREATE TEMPORARY TABLE "apulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_content_elements"  (0.3ms) DROP TABLE "pulitzer_content_elements"  (0.3ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_content_elements"  (0.2ms) DROP TABLE "apulitzer_content_elements"  (0.2ms) CREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_post_tags"  (0.2ms) DROP TABLE "pulitzer_post_tags"  (0.2ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_post_tags"  (0.1ms) DROP TABLE "apulitzer_post_tags" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" ORDER BY "pulitzer_posts"."id" ASC LIMIT 1000 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160539"]]  (39.7ms) commit transaction Migrating to AddPostTypeContentElementAttributesToContentElements (20160516160540)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_content_elements" ADD "text_editor" varchar  (0.2ms) ALTER TABLE "pulitzer_content_elements" ADD "height" integer DEFAULT 100  (0.3ms) ALTER TABLE "pulitzer_content_elements" ADD "width" integer DEFAULT 100  (0.3ms) ALTER TABLE "pulitzer_content_elements" ADD "sort_order" integer Scoped order and limit are ignored, it's forced to be batch order and batch size Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1000 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160540"]]  (40.6ms) commit transaction Migrating to ChangeTemplateToPulitzerPostTypes (20160516160541)  (0.1ms) begin transaction  (0.4ms) CREATE TEMPORARY TABLE "apulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean, "template" boolean)   (0.1ms) SELECT * FROM "pulitzer_post_types"  (0.3ms) DROP TABLE "pulitzer_post_types"  (0.3ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean)  (0.1ms) SELECT * FROM "apulitzer_post_types"  (0.1ms) DROP TABLE "apulitzer_post_types"  (0.3ms) ALTER TABLE "pulitzer_post_types" ADD "kind" integer DEFAULT 0 SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160541"]]  (40.4ms) commit transaction Migrating to AddKindToPulitzerContentElements (20160516160542)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_content_elements" ADD "kind" integer DEFAULT 0 SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160542"]]  (41.2ms) commit transaction Migrating to AddErrorsToVersion (20160516160543)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_versions" ADD "cloning_errors" jsonb SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160543"]]  (39.6ms) commit transaction Migrating to AddParentIdToPulitzerTag (20160516160544)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_tags" ADD "parent_id" integer  (0.2ms) ALTER TABLE "pulitzer_tags" ADD "hierarchical" boolean DEFAULT 'f' NOT NULL  (0.1ms) CREATE INDEX "index_pulitzer_tags_on_hierarchical" ON "pulitzer_tags" ("hierarchical") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516160544"]]  (60.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_pulitzer_posts_on_slug' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_pulitzer_posts_on_slug' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_pulitzer_tags_on_hierarchical' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_pulitzer_tags_on_hierarchical' AND type='index' Started GET "/pulitzer" for ::1 at 2016-05-16 13:06:38 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (4.9ms) Completed 200 OK in 153ms (Views: 144.8ms | ActiveRecord: 0.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:06:38 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:06:47 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (8.5ms) Completed 200 OK in 87ms (Views: 74.5ms | ActiveRecord: 0.4ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:06:48 -0300 Started GET "/pulitzer/post_types/new?authenticity_token=OLWG4icLVOCMOPyPaizSOfl%2F4FQgIDEEr15Vyioulmwa0S9XQ8C%2Bg3jKf7otUgkZaYdUxYAOIj0skDC3NQL6NQ%3D%3D" for ::1 at 2016-05-16 13:06:54 -0300 Processing by Pulitzer::PostTypesController#new as */* Parameters: {"authenticity_token"=>"OLWG4icLVOCMOPyPaizSOfl/4FQgIDEEr15Vyioulmwa0S9XQ8C+g3jKf7otUgkZaYdUxYAOIj0skDC3NQL6NQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_form_fields.html.erb (17.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_new.html.erb (27.1ms) Completed 200 OK in 46ms (Views: 39.9ms | ActiveRecord: 0.2ms) Started GET "/pulitzer" for ::1 at 2016-05-16 13:08:53 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (3.8ms) Completed 200 OK in 131ms (Views: 124.6ms | ActiveRecord: 0.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/pulitzer" for ::1 at 2016-05-16 13:08:53 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (1.3ms) Completed 200 OK in 68ms (Views: 67.6ms | ActiveRecord: 0.1ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:08:53 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:10:23 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (9.6ms) Completed 200 OK in 153ms (Views: 138.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:10:24 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:12:17 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:12:24 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (8.3ms) Completed 200 OK in 132ms (Views: 118.7ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:12:25 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:16:57 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (9.6ms) Completed 200 OK in 145ms (Views: 130.7ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:16:57 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=F4KoTBeWLQWnXlWwtm3AC5QshKUXRVaj6eMsqur2lbg15gH5c13HZlOs1oXxExsrBNQwNLdrRZpqLUnX9dr54Q%3D%3D" for ::1 at 2016-05-16 13:17:00 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"F4KoTBeWLQWnXlWwtm3AC5QshKUXRVaj6eMsqur2lbg15gH5c13HZlOs1oXxExsrBNQwNLdrRZpqLUnX9dr54Q=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (17.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (28.6ms) Completed 200 OK in 37ms (Views: 31.6ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:17:15 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (3.0ms) Completed 200 OK in 61ms (Views: 60.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:17:15 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=ML6uUlD3Gc3jDtb0%2BiRLm5ROiD1S2of8oU7PM2k%2F6kYS2gfnNDzzrhf8VcG9WpC7BLY8rPL0lMUigKpOdhOGHw%3D%3D" for ::1 at 2016-05-16 13:17:17 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"ML6uUlD3Gc3jDtb0+iRLm5ROiD1S2of8oU7PM2k/6kYS2gfnNDzzrhf8VcG9WpC7BLY8rPL0lMUigKpOdhOGHw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.3ms) Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=ML6uUlD3Gc3jDtb0%2BiRLm5ROiD1S2of8oU7PM2k%2F6kYS2gfnNDzzrhf8VcG9WpC7BLY8rPL0lMUigKpOdhOGHw%3D%3D" for ::1 at 2016-05-16 13:17:25 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"ML6uUlD3Gc3jDtb0+iRLm5ROiD1S2of8oU7PM2k/6kYS2gfnNDzzrhf8VcG9WpC7BLY8rPL0lMUigKpOdhOGHw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.8ms) Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:17:46 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (11.6ms) Completed 500 Internal Server Error in 14ms ActionView::Template::Error (undefined local variable or method `authenticated' for #<#:0x0055ac62e4ae08>): 2:

    Tags can be categorized in a tree-like structure something something explanation here

    3: 4:

    hierarchical Tags

    5: <% if authenticated %> 6: <%= ajax_link 'Add a new root tag', new_tag_path("tag[hierarchical]" => true), {}, '#new_tag' %> 7:
    8: <% end %> /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb:5:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags_index_html_erb___363198956993188548_47099440930620' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.5ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:20:20 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (20.5ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:20:58 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (9421.2ms) Completed in 9448ms Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:30:33 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (9.6ms) Completed 200 OK in 150ms (Views: 136.1ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:30:34 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=cDIZHGE56ltPnQL8B%2Fzcil00Q6Kx7mNMy9X1qlFHD%2BJSVrCpBfIAOLtvgclAggeqzcz3MxHAcHVIG5DXTmtjuw%3D%3D" for ::1 at 2016-05-16 13:30:38 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"cDIZHGE56ltPnQL8B/zcil00Q6Kx7mNMy9X1qlFHD+JSVrCpBfIAOLtvgclAggeqzcz3MxHAcHVIG5DXTmtjuw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (11.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (21.6ms) Completed 200 OK in 30ms (Views: 24.9ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 13:30:41 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"gE4eC9lMauAluTRs/nf6MrU50LbUjtrYPDRR9/SjY8yiKre+vYeAg9FLt1m5CSESJcFkJ3SgyeG/+jSK648PlQ==", "tag"=>{"name"=>"something", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'something' LIMIT 1 SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "something"], ["hierarchical", "t"], ["created_at", "2016-05-16 16:30:41.852452"], ["updated_at", "2016-05-16 16:30:41.852452"]]  (77.5ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (21.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (24.9ms) Completed 200 OK in 140ms (Views: 28.6ms | ActiveRecord: 78.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:32:06 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (6.7ms) Completed 200 OK in 57ms (Views: 56.1ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:32:07 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh%2BhHVZQwYn%2FSDX%2Bh2RRetoSAbs6f3uoqfsh91w%3D%3D" for ::1 at 2016-05-16 13:32:09 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh+hHVZQwYn/SDX+h2RRetoSAbs6f3uoqfsh91w=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.4ms) Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 13:32:12 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ca43sPLLqdF8ivm17WHWn+SXIQUa2XjMdEvGYnCYlB0ryp4FlgBDsoh4eoCqHw2/dG+VlLr3a/X3haMfb7T4RA==", "tag"=>{"name"=>"lalala", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'lalala' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "lalala"], ["hierarchical", "t"], ["created_at", "2016-05-16 16:32:12.847367"], ["updated_at", "2016-05-16 16:32:12.847367"]]  (101.6ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.9ms) Completed 200 OK in 112ms (Views: 7.0ms | ActiveRecord: 102.1ms) Started GET "/pulitzer/tags/1/edit?authenticity_token=gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh%2BhHVZQwYn%2FSDX%2Bh2RRetoSAbs6f3uoqfsh91w%3D%3D" for ::1 at 2016-05-16 13:32:14 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh+hHVZQwYn/SDX+h2RRetoSAbs6f3uoqfsh91w==", "id"=>"1"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (8.6ms) Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags/1?authenticity_token=gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh%2BhHVZQwYn%2FSDX%2Bh2RRetoSAbs6f3uoqfsh91w%3D%3D" for ::1 at 2016-05-16 13:32:16 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/1?authenticity_token=gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh%2BhHVZQwYn%2FSDX%2Bh2RRetoSAbs6f3uoqfsh91w%3D%3D" for ::1 at 2016-05-16 13:32:17 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/1?authenticity_token=gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh%2BhHVZQwYn%2FSDX%2Bh2RRetoSAbs6f3uoqfsh91w%3D%3D" for ::1 at 2016-05-16 13:32:18 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/1?authenticity_token=gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh%2BhHVZQwYn%2FSDX%2Bh2RRetoSAbs6f3uoqfsh91w%3D%3D" for ::1 at 2016-05-16 13:32:18 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/1?authenticity_token=gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh%2BhHVZQwYn%2FSDX%2Bh2RRetoSAbs6f3uoqfsh91w%3D%3D" for ::1 at 2016-05-16 13:32:19 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/1?authenticity_token=gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh%2BhHVZQwYn%2FSDX%2Bh2RRetoSAbs6f3uoqfsh91w%3D%3D" for ::1 at 2016-05-16 13:32:19 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/1?authenticity_token=gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh%2BhHVZQwYn%2FSDX%2Bh2RRetoSAbs6f3uoqfsh91w%3D%3D" for ::1 at 2016-05-16 13:32:19 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started PATCH "/pulitzer/tags/1" for ::1 at 2016-05-16 13:32:20 -0300 Processing by Pulitzer::TagsController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"yzyIpTFFFbZRxmnzMl/98z5O14HoF3+EkLq8rdecVInpWCEQVY7/1aU06sZ1ISbTrrZjEEg5bL0TdNnQyLA40A==", "tag"=>{"name"=>"something", "hierarchical"=>"t", "parent_id"=>""}, "id"=>"1"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'something' AND "pulitzer_tags"."id" != 1) LIMIT 1  (0.1ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Completed 200 OK in 12ms (Views: 5.6ms | ActiveRecord: 0.7ms) Started GET "/pulitzer/tags/new?tag%5Bparent_id%5D=2&authenticity_token=gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh%2BhHVZQwYn%2FSDX%2Bh2RRetoSAbs6f3uoqfsh91w%3D%3D" for ::1 at 2016-05-16 13:32:21 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"parent_id"=>"2"}, "authenticity_token"=>"gjNp7eMjrTZgwuFKlXOkgUns6ickrn33HBCPV2HkEY6gV8BYh+hHVZQwYn/SDX+h2RRetoSAbs6f3uoqfsh91w=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.8ms) Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 13:32:26 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"7cz7AJGt4QE/ciP6JmWmrMqU3YEgGa8Assts+JTVh0zPqFK19WYLYsuAoM9hG32MWmxpEIA3vDkxBQmFi/nrFQ==", "tag"=>{"name"=>"lololo", "hierarchical"=>"f", "parent_id"=>"2"}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'lololo' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "lololo"], ["parent_id", 2], ["created_at", "2016-05-16 16:32:26.123469"], ["updated_at", "2016-05-16 16:32:26.123469"]]  (78.1ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.1ms) Completed 200 OK in 112ms (Views: 9.8ms | ActiveRecord: 78.8ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:32:29 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.7ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' CACHE (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (10.1ms) Completed 200 OK in 59ms (Views: 57.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:32:29 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:35:50 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' CACHE (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (9.2ms) Completed 200 OK in 59ms (Views: 57.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:35:51 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=AxqUWF5A4wG5W%2BHB9f%2BxfSChmmvc4uOGKmeaNT3iAKQhfj3tOosJYk2pYvSygWpdsFku%2BnzM8L%2Bpqf9IIs5s%2FQ%3D%3D" for ::1 at 2016-05-16 13:35:52 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"AxqUWF5A4wG5W+HB9f+xfSChmmvc4uOGKmeaNT3iAKQhfj3tOosJYk2pYvSygWpdsFku+nzM8L+pqf9IIs5s/Q=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.1ms) Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 13:35:57 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ePrnwiOMac5wTAWQ+6I7x5ZZ1vL+Ag5yJHmI7CS5Gqhank53R0eDrYS+hqW83ODnBqFiY14sHUunt+2RO5V28Q==", "tag"=>{"name"=>"new root tag", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'new root tag' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "new root tag"], ["hierarchical", "t"], ["created_at", "2016-05-16 16:35:57.204550"], ["updated_at", "2016-05-16 16:35:57.204550"]]  (83.1ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.5ms) Completed 200 OK in 94ms (Views: 8.1ms | ActiveRecord: 83.5ms) Started GET "/pulitzer/tags/3/edit?authenticity_token=AxqUWF5A4wG5W%2BHB9f%2BxfSChmmvc4uOGKmeaNT3iAKQhfj3tOosJYk2pYvSygWpdsFku%2BnzM8L%2Bpqf9IIs5s%2FQ%3D%3D" for ::1 at 2016-05-16 13:36:05 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"AxqUWF5A4wG5W+HB9f+xfSChmmvc4uOGKmeaNT3iAKQhfj3tOosJYk2pYvSygWpdsFku+nzM8L+pqf9IIs5s/Q==", "id"=>"3"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (10.7ms) Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags/3?authenticity_token=AxqUWF5A4wG5W%2BHB9f%2BxfSChmmvc4uOGKmeaNT3iAKQhfj3tOosJYk2pYvSygWpdsFku%2BnzM8L%2Bpqf9IIs5s%2FQ%3D%3D" for ::1 at 2016-05-16 13:36:06 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/3?authenticity_token=AxqUWF5A4wG5W%2BHB9f%2BxfSChmmvc4uOGKmeaNT3iAKQhfj3tOosJYk2pYvSygWpdsFku%2BnzM8L%2Bpqf9IIs5s%2FQ%3D%3D" for ::1 at 2016-05-16 13:36:08 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:36:52 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.0ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' CACHE (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (10.8ms) Completed 200 OK in 59ms (Views: 57.5ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:36:52 -0300 Started GET "/pulitzer/tags/3/edit?authenticity_token=dISUy6wb9ddJ50Gx7jPj4tWgVPNbrYRyxYAXuPRZNDtW4D1%2ByNAftL0VwoSpTTjCRVjgYvuDl0tGTnLF63VYYg%3D%3D" for ::1 at 2016-05-16 13:36:55 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"dISUy6wb9ddJ50Gx7jPj4tWgVPNbrYRyxYAXuPRZNDtW4D1+yNAftL0VwoSpTTjCRVjgYvuDl0tGTnLF63VYYg==", "id"=>"3"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (8.3ms) Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/3?authenticity_token=dISUy6wb9ddJ50Gx7jPj4tWgVPNbrYRyxYAXuPRZNDtW4D1%2ByNAftL0VwoSpTTjCRVjgYvuDl0tGTnLF63VYYg%3D%3D" for ::1 at 2016-05-16 13:36:56 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/3?authenticity_token=dISUy6wb9ddJ50Gx7jPj4tWgVPNbrYRyxYAXuPRZNDtW4D1%2ByNAftL0VwoSpTTjCRVjgYvuDl0tGTnLF63VYYg%3D%3D" for ::1 at 2016-05-16 13:36:57 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/3?authenticity_token=dISUy6wb9ddJ50Gx7jPj4tWgVPNbrYRyxYAXuPRZNDtW4D1%2ByNAftL0VwoSpTTjCRVjgYvuDl0tGTnLF63VYYg%3D%3D" for ::1 at 2016-05-16 13:36:57 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/3?authenticity_token=dISUy6wb9ddJ50Gx7jPj4tWgVPNbrYRyxYAXuPRZNDtW4D1%2ByNAftL0VwoSpTTjCRVjgYvuDl0tGTnLF63VYYg%3D%3D" for ::1 at 2016-05-16 13:36:58 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/3?authenticity_token=dISUy6wb9ddJ50Gx7jPj4tWgVPNbrYRyxYAXuPRZNDtW4D1%2ByNAftL0VwoSpTTjCRVjgYvuDl0tGTnLF63VYYg%3D%3D" for ::1 at 2016-05-16 13:36:58 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:36:58 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.9ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' CACHE (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.8ms) Completed 200 OK in 74ms (Views: 72.5ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:36:58 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=2&authenticity_token=Lbq7P9E2TduVeWA%2BmpeNpFgKxA47yWM2QVcVB5elfHIP3hKKtf2nuGGL4wvd6VaEyPJwn5vncA%2FCmXB6iIkQKw%3D%3D" for ::1 at 2016-05-16 13:37:01 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"2"}, "authenticity_token"=>"Lbq7P9E2TduVeWA+mpeNpFgKxA47yWM2QVcVB5elfHIP3hKKtf2nuGGL4wvd6VaEyPJwn5vncA/CmXB6iIkQKw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.4ms) Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 13:37:05 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"job1bzoBOIeVyubpfSIzl9/18puIYsxYWNI7Wl8YfzKs4lzaXsrS5GE4Zdw6XOi3Tw1GCihM32HbHF4nQDQTaw==", "tag"=>{"name"=>"new child tag", "hierarchical"=>"true", "parent_id"=>"2"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'new child tag' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "new child tag"], ["hierarchical", "t"], ["parent_id", 2], ["created_at", "2016-05-16 16:37:05.461875"], ["updated_at", "2016-05-16 16:37:05.461875"]]  (79.4ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.7ms) Completed 200 OK in 92ms (Views: 9.9ms | ActiveRecord: 79.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:37:06 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.4ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' CACHE (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 3]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (13.8ms) Completed 200 OK in 68ms (Views: 66.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:37:06 -0300 Started DELETE "/pulitzer/tags/3" for ::1 at 2016-05-16 13:37:10 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"KzTMr1ndrGT6QfZR8JTXzTQ0WdZhhqGjtmE1ztFyhVwJUGUaPRZGBw6zdWS36gztpMztR8Gospo1r1Czzl7pBQ==", "id"=>"3"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 3], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 3]]  (55.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 63ms (Views: 1.7ms | ActiveRecord: 56.5ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:37:12 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (10.8ms) Completed 200 OK in 61ms (Views: 59.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:37:12 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=5&authenticity_token=9zdE%2Bklx2ON61XwT2naicRT70jN7h%2F3ZP5juiDrO9FrVU%2B1PLboygI4n%2FyadCHlRhANmotup7uC8Vov1JeKYAw%3D%3D" for ::1 at 2016-05-16 13:37:18 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"5"}, "authenticity_token"=>"9zdE+klx2ON61XwT2naicRT70jN7h/3ZP5juiDrO9FrVU+1PLboygI4n/yadCHlRhANmotup7uC8Vov1JeKYAw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (10.5ms) Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 13:37:23 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kPSGq00IvZPStq7pWUwBfegzjP+qUlV538STPAK1YTKykC8eKcNX8CZELdweMtpdeMs4bgp8RkBcCvZBHZkNaw==", "tag"=>{"name"=>"third level tag", "hierarchical"=>"true", "parent_id"=>"5"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'third level tag' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "third level tag"], ["hierarchical", "t"], ["parent_id", 5], ["created_at", "2016-05-16 16:37:23.108366"], ["updated_at", "2016-05-16 16:37:23.108366"]]  (79.5ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.7ms) Completed 200 OK in 93ms (Views: 10.3ms | ActiveRecord: 79.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:38:36 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.7ms) Completed 200 OK in 70ms (Views: 68.2ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:38:36 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:38:36 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:38:36 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:38:36 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:38:37 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:38:37 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:38:37 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:38:37 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:38:37 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:38:37 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:38:37 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=ZjV%2FFwvs2wqVFOGOgr0mCQSZcc4AY%2B7x8seiZXhM6iVEUdaibycxaWHmYrvFw%2F0plGHFX6BN%2FchxCccYZ2CGfA%3D%3D" for ::1 at 2016-05-16 13:42:13 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"ZjV/Fwvs2wqVFOGOgr0mCQSZcc4AY+7x8seiZXhM6iVEUdaibycxaWHmYrvFw/0plGHFX6BN/chxCccYZ2CGfA=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.6ms) Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:43:27 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.1ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.0ms) Completed 200 OK in 75ms (Views: 74.1ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:43:27 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=WOKvjg3mbhELcyOTbC5SIcp58pzfWdxDiU0vFY16e7p6hgY7aS2Ecv%2BBoKYrUIkBWoFGDX93z3oKg0poklYX4w%3D%3D" for ::1 at 2016-05-16 13:43:29 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"WOKvjg3mbhELcyOTbC5SIcp58pzfWdxDiU0vFY16e7p6hgY7aS2Ecv+BoKYrUIkBWoFGDX93z3oKg0poklYX4w=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (10.5ms) Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 13:43:34 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"d0ATBa+ujpEgRuW0aXMHtUy2kIWm+9X1e6bG9MjKdSRVJLqwy2Vk8tS0ZoEuDdyV3E4kFAbVxsz4aKOJ1+YZfQ==", "tag"=>{"name"=>"1st child", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = '1st child' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "1st child"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 16:43:34.807137"], ["updated_at", "2016-05-16 16:43:34.807137"]]  (101.8ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 7]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.1ms) Completed 200 OK in 116ms (Views: 11.3ms | ActiveRecord: 102.3ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:43:45 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 7]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.8ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.9ms) Completed 200 OK in 67ms (Views: 65.3ms | ActiveRecord: 0.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:43:45 -0300 Started DELETE "/pulitzer/tags/7" for ::1 at 2016-05-16 13:43:49 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"HS+m3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg/Sw9pwzGuQ/zty7WRFBrvvEmEyjT0CoJr6+5Z5ZU0AQ==", "id"=>"7"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 7]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 7], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 7]]  (44.0ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 48ms (Views: 0.5ms | ActiveRecord: 44.5ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:43:51 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"HS+m3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg/Sw9pwzGuQ/zty7WRFBrvvEmEyjT0CoJr6+5Z5ZU0AQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.6ms) Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:12 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"HS+m3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg/Sw9pwzGuQ/zty7WRFBrvvEmEyjT0CoJr6+5Z5ZU0AQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.4ms) Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:15 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"HS+m3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg/Sw9pwzGuQ/zty7WRFBrvvEmEyjT0CoJr6+5Z5ZU0AQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.5ms) Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags/1/edit?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:17 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"HS+m3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg/Sw9pwzGuQ/zty7WRFBrvvEmEyjT0CoJr6+5Z5ZU0AQ==", "id"=>"1"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (8.5ms) Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:18 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:18 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:18 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:19 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:19 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:19 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:19 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:20 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:20 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:20 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"HS+m3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg/Sw9pwzGuQ/zty7WRFBrvvEmEyjT0CoJr6+5Z5ZU0AQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.6ms) Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:22 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:22 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/1?authenticity_token=HS%2Bm3Kf6RCAIH0iA1mrBzyyxMFuU2hm76CWLJPq5WFg%2FSw9pwzGuQ%2Fzty7WRFBrvvEmEyjT0CoJr6%2B5Z5ZU0AQ%3D%3D" for ::1 at 2016-05-16 13:45:22 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 13:45:24 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.3ms) Completed 200 OK in 66ms (Views: 64.6ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 13:45:24 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=2&authenticity_token=%2BtSUlUhpgwtgIvLX0kJFRSi3mKcU1dkp%2BJHxAs82VYTYsD0gLKJpaJTQceKVPJ5luE8sNrT7yhB7X5R%2F0Bo53Q%3D%3D" for ::1 at 2016-05-16 13:45:28 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"2"}, "authenticity_token"=>"+tSUlUhpgwtgIvLX0kJFRSi3mKcU1dkp+JHxAs82VYTYsD0gLKJpaJTQceKVPJ5luE8sNrT7yhB7X5R/0Bo53Q=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.5ms) Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 13:46:03 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"/MK3URqcr+JHg35V/VNoCzvO+fKrlU80kxzTcFLK3HDeph7kfldFgbNx/WC6LbMrqzZNYwu7XA0Q0rYNTeawKQ==", "tag"=>{"name"=>"bieber", "hierarchical"=>"true", "parent_id"=>"2"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'bieber' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "bieber"], ["hierarchical", "t"], ["parent_id", 2], ["created_at", "2016-05-16 16:46:03.139221"], ["updated_at", "2016-05-16 16:46:03.139221"]]  (79.5ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.1ms) Completed 200 OK in 94ms (Views: 11.5ms | ActiveRecord: 80.0ms) Started GET "/pulitzer" for ::1 at 2016-05-16 15:24:37 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::PostTypesController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (23.1ms) Started GET "/pulitzer" for ::1 at 2016-05-16 15:25:00 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (10.7ms) Completed 500 Internal Server Error in 27ms ActionView::Template::Error (undefined local variable or method `authenticated' for #<#:0x00557c34604dd8>): 1:

    Tags

    2: <% if authenticated %> 3: <%= link_to 'Manage tags', tags_path %> 4: <% end %> 5: /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_post_types_index_html_erb__1203092314963560417_46995971952140' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.0ms) Started GET "/pulitzer" for ::1 at 2016-05-16 15:25:03 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (11.9ms) Completed 500 Internal Server Error in 14ms ActionView::Template::Error (undefined local variable or method `authenticated' for #<#:0x00557c35355988>): 1:

    Tags

    2: <% if authenticated %> 3: <%= link_to 'Manage tags', tags_path %> 4: <% end %> 5: /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_post_types_index_html_erb__1203092314963560417_46995971952140' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.2ms) Started GET "/pulitzer" for ::1 at 2016-05-16 15:25:20 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (2.3ms) Completed 200 OK in 87ms (Views: 87.0ms | ActiveRecord: 0.2ms) Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:25:20 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:25:23 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (17.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (32.9ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (50.4ms) Completed 200 OK in 118ms (Views: 98.6ms | ActiveRecord: 1.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:25:23 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=2&authenticity_token=wlgrvyYZZDnQ3ldmz1hWperQUv7G6H5lC96uYvtjlbzgPIIKQtKOWiQs1FOIJo2Feijmb2bGbVyIEMsf5E%2F55Q%3D%3D" for ::1 at 2016-05-16 15:25:31 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"2"}, "authenticity_token"=>"wlgrvyYZZDnQ3ldmz1hWperQUv7G6H5lC96uYvtjlbzgPIIKQtKOWiQs1FOIJo2Feijmb2bGbVyIEMsf5E/55Q=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (12.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (22.1ms) Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:25:39 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"y4UdSq/gQqScLhO8TY9MUDZy/8FUQwxNbT6Bl/k/yqTp4bT/yyuox2jckIkK8ZdwpopLUPRtH3Tu8OTq5hOm/Q==", "tag"=>{"name"=>"another second level tag", "hierarchical"=>"true", "parent_id"=>"2"}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'another second level tag' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "another second level tag"], ["hierarchical", "t"], ["parent_id", 2], ["created_at", "2016-05-16 18:25:39.723506"], ["updated_at", "2016-05-16 18:25:39.723506"]]  (70.6ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.3ms) Completed 200 OK in 92ms (Views: 10.3ms | ActiveRecord: 71.4ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=wlgrvyYZZDnQ3ldmz1hWperQUv7G6H5lC96uYvtjlbzgPIIKQtKOWiQs1FOIJo2Feijmb2bGbVyIEMsf5E%2F55Q%3D%3D" for ::1 at 2016-05-16 15:26:03 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"wlgrvyYZZDnQ3ldmz1hWperQUv7G6H5lC96uYvtjlbzgPIIKQtKOWiQs1FOIJo2Feijmb2bGbVyIEMsf5E/55Q=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.2ms) Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:26:09 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"zlhhbsVVD7Kv79U42I7XzImyQMVfxD4aotAmGx6zW83sPMjboZ7l0VsdVg2f8AzsGUr0VP/qLSMhHkNmAZ83lA==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "awful"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 18:26:09.725276"], ["updated_at", "2016-05-16 18:26:09.725276"]]  (55.0ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 10]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.6ms) Completed 200 OK in 83ms (Views: 21.7ms | ActiveRecord: 55.7ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:26:13 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 10]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (18.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (21.5ms) Completed 200 OK in 79ms (Views: 77.3ms | ActiveRecord: 1.1ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:26:13 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=10&authenticity_token=2Xa1DZhecQwLND2xiA2AC6owoF1%2FsxHwfZPm%2BheKRHn7Ehy4%2FJWbb%2F%2FGvoTPc1srOsgUzN%2BdAsn%2BXYOHCKYoIA%3D%3D" for ::1 at 2016-05-16 15:26:16 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"10"}, "authenticity_token"=>"2Xa1DZhecQwLND2xiA2AC6owoF1/sxHwfZPm+heKRHn7Ehy4/JWbb//GvoTPc1srOsgUzN+dAsn+XYOHCKYoIA=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (10.0ms) Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms) Started DELETE "/pulitzer/tags/10" for ::1 at 2016-05-16 15:26:17 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"2Xa1DZhecQwLND2xiA2AC6owoF1/sxHwfZPm+heKRHn7Ehy4/JWbb//GvoTPc1srOsgUzN+dAsn+XYOHCKYoIA==", "id"=>"10"} Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 10]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 10], ["label_type", "Pulitzer::Tag"]] SQL (0.3ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 10]]  (39.7ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 51ms (Views: 1.7ms | ActiveRecord: 40.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:26:19 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.1ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (12.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (20.6ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (24.4ms) Completed 200 OK in 97ms (Views: 95.1ms | ActiveRecord: 1.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:26:20 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=2&authenticity_token=B6YZ0rWUoWIiXhgIBRePgPu7AhJO%2BHn3%2FEhKqyDhxT8lwrBn0V9LAdasmz1CaVSga0O2g%2B7Was5%2Fhi%2FWP82pZg%3D%3D" for ::1 at 2016-05-16 15:26:24 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"2"}, "authenticity_token"=>"B6YZ0rWUoWIiXhgIBRePgPu7AhJO+Hn3/EhKqyDhxT8lwrBn0V9LAdasmz1CaVSga0O2g+7Was5/hi/WP82pZg=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.0ms) Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:27:41 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (11.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (14.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (22.5ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (26.7ms) Completed 200 OK in 100ms (Views: 98.1ms | ActiveRecord: 1.4ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:27:41 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=OfaBX3Y537%2BABU7R%2FAqE6rLoDPtoAcyiXFzHuWZj5S4bkijqEvI13HT3zeS7dF%2FKIhC4asgv35vfkqLEeU%2BJdw%3D%3D" for ::1 at 2016-05-16 15:27:42 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"OfaBX3Y537+ABU7R/AqE6rLoDPtoAcyiXFzHuWZj5S4bkijqEvI13HT3zeS7dF/KIhC4asgv35vfkqLEeU+Jdw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.9ms) Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:27:53 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"vsFzxhMA4BMPf+AI5T1XYTNerOBVFDJmT46tg8N/Xgacpdpzd8sKcPuNYz2iQ4xBo6YYcfU6IV/MQMj+3FMyXw==", "tag"=>{"name"=>"root", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'root' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "root"], ["hierarchical", "t"], ["created_at", "2016-05-16 18:27:53.934846"], ["updated_at", "2016-05-16 18:27:53.934846"]]  (82.2ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 11]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.8ms) Completed 200 OK in 108ms (Views: 20.9ms | ActiveRecord: 82.9ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:27:55 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"vsFzxhMA4BMPf+AI5T1XYTNerOBVFDJmT46tg8N/Xgacpdpzd8sKcPuNYz2iQ4xBo6YYcfU6IV/MQMj+3FMyXw==", "tag"=>{"name"=>"root", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'root' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.6ms) Completed 500 Internal Server Error in 11ms ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"pulitzer/tags", :format=>nil, :id=>#} missing required keys: [:id]): 3:
  • <%= tag.name %>
  • 4: <% if authorized? %> 5:
  • 6: <%= ajax_link "Edit", edit_tag_path(tag), {}, dom_target(tag) %> 7:
  • 8:
  • 9: <%= ajax_delete 'Delete', tag_path(tag), {}, dom_target(tag) %> actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb:6:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__show_html_erb___4535148956140475467_46995983053580' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__show_wrapper_html_erb___2159500051867941705_46995983175980' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:21:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (6.7ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:28:13 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (12.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 4]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 11]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (22.8ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (26.5ms) Completed 200 OK in 90ms (Views: 88.3ms | ActiveRecord: 1.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:28:13 -0300 Started DELETE "/pulitzer/tags/11" for ::1 at 2016-05-16 15:28:18 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"rRiM1tIQt/boOlIsdSUoqvCr4R40PjYpNledCCmy7c2PfCVjtttdlRzI0RkyW/OKYFNVj5QQJRC1mfh1Np6BlA==", "id"=>"11"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 11]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 11], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 11]]  (54.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 59ms (Views: 0.7ms | ActiveRecord: 55.5ms) Started DELETE "/pulitzer/tags/4" for ::1 at 2016-05-16 15:28:20 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"rRiM1tIQt/boOlIsdSUoqvCr4R40PjYpNledCCmy7c2PfCVjtttdlRzI0RkyW/OKYFNVj5QQJRC1mfh1Np6BlA==", "id"=>"4"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 4]]  (0.2ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 4], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 4]]  (43.1ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 48ms (Views: 0.7ms | ActiveRecord: 43.7ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=rRiM1tIQt%2FboOlIsdSUoqvCr4R40PjYpNledCCmy7c2PfCVjtttdlRzI0RkyW%2FOKYFNVj5QQJRC1mfh1Np6BlA%3D%3D" for ::1 at 2016-05-16 15:28:22 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"rRiM1tIQt/boOlIsdSUoqvCr4R40PjYpNledCCmy7c2PfCVjtttdlRzI0RkyW/OKYFNVj5QQJRC1mfh1Np6BlA=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (12.3ms) Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:28:53 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (12.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (17.3ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (21.5ms) Completed 200 OK in 88ms (Views: 85.6ms | ActiveRecord: 1.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:28:54 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=QHlFSExRx9MRJZm4%2F%2FVmAIDx%2BHAHImMKKZHnuPEVUVZiHez9KJotsOXXGo24i70gEAlM4acMcDOqX4LF7jk9Dw%3D%3D" for ::1 at 2016-05-16 15:28:55 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"QHlFSExRx9MRJZm4//VmAIDx+HAHImMKKZHnuPEVUVZiHez9KJotsOXXGo24i70gEAlM4acMcDOqX4LF7jk9Dw=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (37579.3ms) Completed 200 OK in 37585ms (Views: 37584.0ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:29:35 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (15.6ms) Completed 200 OK in 68ms (Views: 66.8ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:29:35 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=b2YiT9LAumcXnN2Rlm%2BmfqqgecXS3jQJCd%2Ft3kSOS%2BdNAov6tgtQBONuXqTREX1eOljNVHLwJzCKEYijW6Invg%3D%3D" for ::1 at 2016-05-16 15:29:37 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"b2YiT9LAumcXnN2Rlm+mfqqgecXS3jQJCd/t3kSOS+dNAov6tgtQBONuXqTREX1eOljNVHLwJzCKEYijW6Invg=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (2248.7ms) Completed 200 OK in 2254ms (Views: 2253.2ms | ActiveRecord: 0.2ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:29:53 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"CGqnlaa9OsWE56ZFz6VNWEi7K1oytdNfgdFcMj/y0ScqDg4gwnbQpnAVJXCI25Z42EOfy5KbwGYCHzlPIN69fg==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "awful"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 18:29:53.421470"], ["updated_at", "2016-05-16 18:29:53.421470"]]  (79.9ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 12]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (15.9ms) Completed 200 OK in 128ms (Views: 24.7ms | ActiveRecord: 80.5ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:29:57 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"CGqnlaa9OsWE56ZFz6VNWEi7K1oytdNfgdFcMj/y0ScqDg4gwnbQpnAVJXCI25Z42EOfy5KbwGYCHzlPIN69fg==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.3ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.0ms) Completed 500 Internal Server Error in 25ms ActionView::Template::Error (No route matches {:action=>"edit", :controller=>"pulitzer/tags", :format=>nil, :id=>#} missing required keys: [:id]): 3:
  • <%= tag.name %>
  • 4: <% if authorized? %> 5:
  • 6: <%= ajax_link "Edit", edit_tag_path(tag), {}, dom_target(tag) %> 7:
  • 8:
  • 9: <%= ajax_delete 'Delete', tag_path(tag), {}, dom_target(tag) %> actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb:6:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__show_html_erb___4535148956140475467_46995983053580' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb:2:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__show_wrapper_html_erb___2159500051867941705_46995983175980' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:21:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (7.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:31:58 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:32:16 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 12]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (17.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (27.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (42.2ms) Completed 200 OK in 159ms (Views: 143.8ms | ActiveRecord: 1.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:32:16 -0300 Started DELETE "/pulitzer/tags/12" for ::1 at 2016-05-16 15:32:21 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"dMwkFbevf1OzDTM1yVe1cm43vDgNBRJRMm7rje1hVgtWqI2g02SVMEf/sACOKW5S/s8Iqa0rAWixoI7w8k06Ug==", "id"=>"12"} Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 12]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.5ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 12], ["label_type", "Pulitzer::Tag"]] SQL (0.4ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 12]]  (43.3ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 57ms (Views: 2.3ms | ActiveRecord: 45.1ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:32:26 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (12.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (35.4ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (39.5ms) Completed 200 OK in 101ms (Views: 99.0ms | ActiveRecord: 1.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:32:26 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=NdpPZeiHkJht62l50d0ldbU7cq0El0TOpqgmG3vXhrQXvubQjEx6%2B5kZ6kyWo%2F5VJcPGPKS5V%2FclZkNmZPvq7Q%3D%3D" for ::1 at 2016-05-16 15:32:28 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"NdpPZeiHkJht62l50d0ldbU7cq0El0TOpqgmG3vXhrQXvubQjEx6+5kZ6kyWo/5VJcPGPKS5V/clZkNmZPvq7Q=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (13.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (29.7ms) Completed 200 OK in 35ms (Views: 34.1ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:32:29 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"mS6wchvvhGLhS9StnEBR9MFTeIjM52NxNPv0iR+q4mm7ShnHfyRuARW5V5jbPorUUavMGWzJcEi3NZH0AIaOMA==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}} Completed 500 Internal Server Error in 1ms NoMethodError (undefined method `build' for #): activerecord (4.2.0) lib/active_record/dynamic_matchers.rb:26:in `method_missing' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:20:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (11.8ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:32:52 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:32:57 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (15.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (11.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (28.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (45.5ms) Completed 200 OK in 171ms (Views: 153.3ms | ActiveRecord: 1.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:32:58 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=zNM3RIP5wtPAw6HGiRImnUXnvGXxrhZ3jiT1u4V3CzHut57x5zIosDQxIvPObP291R8I9FGABU4N6pDGmltnaA%3D%3D" for ::1 at 2016-05-16 15:33:01 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"zNM3RIP5wtPAw6HGiRImnUXnvGXxrhZ3jiT1u4V3CzHut57x5zIosDQxIvPObP291R8I9FGABU4N6pDGmltnaA=="} Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (22.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (39.2ms) Completed 200 OK in 45ms (Views: 43.3ms | ActiveRecord: 0.4ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:33:03 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"nLZ+L2Vd1ZNxwdJrpMcEcsjYZf6sXu2oCQ26WvVMUP++0teaAZY/8IUzUV7jud9SWCDRbwxw/pGKw98n6mA8pg==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1 SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "awful"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 18:33:03.062610"], ["updated_at", "2016-05-16 18:33:03.062610"]]  (71.0ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 13]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.0ms) Completed 200 OK in 96ms (Views: 11.7ms | ActiveRecord: 71.9ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:33:10 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"nLZ+L2Vd1ZNxwdJrpMcEcsjYZf6sXu2oCQ26WvVMUP++0teaAZY/8IUzUV7jud9SWCDRbwxw/pGKw98n6mA8pg==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (6.4ms) Completed 500 Internal Server Error in 35ms ActionView::Template::Error (wrong number of arguments (0 for 1..4)): 1: <%= form_for tag, html: ajax_form_hash(dom_target(tag)) do |f| %> 2: <%= render partial: 'form_fields', locals: { f: f } %> 3: <%= f.submit 'Update' %> 4: <%= link_to('Cancel', tag_path(tag), :class => 'button', actionview (4.2.0) lib/action_view/helpers/tag_helper.rb:74:in `tag' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb:1:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__form_html_erb__3344660654146157967_47241760924140' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:24:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (7.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:33:22 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 13]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (12.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (19.5ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (23.2ms) Completed 200 OK in 87ms (Views: 84.7ms | ActiveRecord: 1.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:33:23 -0300 Started DELETE "/pulitzer/tags/13" for ::1 at 2016-05-16 15:33:26 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"kbD0bYlVza/Ym+5ODYHxLy8bcw6wSn4pzGNuR/d8uZKz1F3Y7Z4nzCxpbXtK/yoPv+PHnxBkbRBPrQs66FDVyw==", "id"=>"13"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 13]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 13], ["label_type", "Pulitzer::Tag"]] SQL (0.3ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 13]]  (44.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 55ms (Views: 1.2ms | ActiveRecord: 45.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:34:33 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (13.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (25.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (38.8ms) Completed 200 OK in 157ms (Views: 143.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:34:33 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=zo96nlom1WcCibhNrNU2%2FwSvaWu4CCzkIuEL0wiENuzs69MrPu0%2FBPZ7O3jrq%2B3flFfd%2BhgmP92hL26uF6hatQ%3D%3D" for ::1 at 2016-05-16 15:34:34 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"zo96nlom1WcCibhNrNU2/wSvaWu4CCzkIuEL0wiENuzs69MrPu0/BPZ7O3jrq+3flFfd+hgmP92hL26uF6hatQ=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (14.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (41.4ms) Completed 200 OK in 47ms (Views: 45.6ms | ActiveRecord: 0.2ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:34:36 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"dfDbR8viplyxaIcS6Hq2AIu7ueQhb1jhztp4eDlZvKVXlHLyrylMP0WaBCevBG0gG0MNdYFBS9hNFB0FJnXQ/A==", "tag"=>{"name"=>"asdasd", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'asdasd' LIMIT 1 SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "asdasd"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 18:34:36.525981"], ["updated_at", "2016-05-16 18:34:36.525981"]]  (68.3ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 14]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (16.3ms) Completed 200 OK in 105ms (Views: 23.7ms | ActiveRecord: 69.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:34:39 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 14]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (13.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (21.3ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (25.0ms) Completed 200 OK in 91ms (Views: 89.1ms | ActiveRecord: 1.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:34:39 -0300 Started DELETE "/pulitzer/tags/14" for ::1 at 2016-05-16 15:34:41 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"migt53L9DuJ1FVPMz9kvjDyzzS8QmGXD/0jg62G3s0G4TIRSFjbkgYHn0PmIp/SsrEt5vrC2dvp8hoWWfpvfGA==", "id"=>"14"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 14]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 14], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 14]]  (53.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 64ms (Views: 1.6ms | ActiveRecord: 54.7ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:35:30 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (13.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (18.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (21.9ms) Completed 200 OK in 80ms (Views: 78.2ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:35:30 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=wAFF3lDTpITNFwoOf794rQXNI21h4cntozN0E%2BoI1s%2FiZexrNBhO5znliTs4waONlTWX%2FMHP2tQg%2FRFu9SS6lg%3D%3D" for ::1 at 2016-05-16 15:35:32 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"wAFF3lDTpITNFwoOf794rQXNI21h4cntozN0E+oI1s/iZexrNBhO5znliTs4waONlTWX/MHP2tQg/RFu9SS6lg=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (12.9ms) Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:35:33 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"FUgNIem+UHHp2cxvnpxbXD905qwfwfr5Bo8Jd5SgTTo3LKSUjXW6Eh0rT1rZ4oB8r4xSPb/v6cCFQWwKi4whYw==", "tag"=>{"name"=>"asdasd", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'asdasd' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "asdasd"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 18:35:33.828350"], ["updated_at", "2016-05-16 18:35:33.828350"]]  (77.6ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 15]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.3ms) Completed 200 OK in 102ms (Views: 19.4ms | ActiveRecord: 78.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:35:34 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 15]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (15.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (23.2ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (26.8ms) Completed 200 OK in 86ms (Views: 83.6ms | ActiveRecord: 1.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:35:35 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=15&authenticity_token=ddpywxjL4QaLixeEIYR9WWDBEtcGHfpNOeqlftlvbmRXvtt2fAALZX95lLFm%2BqZ58DmmRqYz6XS6JMADxkMCPQ%3D%3D" for ::1 at 2016-05-16 15:35:36 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"15"}, "authenticity_token"=>"ddpywxjL4QaLixeEIYR9WWDBEtcGHfpNOeqlftlvbmRXvtt2fAALZX95lLFm+qZ58DmmRqYz6XS6JMADxkMCPQ=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 15]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (16.8ms) Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.2ms) Started DELETE "/pulitzer/tags/15" for ::1 at 2016-05-16 15:35:37 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"ddpywxjL4QaLixeEIYR9WWDBEtcGHfpNOeqlftlvbmRXvtt2fAALZX95lLFm+qZ58DmmRqYz6XS6JMADxkMCPQ==", "id"=>"15"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 15]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 15], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 15]]  (45.4ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 49ms (Views: 0.3ms | ActiveRecord: 46.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:35:38 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (15.3ms) Completed 200 OK in 63ms (Views: 61.6ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:35:39 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=L6%2Fa83pZarV5pERjuCVijNrrulWuDb4uE1xwilen0skNy3NGHpKA1o1Wx1b%2FW7msShMOxA4jrReQkhX3SIu%2BkA%3D%3D" for ::1 at 2016-05-16 15:35:47 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"L6/a83pZarV5pERjuCVijNrrulWuDb4uE1xwilen0skNy3NGHpKA1o1Wx1b/W7msShMOxA4jrReQkhX3SIu+kA=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.2ms) Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:36:00 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Aec5lJbmCNrAbVERsgu1NWaSfPs47uAe8RoplYMnxM0jg5Ah8i3iuTSf0iT1dW4V9mrIapjA8ydy1EzonAuolA==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "awful"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 18:36:00.456182"], ["updated_at", "2016-05-16 18:36:00.456182"]]  (57.8ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 16]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.8ms) Completed 200 OK in 96ms (Views: 14.5ms | ActiveRecord: 58.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:36:43 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 16]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (15.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (11.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (28.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (42.7ms) Completed 200 OK in 160ms (Views: 145.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:36:43 -0300 Started DELETE "/pulitzer/tags/16" for ::1 at 2016-05-16 15:36:45 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"7r0XREU9j79plUyflqmK32vlgsuETQ7g/LlrrZufvffM2b7xIfZl3J1nz6rR11H/+x02WiRjHdl/dw7QhLPRrg==", "id"=>"16"} Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 16]]  (0.3ms) begin transaction Pulitzer::PostTag Load (0.3ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 16], ["label_type", "Pulitzer::Tag"]] SQL (0.4ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 16]]  (43.6ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 58ms (Views: 1.9ms | ActiveRecord: 45.1ms) Started GET "/pulitzer/tags/1/edit?authenticity_token=7r0XREU9j79plUyflqmK32vlgsuETQ7g%2FLlrrZufvffM2b7xIfZl3J1nz6rR11H%2F%2Bx02WiRjHdl%2Fdw7QhLPRrg%3D%3D" for ::1 at 2016-05-16 15:36:47 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"7r0XREU9j79plUyflqmK32vlgsuETQ7g/LlrrZufvffM2b7xIfZl3J1nz6rR11H/+x02WiRjHdl/dw7QhLPRrg==", "id"=>"1"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (15.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (27.0ms) Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.1ms) Started PATCH "/pulitzer/tags/1" for ::1 at 2016-05-16 15:36:48 -0300 Processing by Pulitzer::TagsController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"BeNZnSABNP+nv7ZqpPpVsFjvhFDCk5XCyvhpPtV1g24nh/AoRMrenFNNNV/jhI6QyBcwwWK9hvtJNgxDylnvNw==", "tag"=>{"name"=>"something2", "hierarchical"=>"t", "parent_id"=>""}, "id"=>"1"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Pulitzer::Tag Exists (0.3ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'something2' AND "pulitzer_tags"."id" != 1) LIMIT 1 SQL (0.3ms) UPDATE "pulitzer_tags" SET "name" = ?, "updated_at" = ? WHERE "pulitzer_tags"."id" = ? [["name", "something2"], ["updated_at", "2016-05-16 18:36:49.007633"], ["id", 1]]  (61.9ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.7ms) Completed 200 OK in 93ms (Views: 12.6ms | ActiveRecord: 63.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=7r0XREU9j79plUyflqmK32vlgsuETQ7g%2FLlrrZufvffM2b7xIfZl3J1nz6rR11H%2F%2Bx02WiRjHdl%2Fdw7QhLPRrg%3D%3D" for ::1 at 2016-05-16 15:36:50 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"7r0XREU9j79plUyflqmK32vlgsuETQ7g/LlrrZufvffM2b7xIfZl3J1nz6rR11H/+x02WiRjHdl/dw7QhLPRrg=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (1.1ms) Completed 500 Internal Server Error in 8ms SyntaxError (/home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:3: syntax error, unexpected ',', expecting ')' ...l: ajax_form_hash(new_target, , insert_method: 'append', sub... ... ^ /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:3: syntax error, unexpected ',', expecting keyword_end ...get, , insert_method: 'append', sub_class: "AddALineForm", c... ... ^ /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:3: syntax error, unexpected ',', expecting keyword_end ...nd', sub_class: "AddALineForm", container: new_div_container... ... ^ /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:11: syntax error, unexpected keyword_ensure, expecting end-of-input): /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:3: syntax error, unexpected ',', expecting ')' ...l: ajax_form_hash(new_target, , insert_method: 'append', sub... ... ^ /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:3: syntax error, unexpected ',', expecting keyword_end ...get, , insert_method: 'append', sub_class: "AddALineForm", c... ... ^ /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:3: syntax error, unexpected ',', expecting keyword_end ...nd', sub_class: "AddALineForm", container: new_div_container... ... ^ /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:11: syntax error, unexpected keyword_ensure, expecting end-of-input actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.0) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:12:in `new' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (13.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:37:07 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (13.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (18.0ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (21.8ms) Completed 200 OK in 84ms (Views: 81.8ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:37:08 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (13.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (16.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (20.5ms) Completed 200 OK in 73ms (Views: 71.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:37:08 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=yyrIJAApdkfB4Z7Izjzfv9iFnwV6WO2BAP1Nt8CzmCnpTmGRZOKcJDUTHf2JQgSfSH0rlNp2%2FriDMyjK35%2F0cA%3D%3D" for ::1 at 2016-05-16 15:37:09 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"yyrIJAApdkfB4Z7Izjzfv9iFnwV6WO2BAP1Nt8CzmCnpTmGRZOKcJDUTHf2JQgSfSH0rlNp2/riDMyjK35/0cA=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (16.6ms) Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:37:11 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"N2wC0KMS/EwZ//MXSxbG/u+8nBvORZc9KBFOTC3JUqEVCKtlx9kWL+0NcCIMaB3ef0Qoim5rhASr3ysxMuU++A==", "tag"=>{"name"=>"asdasd", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'asdasd' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "asdasd"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 18:37:11.654281"], ["updated_at", "2016-05-16 18:37:11.654281"]]  (55.5ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 17]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.1ms) Completed 200 OK in 77ms (Views: 16.1ms | ActiveRecord: 56.1ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:37:15 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 17]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.5ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (15.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (18.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (28.1ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (32.2ms) Completed 200 OK in 104ms (Views: 101.1ms | ActiveRecord: 1.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:37:15 -0300 Started DELETE "/pulitzer/tags/17" for ::1 at 2016-05-16 15:37:19 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"5AUXViAp9iqniQlnZlbSX3WjnxHtca7VhQz23pAyJhPGYb7jROIcSVN7ilIhKAl/5VsrgE1fvewGwpOjjx5KSg==", "id"=>"17"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 17]]  (0.2ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 17], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 17]]  (44.5ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 50ms (Views: 0.6ms | ActiveRecord: 45.2ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=5AUXViAp9iqniQlnZlbSX3WjnxHtca7VhQz23pAyJhPGYb7jROIcSVN7ilIhKAl%2F5VsrgE1fvewGwpOjjx5KSg%3D%3D" for ::1 at 2016-05-16 15:37:21 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"5AUXViAp9iqniQlnZlbSX3WjnxHtca7VhQz23pAyJhPGYb7jROIcSVN7ilIhKAl/5VsrgE1fvewGwpOjjx5KSg=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.7ms) Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:37:49 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"8ZDu2Xh3UJkfZmwpsEyY734QD1zw6JxwwO8obfwKhsTT9EdsHLy6+uuU7xz3MkPP7ui7zVDGj0lDIU0Q4ybqnQ==", "tag"=>{"name"=>"child1", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child1' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child1"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 18:37:49.464868"], ["updated_at", "2016-05-16 18:37:49.464868"]]  (77.2ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 18]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.4ms) Completed 200 OK in 98ms (Views: 15.5ms | ActiveRecord: 77.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:38:01 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 18]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (16.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (25.9ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (29.9ms) Completed 200 OK in 94ms (Views: 92.2ms | ActiveRecord: 1.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:38:02 -0300 Started DELETE "/pulitzer/tags/18" for ::1 at 2016-05-16 15:38:04 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"sVcw52XUNJHxTZ1Fwpv93P2W5tMQLACfRTAoCyaD67WTM5lSAR/e8gW/HnCF5Sb8bW5SQrACE6bG/k12Oa+H7A==", "id"=>"18"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 18]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 18], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 18]]  (42.7ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 47ms (Views: 0.8ms | ActiveRecord: 43.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:38:06 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (11.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (18.0ms) Completed 200 OK in 69ms (Views: 67.6ms | ActiveRecord: 0.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:38:06 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:38:54 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (14.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (13.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (30.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (47.8ms) Completed 200 OK in 168ms (Views: 151.6ms | ActiveRecord: 1.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:38:55 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=qpRPdUismrVSx%2FVjd6%2BN0pJp1Sxcagn%2FGNA7hW%2FxJqWI8ObALGdw1qY1dlYw0VbyApFhvfxEGsabHl74cN1K%2FA%3D%3D" for ::1 at 2016-05-16 15:38:55 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"qpRPdUismrVSx/Vjd6+N0pJp1Sxcagn/GNA7hW/xJqWI8ObALGdw1qY1dlYw0VbyApFhvfxEGsabHl74cN1K/A=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (26.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (45.7ms) Completed 200 OK in 53ms (Views: 50.5ms | ActiveRecord: 0.2ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:38:59 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"4XfkxZevbGvTviXM1aLBh1NgYcf6Vr3nL8BMBEclPgHDE01w82SGCCdMpvmS3Bqnw5jVVlp4rt6sDil5WAlSWA==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1 SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "awful"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 18:38:59.428166"], ["updated_at", "2016-05-16 18:38:59.428166"]]  (68.8ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.5ms) Completed 200 OK in 95ms (Views: 13.8ms | ActiveRecord: 69.7ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:39:00 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (13.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (21.1ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (24.5ms) Completed 200 OK in 88ms (Views: 86.4ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:39:00 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=zlgSYuZsaTOZD6HQesYn9w2MuJoRVvY5xRZINAPRu%2FXsPLvXgqeDUG39IuU9uPzXnXQMC7F45QBG2C1JHP3XrA%3D%3D" for ::1 at 2016-05-16 15:39:02 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"zlgSYuZsaTOZD6HQesYn9w2MuJoRVvY5xRZINAPRu/XsPLvXgqeDUG39IuU9uPzXnXQMC7F45QBG2C1JHP3XrA=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.8ms) Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:39:04 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"t3y6nHeEpeS6IsOfkXUUou78aUagUWF092Ely5Cd4K+VGBMpE09Ph07QQKrWC8+CfgTd1wB/ck10r0C2j7GM9g==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (7.5ms) Completed 500 Internal Server Error in 35ms ActionView::Template::Error (wrong number of arguments (0 for 1..4)): 1: <%= form_for tag, html: ajax_form_hash(dom_target(tag)) do |f| %> 2: <%= render partial: 'form_fields', locals: { f: f } %> 3: <%= f.submit 'Update' %> 4: <%= link_to('Cancel', tag_path(tag), :class => 'button', actionview (4.2.0) lib/action_view/helpers/tag_helper.rb:74:in `tag' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb:1:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__form_html_erb___3282585898497645795_47330041971660' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:24:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (7.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:39:56 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:40:01 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (16.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (12.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (30.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (45.5ms) Completed 200 OK in 173ms (Views: 155.4ms | ActiveRecord: 1.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:40:02 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=X8av3JdgKXFXeLxpo%2BdjQHUpy0jIx%2FAcQKBdukVfuox9ogZp86vDEqOKP1zkmbhg5dF%2F2Wjp4yXDbjjHWnPW1Q%3D%3D" for ::1 at 2016-05-16 15:40:04 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"X8av3JdgKXFXeLxpo+djQHUpy0jIx/AcQKBdukVfuox9ogZp86vDEqOKP1zkmbhg5dF/2Wjp4yXDbjjHWnPW1Q=="} Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (25.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (42.8ms) Completed 200 OK in 49ms (Views: 47.7ms | ActiveRecord: 0.3ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:40:06 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"OTN0nwLw0HhkFP1BKtHKEbsG5OrZJrHMboYIATRyZWgbV90qZjs6G5DmfnRtrxExK/5Qe3kIovXtSG18K14JMQ==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (10.0ms) Completed 500 Internal Server Error in 23ms ActionView::Template::Error (No route matches {:action=>"show", :controller=>"pulitzer/tags", :format=>nil, :id=>#} missing required keys: [:id]): 1: <%= form_for tag, html: ajax_form_hash(dom_target(tag)) do |f| %> 2: <%= render partial: 'form_fields', locals: { f: f } %> 3: <%= f.submit 'Update' %> 4: <%= link_to('Cancel', tag_path(tag), :class => 'button', 5: data: { ajax_link: true, ajax_target: dom_target(tag) } ) %> 6: <% end %> 7: <%= render 'pulitzer/shared/error_messages', object: tag %> actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb:4:in `block in __home_darkside_work_pulitzer_app_views_pulitzer_tags__form_html_erb__2659584233269766919_47031017043800' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb:1:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__form_html_erb__2659584233269766919_47031017043800' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:24:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (7.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:41:23 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:41:29 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (16.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.8ms) Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (29.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (43.5ms) Completed 200 OK in 158ms (Views: 142.9ms | ActiveRecord: 1.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:41:29 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=kvArSBSHFGwMiwbyGQocEkh4jOKl1Yc4CrxxivFVoGWwlIL9cEz%2BD%2Fh5hcdedMcy2IA4cwX7lAGJchT37nnMPA%3D%3D" for ::1 at 2016-05-16 15:41:31 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"kvArSBSHFGwMiwbyGQocEkh4jOKl1Yc4CrxxivFVoGWwlIL9cEz+D/h5hcdedMcy2IA4cwX7lAGJchT37nnMPA=="} Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (26.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (45.7ms) Completed 200 OK in 52ms (Views: 50.9ms | ActiveRecord: 0.4ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:41:33 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LuRrJeE/xlpcdQlisIj8tkLOyIb8/Tf5cpzrDaDF85IMgMKQhfQsOaiHilf39ieW0jZ8F1zTJMDxUo5wv+mfyw==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1  (0.1ms) rollback transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.5ms) Completed 409 Conflict in 18ms (Views: 10.2ms | ActiveRecord: 0.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 15:42:09 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (11.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (18.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (21.5ms) Completed 200 OK in 72ms (Views: 69.8ms | ActiveRecord: 1.1ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 15:42:09 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=z07H73OtB5XnWOZ8GLRGys%2B8lNWXixqPIf79UUVgdl3tKm5aF2bt9hOqZUlfyp3qX0QgRDelCbaiMJgsWkwaBA%3D%3D" for ::1 at 2016-05-16 15:42:11 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"z07H73OtB5XnWOZ8GLRGys+8lNWXixqPIf79UUVgdl3tKm5aF2bt9hOqZUlfyp3qX0QgRDelCbaiMJgsWkwaBA=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (2369.3ms) Completed 200 OK in 2375ms (Views: 2374.0ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 15:42:18 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"l/Oqvjn2qXUpmnEPUZf90mBNnKBRR18/v1KJbO8663+1lwMLXT1DFt1o8joW6Sby8LUoMfFpTAY8nOwR8BaHJg==", "tag"=>{"name"=>"awful", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11674.5ms) Completed 409 Conflict in 11680ms (Views: 11677.2ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:30:48 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (15.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.6ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (27.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (40.6ms) Completed 200 OK in 158ms (Views: 145.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:30:48 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=GjU%2BLtp5xp6ZP8Q1fveBU5PCQWvcG74nOrsH8B518s84UZebvrIs%2FW3NRwA5iVpzAzr1%2Bnw1rR65dWKNAVmelg%3D%3D" for ::1 at 2016-05-16 16:30:55 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"GjU+Ltp5xp6ZP8Q1fveBU5PCQWvcG74nOrsH8B518s84UZebvrIs/W3NRwA5iVpzAzr1+nw1rR65dWKNAVmelg=="} Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (16.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (45.3ms) Completed 200 OK in 51ms (Views: 49.7ms | ActiveRecord: 0.3ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:31:07 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ENLfsHfZkj3KMJ8O6yAa6hO5hg+CpukFScibY3OhEUQytnYFExJ4Xj7CHDusXsHKg0EyniKI+jzKBv4ebI19HQ==", "tag"=>{"name"=>"lalala", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.3ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'lalala' LIMIT 1  (0.1ms) rollback transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (12.8ms) Completed 409 Conflict in 49ms (Views: 17.6ms | ActiveRecord: 0.6ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:31:35 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ENLfsHfZkj3KMJ8O6yAa6hO5hg+CpukFScibY3OhEUQytnYFExJ4Xj7CHDusXsHKg0EyniKI+jzKBv4ebI19HQ==", "tag"=>{"name"=>"lalala2", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'lalala2' LIMIT 1 SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "lalala2"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 19:31:35.848001"], ["updated_at", "2016-05-16 19:31:35.848001"]]  (76.8ms) commit transaction Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 20]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (17.3ms) Completed 200 OK in 107ms (Views: 24.2ms | ActiveRecord: 77.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:32:07 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 20]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.5ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (17.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (29.6ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (33.4ms) Completed 200 OK in 98ms (Views: 95.9ms | ActiveRecord: 1.4ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:32:08 -0300 Started DELETE "/pulitzer/tags/20" for ::1 at 2016-05-16 16:32:11 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"nP3gF3+izD/6VtJ5VYReS/ig2KkOTUweVSTXN5hAAjS+mUmiG2kmXA6kUUwS+oVraFhsOK5jXyfW6rJKh2xubQ==", "id"=>"20"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 20]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 20], ["label_type", "Pulitzer::Tag"]] SQL (0.3ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 20]]  (42.1ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 53ms (Views: 1.3ms | ActiveRecord: 43.1ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=nP3gF3%2BizD%2F6VtJ5VYReS%2Fig2KkOTUweVSTXN5hAAjS%2BmUmiG2kmXA6kUUwS%2BoVraFhsOK5jXyfW6rJKh2xubQ%3D%3D" for ::1 at 2016-05-16 16:32:17 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"nP3gF3+izD/6VtJ5VYReS/ig2KkOTUweVSTXN5hAAjS+mUmiG2kmXA6kUUwS+oVraFhsOK5jXyfW6rJKh2xubQ=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.5ms) Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=19&authenticity_token=nP3gF3%2BizD%2F6VtJ5VYReS%2Fig2KkOTUweVSTXN5hAAjS%2BmUmiG2kmXA6kUUwS%2BoVraFhsOK5jXyfW6rJKh2xubQ%3D%3D" for ::1 at 2016-05-16 16:32:20 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"19"}, "authenticity_token"=>"nP3gF3+izD/6VtJ5VYReS/ig2KkOTUweVSTXN5hAAjS+mUmiG2kmXA6kUUwS+oVraFhsOK5jXyfW6rJKh2xubQ=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (10.5ms) Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=nP3gF3%2BizD%2F6VtJ5VYReS%2Fig2KkOTUweVSTXN5hAAjS%2BmUmiG2kmXA6kUUwS%2BoVraFhsOK5jXyfW6rJKh2xubQ%3D%3D" for ::1 at 2016-05-16 16:32:24 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"nP3gF3+izD/6VtJ5VYReS/ig2KkOTUweVSTXN5hAAjS+mUmiG2kmXA6kUUwS+oVraFhsOK5jXyfW6rJKh2xubQ=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (14.7ms) Completed 200 OK in 22ms (Views: 20.9ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:32:27 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.0ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (16.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (18.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (27.4ms) Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (32.0ms) Completed 200 OK in 94ms (Views: 92.1ms | ActiveRecord: 1.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:32:27 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=jvcc7zahwXtlLJf%2FqRsTH1Hv1evULthW1RT4ZjIIsjusk7VaUmorGJHeFMruZcg%2FwRdhenQAy29W2p0bLSTeYg%3D%3D" for ::1 at 2016-05-16 16:32:30 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"jvcc7zahwXtlLJf/qRsTH1Hv1evULthW1RT4ZjIIsjusk7VaUmorGJHeFMruZcg/wRdhenQAy29W2p0bLSTeYg=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.7ms) Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:32:34 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"E/f9bWoZJitrILKCZ2AoT2LzXKOwySLe3x6l/tmRQCgxk1TYDtLMSJ/SMbcgHvNv8gvoMhDnMedc0MCDxr0scQ==", "tag"=>{"name"=>"awful2", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'awful2' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "awful2"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 19:32:34.928594"], ["updated_at", "2016-05-16 19:32:34.928594"]]  (80.3ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 21]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.1ms) Completed 200 OK in 122ms (Views: 18.8ms | ActiveRecord: 80.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:32:38 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 21]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (14.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (26.3ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (30.1ms) Completed 200 OK in 92ms (Views: 89.5ms | ActiveRecord: 1.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:32:38 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:34:12 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 21]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 9]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (17.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (28.4ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (32.3ms) Completed 200 OK in 95ms (Views: 92.8ms | ActiveRecord: 1.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:34:12 -0300 Started DELETE "/pulitzer/tags/21" for ::1 at 2016-05-16 16:34:21 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"36/CHSEFqQPvj6TQ4GTx1S9MAzErFln4p/wiwIaplgj9y2uoRc5DYBt9J+WnGir1v7S3oIs4SsEkMke9mYX6UQ==", "id"=>"21"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 21]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 21], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 21]]  (42.8ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 47ms (Views: 0.6ms | ActiveRecord: 43.4ms) Started GET "/pulitzer/tags/1/edit?authenticity_token=36%2FCHSEFqQPvj6TQ4GTx1S9MAzErFln4p%2FwiwIaplgj9y2uoRc5DYBt9J%2BWnGir1v7S3oIs4SsEkMke9mYX6UQ%3D%3D" for ::1 at 2016-05-16 16:34:22 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"36/CHSEFqQPvj6TQ4GTx1S9MAzErFln4p/wiwIaplgj9y2uoRc5DYBt9J+WnGir1v7S3oIs4SsEkMke9mYX6UQ==", "id"=>"1"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (12.3ms) Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.1ms) Started PATCH "/pulitzer/tags/1" for ::1 at 2016-05-16 16:34:27 -0300 Processing by Pulitzer::TagsController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"qqY7PTkyDyI4o17ymHTjRhVflKoC4qvB+m7Pu62H72aIwpKIXfnlQcxR3cffCjhmhacgO6LMuPh5oKrGsquDPw==", "tag"=>{"name"=>"something", "hierarchical"=>"t", "parent_id"=>""}, "id"=>"1"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction Pulitzer::Tag Exists (0.3ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'something' AND "pulitzer_tags"."id" != 1) LIMIT 1 SQL (0.4ms) UPDATE "pulitzer_tags" SET "name" = ?, "updated_at" = ? WHERE "pulitzer_tags"."id" = ? [["name", "something"], ["updated_at", "2016-05-16 19:34:27.447812"], ["id", 1]]  (70.8ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (15.7ms) Completed 200 OK in 100ms (Views: 19.9ms | ActiveRecord: 72.0ms) Started DELETE "/pulitzer/tags/9" for ::1 at 2016-05-16 16:34:36 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"36/CHSEFqQPvj6TQ4GTx1S9MAzErFln4p/wiwIaplgj9y2uoRc5DYBt9J+WnGir1v7S3oIs4SsEkMke9mYX6UQ==", "id"=>"9"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 9]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 9], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 9]]  (45.3ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 50ms (Views: 0.8ms | ActiveRecord: 45.8ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=36%2FCHSEFqQPvj6TQ4GTx1S9MAzErFln4p%2FwiwIaplgj9y2uoRc5DYBt9J%2BWnGir1v7S3oIs4SsEkMke9mYX6UQ%3D%3D" for ::1 at 2016-05-16 16:34:54 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"36/CHSEFqQPvj6TQ4GTx1S9MAzErFln4p/wiwIaplgj9y2uoRc5DYBt9J+WnGir1v7S3oIs4SsEkMke9mYX6UQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.3ms) Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=36%2FCHSEFqQPvj6TQ4GTx1S9MAzErFln4p%2FwiwIaplgj9y2uoRc5DYBt9J%2BWnGir1v7S3oIs4SsEkMke9mYX6UQ%3D%3D" for ::1 at 2016-05-16 16:34:57 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"36/CHSEFqQPvj6TQ4GTx1S9MAzErFln4p/wiwIaplgj9y2uoRc5DYBt9J+WnGir1v7S3oIs4SsEkMke9mYX6UQ=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (13.3ms) Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=36%2FCHSEFqQPvj6TQ4GTx1S9MAzErFln4p%2FwiwIaplgj9y2uoRc5DYBt9J%2BWnGir1v7S3oIs4SsEkMke9mYX6UQ%3D%3D" for ::1 at 2016-05-16 16:34:58 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"36/CHSEFqQPvj6TQ4GTx1S9MAzErFln4p/wiwIaplgj9y2uoRc5DYBt9J+WnGir1v7S3oIs4SsEkMke9mYX6UQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (12.0ms) Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:35:02 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"70gIognm5BImFeqTGfk7K3lTzzQ2CVSuy0Z7+JXAjKDNLKEXbS0OcdLnaaZeh+AL6at7pZYnR5dIiB6Fiuzg+Q==", "tag"=>{"name"=>"something2", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.3ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'something2' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "something2"], ["hierarchical", "t"], ["created_at", "2016-05-16 19:35:02.286903"], ["updated_at", "2016-05-16 19:35:02.286903"]]  (104.3ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 22]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.9ms) Completed 200 OK in 132ms (Views: 22.2ms | ActiveRecord: 105.1ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:35:05 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 22]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (19.8ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (22.9ms) Completed 200 OK in 83ms (Views: 80.9ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:35:05 -0300 Started DELETE "/pulitzer/tags/22" for ::1 at 2016-05-16 16:35:10 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"BxB5zb4AUAReGLPsg556cnah0WJcyDZSUEvzggV7zocldNB42su6Z6rqMNnE4KFS5lll8/zmJWvThZb/Glei3g==", "id"=>"22"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 22]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 22], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 22]]  (44.7ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 49ms (Views: 0.5ms | ActiveRecord: 45.3ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=BxB5zb4AUAReGLPsg556cnah0WJcyDZSUEvzggV7zocldNB42su6Z6rqMNnE4KFS5lll8%2FzmJWvThZb%2FGlei3g%3D%3D" for ::1 at 2016-05-16 16:35:12 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"BxB5zb4AUAReGLPsg556cnah0WJcyDZSUEvzggV7zocldNB42su6Z6rqMNnE4KFS5lll8/zmJWvThZb/Glei3g=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (13.1ms) Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:37:24 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.8ms) Completed 200 OK in 58ms (Views: 56.8ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:37:24 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=mUROJrX4pDv5vvqVK6DPL2KMxoCuyUBfiPjsGGdojPa7IOeT0TNOWA1MeaBs3hQP8nRyEQ7nU2YLNolleETgrw%3D%3D" for ::1 at 2016-05-16 16:37:26 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"mUROJrX4pDv5vvqVK6DPL2KMxoCuyUBfiPjsGGdojPa7IOeT0TNOWA1MeaBs3hQP8nRyEQ7nU2YLNolleETgrw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.8ms) Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:37:29 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"rq+NrbsEsPUhKInsd8pFXjzDbjZlgA2BOcgvmU7CfMyMyyQY389altXaCtkwtJ5+rDvap8WuHri6BkrkUe4QlQ==", "tag"=>{"name"=>"hijinks", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'hijinks' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "hijinks"], ["hierarchical", "t"], ["created_at", "2016-05-16 19:37:29.820965"], ["updated_at", "2016-05-16 19:37:29.820965"]]  (56.2ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 23]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.2ms) Completed 200 OK in 78ms (Views: 16.8ms | ActiveRecord: 56.9ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:37:31 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"rq+NrbsEsPUhKInsd8pFXjzDbjZlgA2BOcgvmU7CfMyMyyQY389altXaCtkwtJ5+rDvap8WuHri6BkrkUe4QlQ==", "tag"=>{"name"=>"hijinks", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'hijinks' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (27.5ms) Completed 409 Conflict in 36ms (Views: 31.8ms | ActiveRecord: 0.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:37:32 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.2ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (15.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 23]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (29.1ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (33.1ms) Completed 200 OK in 89ms (Views: 86.7ms | ActiveRecord: 1.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:37:33 -0300 Started DELETE "/pulitzer/tags/23" for ::1 at 2016-05-16 16:37:37 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"5a7KHJfjzcnthlAUAHGkVCD0nVd1Wz7G0ERd5TzNnALHymOp8ygnqhl00yFHD390sAwpxtV1Lf9TijiYI+HwWw==", "id"=>"23"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 23]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 23], ["label_type", "Pulitzer::Tag"]] SQL (0.1ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 23]]  (43.0ms) commit transaction Rendered text template (0.1ms) Completed 200 OK in 47ms (Views: 1.1ms | ActiveRecord: 43.3ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=5a7KHJfjzcnthlAUAHGkVCD0nVd1Wz7G0ERd5TzNnALHymOp8ygnqhl00yFHD390sAwpxtV1Lf9TijiYI%2BHwWw%3D%3D" for ::1 at 2016-05-16 16:37:39 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"5a7KHJfjzcnthlAUAHGkVCD0nVd1Wz7G0ERd5TzNnALHymOp8ygnqhl00yFHD390sAwpxtV1Lf9TijiYI+HwWw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.6ms) Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:37:49 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"SyHsCjKhGgIf1GeDywU0TNJ3ecDtw2wfr6afyjZDrU5pRUW/VmrwYesm5LaMe+9sQo/NUU3tfyYsaPq3KW/BFw==", "tag"=>{"name"=>"hijinks", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'hijinks' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "hijinks"], ["hierarchical", "t"], ["created_at", "2016-05-16 19:37:49.901055"], ["updated_at", "2016-05-16 19:37:49.901055"]]  (79.4ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 24]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.3ms) Completed 200 OK in 99ms (Views: 15.0ms | ActiveRecord: 80.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:38:06 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.5ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 24]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (16.8ms) Completed 200 OK in 60ms (Views: 58.8ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:38:07 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 19]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 24]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (15.6ms) Completed 200 OK in 60ms (Views: 58.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:38:07 -0300 Started DELETE "/pulitzer/tags/24" for ::1 at 2016-05-16 16:38:10 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"6Fyz3r5qwmmJbV16RNy6SDRiMRxd3a/QQP9Lg4z3yJ3KOBpr2qEoCn2f3k8DomFopJqFjf3zvOnDMS7+k9ukxA==", "id"=>"24"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 24]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 24], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 24]]  (45.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 50ms (Views: 0.5ms | ActiveRecord: 46.4ms) Started DELETE "/pulitzer/tags/19" for ::1 at 2016-05-16 16:38:37 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"6Fyz3r5qwmmJbV16RNy6SDRiMRxd3a/QQP9Lg4z3yJ3KOBpr2qEoCn2f3k8DomFopJqFjf3zvOnDMS7+k9ukxA==", "id"=>"19"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 19]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 19], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 19]]  (45.3ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 49ms (Views: 0.7ms | ActiveRecord: 45.8ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:38:41 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (11.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (15.6ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (19.0ms) Completed 200 OK in 73ms (Views: 70.9ms | ActiveRecord: 0.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:38:41 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:40:03 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.2ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.6ms) Completed 200 OK in 69ms (Views: 67.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:40:03 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:40:05 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (11.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (15.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (18.9ms) Completed 200 OK in 71ms (Views: 69.2ms | ActiveRecord: 0.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:40:05 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (11.4ms) Completed 200 OK in 57ms (Views: 56.0ms | ActiveRecord: 0.6ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:40:05 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 2]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.2ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (11.3ms) Completed 200 OK in 53ms (Views: 52.1ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:40:05 -0300 Started DELETE "/pulitzer/tags/2" for ::1 at 2016-05-16 16:40:07 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"JYg6mn/DzU8yX4n+Nkbgq3/Th4+TuoYlo/he+O/sZMIH7JMvGwgnLMatCstxODuL7yszHjOUlRwgNjuF8MAImw==", "id"=>"2"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 2], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 2]]  (43.8ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 48ms (Views: 0.4ms | ActiveRecord: 44.3ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:40:09 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.1ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (6.0ms) Completed 200 OK in 58ms (Views: 57.3ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:40:09 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=Wig34hZLOlw%2F%2B%2FbuZI8dxrd6jxi9ed%2FvaJGW2HOXHOx4TJ5XcoDQP8sJddsj8cbmJ4I7iR1XzNbrX%2FOlbLtwtQ%3D%3D" for ::1 at 2016-05-16 16:40:11 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"Wig34hZLOlw/+/buZI8dxrd6jxi9ed/vaJGW2HOXHOx4TJ5XcoDQP8sJddsj8cbmJ4I7iR1XzNbrX/OlbLtwtQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.1ms) Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:40:15 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"LVME+fdSaAMJlNwhDVUErfZ/VpdUSUpVpVHKsP/ScnYPN61Mk5mCYP1mXxRKK9+NZofiBvRnWWwmn6/N4P4eLw==", "tag"=>{"name"=>"something 2", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'something 2' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "something 2"], ["hierarchical", "t"], ["created_at", "2016-05-16 19:40:15.129099"], ["updated_at", "2016-05-16 19:40:15.129099"]]  (105.9ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.7ms) Completed 200 OK in 124ms (Views: 15.0ms | ActiveRecord: 106.3ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=Wig34hZLOlw%2F%2B%2FbuZI8dxrd6jxi9ed%2FvaJGW2HOXHOx4TJ5XcoDQP8sJddsj8cbmJ4I7iR1XzNbrX%2FOlbLtwtQ%3D%3D" for ::1 at 2016-05-16 16:40:17 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"Wig34hZLOlw/+/buZI8dxrd6jxi9ed/vaJGW2HOXHOx4TJ5XcoDQP8sJddsj8cbmJ4I7iR1XzNbrX/OlbLtwtQ=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.9ms) Completed 200 OK in 17ms (Views: 16.0ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:40:22 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"tVcAcpaCoDRRW3JeB+pubGrGXi0340eZ6jHQXdziCrmXM6nH8klKV6Wp8WtAlLVM+j7qvJfNVKBp/7Ugw85m4A==", "tag"=>{"name"=>"child 1", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child 1' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child 1"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 19:40:22.275299"], ["updated_at", "2016-05-16 19:40:22.275299"]]  (83.7ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 26]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.3ms) Completed 200 OK in 129ms (Views: 21.1ms | ActiveRecord: 84.5ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:40:23 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 26]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.9ms) Completed 200 OK in 59ms (Views: 57.7ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:40:23 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:40:36 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 26]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.1ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.5ms) Completed 200 OK in 75ms (Views: 73.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:40:36 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=7vGI%2FzKRBI749JYW8XiDRo7o6FBfEY5CYy8W2D%2FOPDXMlSFKVlru7QwGFSO2BlhmHhBcwf8%2FnXvg4XOlIOJQbA%3D%3D" for ::1 at 2016-05-16 16:40:38 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"7vGI/zKRBI749JYW8XiDRo7o6FBfEY5CYy8W2D/OPDXMlSFKVlru7QwGFSO2BlhmHhBcwf8/nXvg4XOlIOJQbA=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.7ms) Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:40:41 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"g8zaAA2T03ancDObapkrL5vNTIRKyB1h9SQgKzK568+hqHO1aVg5FVOCsK4t5/APCzX4FermDlh26kVWLZWHlg==", "tag"=>{"name"=>"child 2", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child 2' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child 2"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 19:40:41.720072"], ["updated_at", "2016-05-16 19:40:41.720072"]]  (43.6ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 27]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.3ms) Completed 200 OK in 57ms (Views: 10.4ms | ActiveRecord: 43.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:40:46 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 26]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 27]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (15.2ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (19.4ms) Completed 200 OK in 96ms (Views: 94.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:40:47 -0300 Started DELETE "/pulitzer/tags/27" for ::1 at 2016-05-16 16:41:03 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"HqsProsKl7DWgO+cegfi3QUepR5eoTQ+0/pNvc34ikc8z6Yb78F90yJybKk9eTn9leYRj/6PJwdQNCjA0tTmHg==", "id"=>"27"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 27]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 27], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 27]]  (42.1ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 46ms (Views: 0.5ms | ActiveRecord: 42.7ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=HqsProsKl7DWgO%2Bcegfi3QUepR5eoTQ%2B0%2FpNvc34ikc8z6Yb78F90yJybKk9eTn9leYRj%2F6PJwdQNCjA0tTmHg%3D%3D" for ::1 at 2016-05-16 16:41:05 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"HqsProsKl7DWgO+cegfi3QUepR5eoTQ+0/pNvc34ikc8z6Yb78F90yJybKk9eTn9leYRj/6PJwdQNCjA0tTmHg=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (10.7ms) Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:41:08 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"X1+/pyQ8y+8z5MOV5ttJzzft4r+z3bAtG+VIYNL4TJd9OxYSQPchjMcWQKChpZLvpxVWLhPzoxSYKy0dzdQgzg==", "tag"=>{"name"=>"root", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'root' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "root"], ["hierarchical", "t"], ["created_at", "2016-05-16 19:41:08.066129"], ["updated_at", "2016-05-16 19:41:08.066129"]]  (105.2ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 28]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.9ms) Completed 200 OK in 133ms (Views: 22.2ms | ActiveRecord: 105.9ms) Started DELETE "/pulitzer/tags/28" for ::1 at 2016-05-16 16:41:13 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"HqsProsKl7DWgO+cegfi3QUepR5eoTQ+0/pNvc34ikc8z6Yb78F90yJybKk9eTn9leYRj/6PJwdQNCjA0tTmHg==", "id"=>"28"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 28]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 28], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 28]]  (41.4ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 45ms (Views: 0.5ms | ActiveRecord: 41.9ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=HqsProsKl7DWgO%2Bcegfi3QUepR5eoTQ%2B0%2FpNvc34ikc8z6Yb78F90yJybKk9eTn9leYRj%2F6PJwdQNCjA0tTmHg%3D%3D" for ::1 at 2016-05-16 16:41:15 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"HqsProsKl7DWgO+cegfi3QUepR5eoTQ+0/pNvc34ikc8z6Yb78F90yJybKk9eTn9leYRj/6PJwdQNCjA0tTmHg=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (12.9ms) Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:41:20 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZPqmB2E2YBI2L4DS2Y5oVssIC2OVsdsWAf5sCsa4Ez9Gng+yBf2KccLdA+ee8LN2W/C/8jWfyC+CMAl32ZR/Zg==", "tag"=>{"name"=>"root", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'root' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "root"], ["hierarchical", "t"], ["created_at", "2016-05-16 19:41:20.823947"], ["updated_at", "2016-05-16 19:41:20.823947"]]  (43.0ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.1ms) Completed 200 OK in 57ms (Views: 11.2ms | ActiveRecord: 43.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:41:58 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 26]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (15.8ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (20.3ms) Completed 200 OK in 84ms (Views: 82.6ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:41:58 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:41:59 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:41:59 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:41:59 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:41:59 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:41:59 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:41:59 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:41:59 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:41:59 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:41:59 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:41:59 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=%2FVqiEZeeArn6CJTGfYwRQUPMMKKhGk%2FZBJrfTCvO1qPfPguk81Xo2g76F%2FM68sph0zSEMwE0XOCHVLoxNOK6%2Bg%3D%3D" for ::1 at 2016-05-16 16:42:20 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"/VqiEZeeArn6CJTGfYwRQUPMMKKhGk/ZBJrfTCvO1qPfPguk81Xo2g76F/M68sph0zSEMwE0XOCHVLoxNOK6+g=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.5ms) Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:42:38 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 26]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (11.3ms) Completed 200 OK in 70ms (Views: 69.1ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:42:39 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 26]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (10.3ms) Completed 200 OK in 57ms (Views: 55.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:42:39 -0300 Started DELETE "/pulitzer/tags/26" for ::1 at 2016-05-16 16:42:42 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"Osn+57g1X/O6loulVzBUlrCVz6qfiBVPdb3vvOx45fUYrVdS3P61kE5kCJAQTo+2IG17Oz+mBnb2c4rB81SJrA==", "id"=>"26"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 26]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 26], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 26]]  (42.4ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 47ms (Views: 0.5ms | ActiveRecord: 43.1ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=Osn%2B57g1X%2FO6loulVzBUlrCVz6qfiBVPdb3vvOx45fUYrVdS3P61kE5kCJAQTo%2B2IG17Oz%2BmBnb2c4rB81SJrA%3D%3D" for ::1 at 2016-05-16 16:42:42 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"Osn+57g1X/O6loulVzBUlrCVz6qfiBVPdb3vvOx45fUYrVdS3P61kE5kCJAQTo+2IG17Oz+mBnb2c4rB81SJrA=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (11.3ms) Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.2ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:42:44 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"AivQBbdMPJxn+rg0sSlhYnVEJIkMOKt9nJAVy90tJbIgT3mw04fW/5MIOwH2V7pC5byQGKwWuEQfXnC2wgFJ6w==", "tag"=>{"name"=>"child 1", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child 1' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child 1"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 19:42:44.185297"], ["updated_at", "2016-05-16 19:42:44.185297"]]  (81.6ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 30]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.7ms) Completed 200 OK in 107ms (Views: 20.3ms | ActiveRecord: 82.2ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=Osn%2B57g1X%2FO6loulVzBUlrCVz6qfiBVPdb3vvOx45fUYrVdS3P61kE5kCJAQTo%2B2IG17Oz%2BmBnb2c4rB81SJrA%3D%3D" for ::1 at 2016-05-16 16:42:45 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"Osn+57g1X/O6loulVzBUlrCVz6qfiBVPdb3vvOx45fUYrVdS3P61kE5kCJAQTo+2IG17Oz+mBnb2c4rB81SJrA=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (12.4ms) Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:42:47 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"cP8QjpuxxrheOM3pP1EoMjgHbJeKsiiYGM0wvMHQnAtSm7k7/3os26rKTtx4L/MSqP/YBiqcO6GbA1XB3vzwUg==", "tag"=>{"name"=>"child 2", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child 2' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child 2"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 19:42:47.186438"], ["updated_at", "2016-05-16 19:42:47.186438"]]  (100.7ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 31]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.4ms) Completed 200 OK in 124ms (Views: 17.6ms | ActiveRecord: 101.4ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=Osn%2B57g1X%2FO6loulVzBUlrCVz6qfiBVPdb3vvOx45fUYrVdS3P61kE5kCJAQTo%2B2IG17Oz%2BmBnb2c4rB81SJrA%3D%3D" for ::1 at 2016-05-16 16:42:49 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"Osn+57g1X/O6loulVzBUlrCVz6qfiBVPdb3vvOx45fUYrVdS3P61kE5kCJAQTo+2IG17Oz+mBnb2c4rB81SJrA=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.8ms) Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:42:52 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"OGQkgfn+uSSsI6YSxOxaTMIT1ZrEqenI8grn4V51qWEaAI00nTVTR1jRJSeDkoFsUuthC2SH+vFxxIKcQVnFOA==", "tag"=>{"name"=>"child 3", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child 3' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child 3"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 19:42:52.355282"], ["updated_at", "2016-05-16 19:42:52.355282"]]  (72.0ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 32]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.0ms) Completed 200 OK in 96ms (Views: 19.2ms | ActiveRecord: 72.7ms) Started DELETE "/pulitzer/tags/32" for ::1 at 2016-05-16 16:42:55 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"Osn+57g1X/O6loulVzBUlrCVz6qfiBVPdb3vvOx45fUYrVdS3P61kE5kCJAQTo+2IG17Oz+mBnb2c4rB81SJrA==", "id"=>"32"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 32]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 32], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 32]]  (41.0ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 44ms (Views: 0.3ms | ActiveRecord: 41.4ms) Started DELETE "/pulitzer/tags/31" for ::1 at 2016-05-16 16:42:57 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"Osn+57g1X/O6loulVzBUlrCVz6qfiBVPdb3vvOx45fUYrVdS3P61kE5kCJAQTo+2IG17Oz+mBnb2c4rB81SJrA==", "id"=>"31"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 31]]  (0.2ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 31], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 31]]  (47.0ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 52ms (Views: 0.9ms | ActiveRecord: 47.6ms) Started DELETE "/pulitzer/tags/30" for ::1 at 2016-05-16 16:42:58 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"Osn+57g1X/O6loulVzBUlrCVz6qfiBVPdb3vvOx45fUYrVdS3P61kE5kCJAQTo+2IG17Oz+mBnb2c4rB81SJrA==", "id"=>"30"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 30]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 30], ["label_type", "Pulitzer::Tag"]] SQL (0.3ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 30]]  (42.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 47ms (Views: 0.5ms | ActiveRecord: 43.5ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:44:27 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (13.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (19.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (34.2ms) Completed 200 OK in 150ms (Views: 134.6ms | ActiveRecord: 0.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:44:27 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:44:32 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"lX6Bngbn+vgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm/rTvFhSLlUqW39ewwCS8vsEk00bUusCPA=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (25.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (41.6ms) Completed 200 OK in 47ms (Views: 45.4ms | ActiveRecord: 0.2ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 16:44:37 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"b5HkMrbU6xxJ/IN9aMmoy0IQeDyunpLE5OEw9WbN6B5N9U2H0h8Bf70OAEgvt3Pr0ujMrQ6wgf1nL1WIeeGERw==", "tag"=>{"name"=>"child 1", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.3ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child 1' LIMIT 1 SQL (0.5ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child 1"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 19:44:37.610562"], ["updated_at", "2016-05-16 19:44:37.610562"]]  (83.3ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.1ms) Completed 200 OK in 114ms (Views: 11.8ms | ActiveRecord: 84.4ms) Started GET "/pulitzer/tags/33/edit?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:44:55 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"lX6Bngbn+vgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm/rTvFhSLlUqW39ewwCS8vsEk00bUusCPA==", "id"=>"33"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (14.5ms) Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags/33?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:44:56 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags/33?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:44:57 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/33?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:45:19 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/33?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:45:21 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/33?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:45:22 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/33?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:45:22 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/33?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:45:23 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/1/edit?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:45:27 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"lX6Bngbn+vgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm/rTvFhSLlUqW39ewwCS8vsEk00bUusCPA==", "id"=>"1"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (13.1ms) Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags/1?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:45:27 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/1?authenticity_token=lX6Bngbn%2BvgOIT9tFVCOCsuH6lKgvOHCh10oZk3HbmW3GigrYiwQm%2FrTvFhSLlUqW39ewwCS8vsEk00bUusCPA%3D%3D" for ::1 at 2016-05-16 16:45:28 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.3ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:45:30 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (10.7ms) Completed 200 OK in 64ms (Views: 63.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:45:30 -0300 Started GET "/pulitzer/tags/1/edit?authenticity_token=SvvDEsxpWjXRQHowKNl0KSSMtpj8%2BNUD1NMAWFRyBdJon2qnqKKwViWy%2BQVvp68JtHQCCVzWxjpXHWUlS15piw%3D%3D" for ::1 at 2016-05-16 16:45:32 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"SvvDEsxpWjXRQHowKNl0KSSMtpj8+NUD1NMAWFRyBdJon2qnqKKwViWy+QVvp68JtHQCCVzWxjpXHWUlS15piw==", "id"=>"1"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (12.5ms) Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/1?authenticity_token=SvvDEsxpWjXRQHowKNl0KSSMtpj8%2BNUD1NMAWFRyBdJon2qnqKKwViWy%2BQVvp68JtHQCCVzWxjpXHWUlS15piw%3D%3D" for ::1 at 2016-05-16 16:45:33 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/1?authenticity_token=SvvDEsxpWjXRQHowKNl0KSSMtpj8%2BNUD1NMAWFRyBdJon2qnqKKwViWy%2BQVvp68JtHQCCVzWxjpXHWUlS15piw%3D%3D" for ::1 at 2016-05-16 16:45:33 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags/1?authenticity_token=SvvDEsxpWjXRQHowKNl0KSSMtpj8%2BNUD1NMAWFRyBdJon2qnqKKwViWy%2BQVvp68JtHQCCVzWxjpXHWUlS15piw%3D%3D" for ::1 at 2016-05-16 16:45:33 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Pulitzer::TagsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:46:34 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.8ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:46:41 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (15.7ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (21.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (36.0ms) Completed 200 OK in 152ms (Views: 140.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:46:41 -0300 Started GET "/pulitzer/tags/1/edit?authenticity_token=p5dX44S%2FQAWbFfMkerJBVKkvLM7Dr4AdH1gc4xDJkH6F8%2F5W4HSqZm%2FncBE9zJp0OdeYX2OBkySclnmeD%2BX8Jw%3D%3D" for ::1 at 2016-05-16 16:46:43 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"p5dX44S/QAWbFfMkerJBVKkvLM7Dr4AdH1gc4xDJkH6F8/5W4HSqZm/ncBE9zJp0OdeYX2OBkySclnmeD+X8Jw==", "id"=>"1"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (18.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (28.6ms) Completed 200 OK in 35ms (Views: 32.7ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags/1?authenticity_token=p5dX44S%2FQAWbFfMkerJBVKkvLM7Dr4AdH1gc4xDJkH6F8%2F5W4HSqZm%2FncBE9zJp0OdeYX2OBkySclnmeD%2BX8Jw%3D%3D" for ::1 at 2016-05-16 16:46:44 -0300 Processing by Pulitzer::TagsController#show as */* Parameters: {"authenticity_token"=>"p5dX44S/QAWbFfMkerJBVKkvLM7Dr4AdH1gc4xDJkH6F8/5W4HSqZm/ncBE9zJp0OdeYX2OBkySclnmeD+X8Jw==", "id"=>"1"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (19.6ms) Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:46:57 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (16.9ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (21.0ms) Completed 200 OK in 89ms (Views: 86.8ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:46:57 -0300 Started GET "/pulitzer/tags/33/edit?authenticity_token=iah4HtoArKwQVFKecY4ZB4iYQ6%2Bcds0Ea9n4jo8%2BCcqrzNGrvstGz%2BSm0as28MInGGD3PjxY3j3oF53zkBJlkw%3D%3D" for ::1 at 2016-05-16 16:46:58 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"iah4HtoArKwQVFKecY4ZB4iYQ6+cds0Ea9n4jo8+CcqrzNGrvstGz+Sm0as28MInGGD3PjxY3j3oF53zkBJlkw==", "id"=>"33"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (8.9ms) Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/33?authenticity_token=iah4HtoArKwQVFKecY4ZB4iYQ6%2Bcds0Ea9n4jo8%2BCcqrzNGrvstGz%2BSm0as28MInGGD3PjxY3j3oF53zkBJlkw%3D%3D" for ::1 at 2016-05-16 16:46:59 -0300 Processing by Pulitzer::TagsController#show as */* Parameters: {"authenticity_token"=>"iah4HtoArKwQVFKecY4ZB4iYQ6+cds0Ea9n4jo8+CcqrzNGrvstGz+Sm0as28MInGGD3PjxY3j3oF53zkBJlkw==", "id"=>"33"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 33]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.6ms) Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.3ms) Started GET "/pulitzer/tags/25/edit?authenticity_token=iah4HtoArKwQVFKecY4ZB4iYQ6%2Bcds0Ea9n4jo8%2BCcqrzNGrvstGz%2BSm0as28MInGGD3PjxY3j3oF53zkBJlkw%3D%3D" for ::1 at 2016-05-16 16:47:00 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"iah4HtoArKwQVFKecY4ZB4iYQ6+cds0Ea9n4jo8+CcqrzNGrvstGz+Sm0as28MInGGD3PjxY3j3oF53zkBJlkw==", "id"=>"25"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (9.0ms) Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/25?authenticity_token=iah4HtoArKwQVFKecY4ZB4iYQ6%2Bcds0Ea9n4jo8%2BCcqrzNGrvstGz%2BSm0as28MInGGD3PjxY3j3oF53zkBJlkw%3D%3D" for ::1 at 2016-05-16 16:47:00 -0300 Processing by Pulitzer::TagsController#show as */* Parameters: {"authenticity_token"=>"iah4HtoArKwQVFKecY4ZB4iYQ6+cds0Ea9n4jo8+CcqrzNGrvstGz+Sm0as28MInGGD3PjxY3j3oF53zkBJlkw==", "id"=>"25"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 25]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.2ms) Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:54:51 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (20.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (29.8ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (45.4ms) Completed 200 OK in 164ms (Views: 150.6ms | ActiveRecord: 1.4ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:54:51 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=false&authenticity_token=gxmtLiUmZV68t14s58rcz502mgUS3MmzG%2BgibYE%2FlOehfQSbQe2PPUhF3RmgtAfvDc4ulLLy2oqYJkcQnhP4vg%3D%3D" for ::1 at 2016-05-16 16:54:55 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"false"}, "authenticity_token"=>"gxmtLiUmZV68t14s58rcz502mgUS3MmzG+gibYE/lOehfQSbQe2PPUhF3RmgtAfvDc4ulLLy2oqYJkcQnhP4vg=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (24.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (43.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_flat.html.erb (47.6ms) Completed 500 Internal Server Error in 55ms ActionView::Template::Error (undefined local variable or method `new_div_container' for #<#:0x0056044975a1b8>): 2: <%= render partial: 'form_fields', locals: { f: f } %> 3: <%= f.submit "Create" %> 4: <%= link_to('Cancel', '#', :class => 'button', 5: data: { emptier: true, target: new_div_container } ) %> 6: <% end %> 7: <%= render 'pulitzer/shared/error_messages', object: tag %> /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:5:in `block in __home_darkside_work_pulitzer_app_views_pulitzer_tags__new_html_erb__643848730347507821_47288206610040' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:1:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__new_html_erb__643848730347507821_47288206610040' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_flat.html.erb:3:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__new_flat_html_erb__1638202397087899773_47288206099180' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:13:in `new' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (7.3ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:55:19 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.0ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (17.0ms) Completed 200 OK in 68ms (Views: 66.3ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:55:19 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=pJNAzXi0q3jOpf8oWecN%2BuL%2FWnGO0D06tCn7vfyfu1mG9%2Bl4HH9BGzpXfB0emdbacgfu4C7%2BLgM3557A47PXAA%3D%3D" for ::1 at 2016-05-16 16:55:21 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"pJNAzXi0q3jOpf8oWecN+uL/WnGO0D06tCn7vfyfu1mG9+l4HH9BGzpXfB0emdbacgfu4C7+LgM3557A47PXAA=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (12.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (17.2ms) Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:55:31 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.3ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (18.6ms) Completed 200 OK in 86ms (Views: 83.8ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:55:31 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=xcNitE%2FyaRjjqZkTq9WVpFVsIea8NspyurcLCBwuB7vnp8sBKzmDexdbGibsq06ExZSVdxwY2Us5eW51AwJr4g%3D%3D" for ::1 at 2016-05-16 16:55:35 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"xcNitE/yaRjjqZkTq9WVpFVsIea8NspyurcLCBwuB7vnp8sBKzmDexdbGibsq06ExZSVdxwY2Us5eW51AwJr4g=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (10.6ms) Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:56:08 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.5ms) Completed 200 OK in 68ms (Views: 66.9ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:56:08 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=oCszI7cRHD%2FFQwlVVR21OOFRrhcSNBl0tX2C7s607XCCT5qW09r2XDGximASY24YcakahrIaCk02s%2BeT0ZiBKQ%3D%3D" for ::1 at 2016-05-16 16:56:14 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"oCszI7cRHD/FQwlVVR21OOFRrhcSNBl0tX2C7s607XCCT5qW09r2XDGximASY24YcakahrIaCk02s+eT0ZiBKQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (10.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (14.2ms) Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:56:41 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (14.9ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (20.3ms) Completed 200 OK in 87ms (Views: 85.1ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:56:42 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=QBolJZHL4Sxk%2Bty6Ra6Tspx3RrgVMUuVtM04Z%2B%2FJYCpifoyQ9QALT5AIX48C0EiSDI%2FyKbUfWKw3A10a8OUMcw%3D%3D" for ::1 at 2016-05-16 16:56:43 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"QBolJZHL4Sxk+ty6Ra6Tspx3RrgVMUuVtM04Z+/JYCpifoyQ9QALT5AIX48C0EiSDI/yKbUfWKw3A10a8OUMcw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (10.9ms) Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 16:59:12 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (16.4ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (22.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (39.0ms) Completed 200 OK in 164ms (Views: 148.9ms | ActiveRecord: 1.1ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 16:59:12 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:00:48 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:00:55 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (15.3ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (20.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (34.7ms) Completed 200 OK in 152ms (Views: 140.6ms | ActiveRecord: 0.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:00:55 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=tlAjfsEyNDSf4Ge1TG7CXL9d8ICOxRTjCVaG1%2BxRDAKUNIrLpfneV2sS5IALEBl8L6VEES7rB9qKmOOq831gWw%3D%3D" for ::1 at 2016-05-16 17:00:57 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"tlAjfsEyNDSf4Ge1TG7CXL9d8ICOxRTjCVaG1+xRDAKUNIrLpfneV2sS5IALEBl8L6VEES7rB9qKmOOq831gWw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (13.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (28.0ms) Completed 200 OK in 33ms (Views: 31.8ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:01:01 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"2X5AMQAXYP+H7LG29STAkh4nOFTpJTAEIeVRKDvuDlP7GumEZNyKnHMeMoOyWhuyjt+MxUkLIz2iKzRVJMJiCg==", "tag"=>{"name"=>"child 2", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child 2' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "child 2"], ["hierarchical", "t"], ["created_at", "2016-05-16 20:01:01.208702"], ["updated_at", "2016-05-16 20:01:01.208702"]]  (121.9ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 34]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.1ms) Completed 200 OK in 140ms (Views: 10.2ms | ActiveRecord: 122.6ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:01:02 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 34]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (18.7ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (22.8ms) Completed 200 OK in 89ms (Views: 87.0ms | ActiveRecord: 1.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:01:03 -0300 Started DELETE "/pulitzer/tags/34" for ::1 at 2016-05-16 17:01:07 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"R7X9s4o5F0YfL7cZwr7f/vBObGZpvweNEk1Zy8lsXxFl0VQG7vL9JevdNCyFwATeYLbY98mRFLSRgzy21kAzSA==", "id"=>"34"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 34]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 34], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 34]]  (41.2ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 51ms (Views: 1.5ms | ActiveRecord: 42.1ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=R7X9s4o5F0YfL7cZwr7f%2FvBObGZpvweNEk1Zy8lsXxFl0VQG7vL9JevdNCyFwATeYLbY98mRFLSRgzy21kAzSA%3D%3D" for ::1 at 2016-05-16 17:01:08 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"R7X9s4o5F0YfL7cZwr7f/vBObGZpvweNEk1Zy8lsXxFl0VQG7vL9JevdNCyFwATeYLbY98mRFLSRgzy21kAzSA=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (10.6ms) Completed 200 OK in 17ms (Views: 13.5ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:01:09 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"qVMa52bDmjLDEKh6HLDS4qQKfiLx4a+7Hj5HJ0PzG5+LN7NSAghwUTfiK09bzgnCNPLKs1HPvIKd8CJaXN93xg==", "tag"=>{"name"=>"child 2", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child 2' LIMIT 1 SQL (18.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child 2"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 20:01:09.815990"], ["updated_at", "2016-05-16 20:01:09.815990"]]  (80.2ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 35]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.3ms) Completed 200 OK in 123ms (Views: 20.7ms | ActiveRecord: 98.7ms) Started DELETE "/pulitzer/tags/35" for ::1 at 2016-05-16 17:01:14 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"R7X9s4o5F0YfL7cZwr7f/vBObGZpvweNEk1Zy8lsXxFl0VQG7vL9JevdNCyFwATeYLbY98mRFLSRgzy21kAzSA==", "id"=>"35"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 35]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 35], ["label_type", "Pulitzer::Tag"]] SQL (0.1ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 35]]  (45.2ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 48ms (Views: 0.4ms | ActiveRecord: 45.6ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:01:47 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.6ms) Completed 200 OK in 60ms (Views: 58.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:01:47 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:04:10 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.9ms) Completed 200 OK in 59ms (Views: 57.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:04:10 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=1vNlYms1meOKmZmtv%2FGxTgAHytMCtdAmREb2pwbLoMf0l8zXD%2F5zgH5rGpj4j2pukP9%2BQqKbwx%2FHiJPaGefMng%3D%3D" for ::1 at 2016-05-16 17:04:12 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"1vNlYms1meOKmZmtv/GxTgAHytMCtdAmREb2pwbLoMf0l8zXD/5zgH5rGpj4j2pukP9+QqKbwx/HiJPaGefMng=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (12.4ms) Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:04:13 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"6TYnAZrjivaOPwg6neWNFY6uGcGv0LWxavoQ2ioW/2vLUo60/ihglXrNiw/am1Y1HlatUA/+pojpNHWnNTqTMg==", "tag"=>{"name"=>"child 2", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child 2' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child 2"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 20:04:13.942239"], ["updated_at", "2016-05-16 20:04:13.942239"]]  (102.2ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.2ms) Completed 200 OK in 121ms (Views: 14.9ms | ActiveRecord: 102.6ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:05:36 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:05:43 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (19.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (25.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (38.7ms) Completed 200 OK in 157ms (Views: 143.6ms | ActiveRecord: 1.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:05:44 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:07:34 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 29]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (18.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (21.4ms) Completed 200 OK in 86ms (Views: 84.8ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:07:34 -0300 Started DELETE "/pulitzer/tags/29" for ::1 at 2016-05-16 17:07:41 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"KPRRwKhYRiiLT3/PritxBYnFRuLEKDUlOm2cCQCW/qsKkPh1zJOsS3+9/PrpVaolGT3yc2QGJhy5o/l0H7qS8g==", "id"=>"29"} Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 29]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 29], ["label_type", "Pulitzer::Tag"]] SQL (0.4ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 29]]  (48.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 60ms (Views: 1.8ms | ActiveRecord: 50.1ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:09:58 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (13.8ms) Completed 200 OK in 70ms (Views: 68.8ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:09:59 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=L9srqaFA2iGWQqJxTZD3drmYLu8%2BBMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg%3D%3D" for ::1 at 2016-05-16 17:10:08 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (12.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (20.8ms) Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:10:10 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"sz4o0LmdVuAC17Ih4WJIaob/2yv8PeF923eE9U2AHUuRWoFl3Va8g/YlMRSmHJNKFgdvulwT8kRYueGIUqxxEg==", "tag"=>{"name"=>"root", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'root' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "root"], ["hierarchical", "t"], ["created_at", "2016-05-16 20:10:10.680981"], ["updated_at", "2016-05-16 20:10:10.680981"]]  (98.3ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 37]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.5ms) Completed 200 OK in 140ms (Views: 15.0ms | ActiveRecord: 99.1ms) Started DELETE "/pulitzer/tags/37" for ::1 at 2016-05-16 17:10:14 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg==", "id"=>"37"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 37]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 37], ["label_type", "Pulitzer::Tag"]] SQL (0.1ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 37]]  (42.5ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 46ms (Views: 0.4ms | ActiveRecord: 42.9ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=L9srqaFA2iGWQqJxTZD3drmYLu8%2BBMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg%3D%3D" for ::1 at 2016-05-16 17:10:15 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (11.9ms) Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:10:18 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"B/xLkoAx3+4yaGALJHLTdItTKxh0AvO7J9nb0o+UGwglmOIn5Po1jcaa4z5jDAhUG6ufidQs4IKkF76vkLh3UQ==", "tag"=>{"name"=>"child 3", "hierarchical"=>"true", "parent_id"=>"1"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'child 3' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "child 3"], ["hierarchical", "t"], ["parent_id", 1], ["created_at", "2016-05-16 20:10:18.091792"], ["updated_at", "2016-05-16 20:10:18.091792"]]  (155.2ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.4ms) Completed 200 OK in 172ms (Views: 13.7ms | ActiveRecord: 155.7ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=38&authenticity_token=L9srqaFA2iGWQqJxTZD3drmYLu8%2BBMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg%3D%3D" for ::1 at 2016-05-16 17:10:22 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"38"}, "authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (8.2ms) Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:10:25 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"oyXi23dO3P9V9v3Km2Qeh2LrQf+aSuannbm+G4Id/6OBQUtuE4U2nKEEfv/cGsWn8hP1bjpk9Z4ed9tmnTGT+g==", "tag"=>{"name"=>"grandchild 1", "hierarchical"=>"true", "parent_id"=>"38"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'grandchild 1' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "grandchild 1"], ["hierarchical", "t"], ["parent_id", 38], ["created_at", "2016-05-16 20:10:25.883449"], ["updated_at", "2016-05-16 20:10:25.883449"]]  (69.9ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 39]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.0ms) Completed 200 OK in 86ms (Views: 11.5ms | ActiveRecord: 70.4ms) Started DELETE "/pulitzer/tags/39" for ::1 at 2016-05-16 17:10:28 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg==", "id"=>"39"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 39]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 39], ["label_type", "Pulitzer::Tag"]] SQL (0.1ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 39]]  (44.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 48ms (Views: 0.5ms | ActiveRecord: 45.3ms) Started GET "/pulitzer/tags/25/edit?authenticity_token=L9srqaFA2iGWQqJxTZD3drmYLu8%2BBMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg%3D%3D" for ::1 at 2016-05-16 17:10:43 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg==", "id"=>"25"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (10.1ms) Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/25?authenticity_token=L9srqaFA2iGWQqJxTZD3drmYLu8%2BBMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg%3D%3D" for ::1 at 2016-05-16 17:10:44 -0300 Processing by Pulitzer::TagsController#show as */* Parameters: {"authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg==", "id"=>"25"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 25]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.3ms) Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags/25/edit?authenticity_token=L9srqaFA2iGWQqJxTZD3drmYLu8%2BBMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg%3D%3D" for ::1 at 2016-05-16 17:10:45 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg==", "id"=>"25"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (9.7ms) Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/25?authenticity_token=L9srqaFA2iGWQqJxTZD3drmYLu8%2BBMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg%3D%3D" for ::1 at 2016-05-16 17:10:48 -0300 Processing by Pulitzer::TagsController#show as */* Parameters: {"authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg==", "id"=>"25"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 25]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.7ms) Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags/25/edit?authenticity_token=L9srqaFA2iGWQqJxTZD3drmYLu8%2BBMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg%3D%3D" for ::1 at 2016-05-16 17:10:50 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg==", "id"=>"25"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (9.8ms) Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/25?authenticity_token=L9srqaFA2iGWQqJxTZD3drmYLu8%2BBMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg%3D%3D" for ::1 at 2016-05-16 17:10:50 -0300 Processing by Pulitzer::TagsController#show as */* Parameters: {"authenticity_token"=>"L9srqaFA2iGWQqJxTZD3drmYLu8+BMMg0x4rkyt1FAMNv4IcxYswQmKwIUQK7ixWKWCafp4q0BlQ0E7uNFl4Wg==", "id"=>"25"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 25]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.7ms) Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:14:28 -0300 Processing by Pulitzer::TagsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (A copy of ApplicationController has been removed from the module tree but is still active!): app/controllers/application_controller.rb:9:in `setup_user' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.7ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:14:35 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (20.4ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (23.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (39.3ms) Completed 200 OK in 184ms (Views: 169.6ms | ActiveRecord: 1.1ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:14:35 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.2ms) Completed 200 OK in 91ms (Views: 89.8ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:14:35 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:14:35 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:14:35 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:14:35 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:14:35 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:14:35 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:14:35 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:14:35 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:14:35 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:14:35 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:14:35 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.3ms) Completed 200 OK in 63ms (Views: 61.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:14:36 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.1ms) Completed 200 OK in 56ms (Views: 55.2ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:14:36 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.8ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (11.8ms) Completed 200 OK in 58ms (Views: 57.0ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:14:36 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:14:36 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.7ms) Completed 200 OK in 59ms (Views: 57.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:14:37 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (12.1ms) Completed 200 OK in 60ms (Views: 58.5ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:14:37 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=Dbx0lQBazf1zlyj0IbDX9%2F0T3DCEOhq6KVbPo4dE4rEv2N0gZJEnnodlq8FmzgzXbetooSQUCYOqmKremGiO6A%3D%3D" for ::1 at 2016-05-16 17:14:41 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"Dbx0lQBazf1zlyj0IbDX9/0T3DCEOhq6KVbPo4dE4rEv2N0gZJEnnodlq8FmzgzXbetooSQUCYOqmKremGiO6A=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (0.4ms) Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:14:55 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.5ms) Completed 200 OK in 63ms (Views: 61.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:14:55 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=hXjb64p9umqt6wSb%2F4uwyCUcoXektFAKuIP958zXPLunHHJe7rZQCVkZh6649WvoteQV5gSaQzM7TZia0%2FtQ4g%3D%3D" for ::1 at 2016-05-16 17:14:56 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"hXjb64p9umqt6wSb/4uwyCUcoXektFAKuIP958zXPLunHHJe7rZQCVkZh6649WvoteQV5gSaQzM7TZia0/tQ4g=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (10.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (18.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (21.7ms) Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=1&authenticity_token=hXjb64p9umqt6wSb%2F4uwyCUcoXektFAKuIP958zXPLunHHJe7rZQCVkZh6649WvoteQV5gSaQzM7TZia0%2FtQ4g%3D%3D" for ::1 at 2016-05-16 17:15:13 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"1"}, "authenticity_token"=>"hXjb64p9umqt6wSb/4uwyCUcoXektFAKuIP958zXPLunHHJe7rZQCVkZh6649WvoteQV5gSaQzM7TZia0/tQ4g=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (18.7ms) Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:17:20 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.0ms) Completed 200 OK in 61ms (Views: 60.1ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:17:20 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=false&authenticity_token=zZK8lI0KcfpWsePaoC0vg6rIj6ZKpRRg9qwibkcz9qrv9hUh6cGbmaJDYO%2FnU%2FSjOjA7N%2BqLB1l1YkcTWB%2Ba8w%3D%3D" for ::1 at 2016-05-16 17:17:22 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"false"}, "authenticity_token"=>"zZK8lI0KcfpWsePaoC0vg6rIj6ZKpRRg9qwibkcz9qrv9hUh6cGbmaJDYO/nU/SjOjA7N+qLB1l1YkcTWB+a8w=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_flat.html.erb (11.2ms) Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:17:26 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"YB63B6IjkHTVPeueoiG3dYQMFAA8E7goodA4UAXpg2BCeh6yxuh6FyHPaKvlX2xVFPSgkZw9qxEiHl0tGsXvOQ==", "tag"=>{"name"=>"my flat tag", "hierarchical"=>"false", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'my flat tag' LIMIT 1 SQL (0.4ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "my flat tag"], ["created_at", "2016-05-16 20:17:26.531006"], ["updated_at", "2016-05-16 20:17:26.531006"]]  (58.2ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 40]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.9ms) Completed 200 OK in 92ms (Views: 11.0ms | ActiveRecord: 59.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=false&authenticity_token=zZK8lI0KcfpWsePaoC0vg6rIj6ZKpRRg9qwibkcz9qrv9hUh6cGbmaJDYO%2FnU%2FSjOjA7N%2BqLB1l1YkcTWB%2Ba8w%3D%3D" for ::1 at 2016-05-16 17:17:28 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"false"}, "authenticity_token"=>"zZK8lI0KcfpWsePaoC0vg6rIj6ZKpRRg9qwibkcz9qrv9hUh6cGbmaJDYO/nU/SjOjA7N+qLB1l1YkcTWB+a8w=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_flat.html.erb (13.2ms) Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:17:30 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"c1INPjyCiIkjWpPfTaLh/zzFzITe5cTqAM7zl4fh8SpRNqSLWEli6teoEOoK3DrfrD14FX7L19ODAJbqmM2dcw==", "tag"=>{"name"=>"another flat tag", "hierarchical"=>"false", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'another flat tag' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "another flat tag"], ["created_at", "2016-05-16 20:17:30.425180"], ["updated_at", "2016-05-16 20:17:30.425180"]]  (78.7ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 41]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.8ms) Completed 200 OK in 95ms (Views: 12.9ms | ActiveRecord: 79.1ms) Started DELETE "/pulitzer/tags/40" for ::1 at 2016-05-16 17:17:36 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"zZK8lI0KcfpWsePaoC0vg6rIj6ZKpRRg9qwibkcz9qrv9hUh6cGbmaJDYO/nU/SjOjA7N+qLB1l1YkcTWB+a8w==", "id"=>"40"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 40]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 40], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 40]]  (39.0ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 46ms (Views: 1.2ms | ActiveRecord: 39.7ms) Started GET "/pulitzer/tags/41/edit?authenticity_token=zZK8lI0KcfpWsePaoC0vg6rIj6ZKpRRg9qwibkcz9qrv9hUh6cGbmaJDYO%2FnU%2FSjOjA7N%2BqLB1l1YkcTWB%2Ba8w%3D%3D" for ::1 at 2016-05-16 17:17:37 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"zZK8lI0KcfpWsePaoC0vg6rIj6ZKpRRg9qwibkcz9qrv9hUh6cGbmaJDYO/nU/SjOjA7N+qLB1l1YkcTWB+a8w==", "id"=>"41"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 41]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (7.7ms) Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.1ms) Started PATCH "/pulitzer/tags/41" for ::1 at 2016-05-16 17:17:40 -0300 Processing by Pulitzer::TagsController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"J3I/tBcqSubMUHyr5SgS8I3ZsOUcLicTre2myH47jcgFFpYBc+GghTii/56iVsnQHSEEdLwANCouI8O1YRfhkQ==", "tag"=>{"name"=>"another flat tag 2", "hierarchical"=>"f", "parent_id"=>""}, "id"=>"41"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 41]]  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE ("pulitzer_tags"."name" = 'another flat tag 2' AND "pulitzer_tags"."id" != 41) LIMIT 1 SQL (0.3ms) UPDATE "pulitzer_tags" SET "name" = ?, "updated_at" = ? WHERE "pulitzer_tags"."id" = ? [["name", "another flat tag 2"], ["updated_at", "2016-05-16 20:17:40.630001"], ["id", 41]]  (78.9ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 41]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.3ms) Completed 200 OK in 92ms (Views: 7.3ms | ActiveRecord: 79.6ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=false&authenticity_token=zZK8lI0KcfpWsePaoC0vg6rIj6ZKpRRg9qwibkcz9qrv9hUh6cGbmaJDYO%2FnU%2FSjOjA7N%2BqLB1l1YkcTWB%2Ba8w%3D%3D" for ::1 at 2016-05-16 17:17:42 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"false"}, "authenticity_token"=>"zZK8lI0KcfpWsePaoC0vg6rIj6ZKpRRg9qwibkcz9qrv9hUh6cGbmaJDYO/nU/SjOjA7N+qLB1l1YkcTWB+a8w=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_flat.html.erb (10.9ms) Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:17:44 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"B+3ekT95ROAtPeC/E5wX103I1k24l7PpziSEoII6vXsliXckW7Kug9nPY4pU4sz33TBi3Bi5oNBN6uHdnRbRIg==", "tag"=>{"name"=>"it vorks", "hierarchical"=>"false", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'it vorks' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "it vorks"], ["created_at", "2016-05-16 20:17:44.998971"], ["updated_at", "2016-05-16 20:17:44.998971"]]  (78.3ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 42]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.4ms) Completed 200 OK in 120ms (Views: 17.3ms | ActiveRecord: 78.9ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:18:47 -0300 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (26.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (32.2ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 41]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 42]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (51.8ms) Completed 200 OK in 176ms (Views: 161.5ms | ActiveRecord: 1.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:18:47 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:19:27 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (15.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (18.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (20.9ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 41]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 42]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (27.8ms) Completed 200 OK in 77ms (Views: 75.5ms | ActiveRecord: 0.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:19:27 -0300 Started GET "/pulitzer/tags/1/edit?authenticity_token=rihAw9e1SehUyRNmXB%2F3N1nj%2BckKfANpJsSo5HQEgwKMTOl2s36ji6A7kFMbYSwXyRtNWKpSEFClCs2ZayjvWw%3D%3D" for ::1 at 2016-05-16 17:19:34 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"rihAw9e1SehUyRNmXB/3N1nj+ckKfANpJsSo5HQEgwKMTOl2s36ji6A7kFMbYSwXyRtNWKpSEFClCs2ZayjvWw==", "id"=>"1"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (11.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (19.5ms) Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags/1?authenticity_token=rihAw9e1SehUyRNmXB%2F3N1nj%2BckKfANpJsSo5HQEgwKMTOl2s36ji6A7kFMbYSwXyRtNWKpSEFClCs2ZayjvWw%3D%3D" for ::1 at 2016-05-16 17:19:35 -0300 Processing by Pulitzer::TagsController#show as */* Parameters: {"authenticity_token"=>"rihAw9e1SehUyRNmXB/3N1nj+ckKfANpJsSo5HQEgwKMTOl2s36ji6A7kFMbYSwXyRtNWKpSEFClCs2ZayjvWw==", "id"=>"1"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (24.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (30.0ms) Completed 200 OK in 34ms (Views: 33.2ms | ActiveRecord: 0.5ms) Started GET "/pulitzer/tags/1/edit?authenticity_token=rihAw9e1SehUyRNmXB%2F3N1nj%2BckKfANpJsSo5HQEgwKMTOl2s36ji6A7kFMbYSwXyRtNWKpSEFClCs2ZayjvWw%3D%3D" for ::1 at 2016-05-16 17:19:38 -0300 Processing by Pulitzer::TagsController#edit as */* Parameters: {"authenticity_token"=>"rihAw9e1SehUyRNmXB/3N1nj+ckKfANpJsSo5HQEgwKMTOl2s36ji6A7kFMbYSwXyRtNWKpSEFClCs2ZayjvWw==", "id"=>"1"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form.html.erb (10.3ms) Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags/1?authenticity_token=rihAw9e1SehUyRNmXB%2F3N1nj%2BckKfANpJsSo5HQEgwKMTOl2s36ji6A7kFMbYSwXyRtNWKpSEFClCs2ZayjvWw%3D%3D" for ::1 at 2016-05-16 17:19:39 -0300 Processing by Pulitzer::TagsController#show as */* Parameters: {"authenticity_token"=>"rihAw9e1SehUyRNmXB/3N1nj+ckKfANpJsSo5HQEgwKMTOl2s36ji6A7kFMbYSwXyRtNWKpSEFClCs2ZayjvWw==", "id"=>"1"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (20.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (24.9ms) Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.5ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=rihAw9e1SehUyRNmXB%2F3N1nj%2BckKfANpJsSo5HQEgwKMTOl2s36ji6A7kFMbYSwXyRtNWKpSEFClCs2ZayjvWw%3D%3D" for ::1 at 2016-05-16 17:19:40 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"rihAw9e1SehUyRNmXB/3N1nj+ckKfANpJsSo5HQEgwKMTOl2s36ji6A7kFMbYSwXyRtNWKpSEFClCs2ZayjvWw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (11.5ms) Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:21:44 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.2ms) Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 41]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 42]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (16.4ms) Completed 200 OK in 65ms (Views: 63.4ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:21:45 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:21:48 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (10.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.6ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 41]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 42]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (22.4ms) Completed 200 OK in 74ms (Views: 72.2ms | ActiveRecord: 1.1ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:21:48 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:22:03 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 41]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 42]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (17.8ms) Completed 200 OK in 67ms (Views: 65.8ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:22:03 -0300 Started GET "/pulitzer/post_types" for ::1 at 2016-05-16 17:22:05 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (2.0ms) Completed 200 OK in 65ms (Views: 60.7ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:22:05 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:22:06 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 25]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 41]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 42]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (17.2ms) Completed 200 OK in 68ms (Views: 66.1ms | ActiveRecord: 0.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:22:06 -0300 Started DELETE "/pulitzer/tags/1" for ::1 at 2016-05-16 17:24:13 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"aKEI1W/JhkGyYjVGhoynRTt9s+JFa/Y9cUZO9r+3W+1KxaFgCwJsIkaQtnPB8nxlq4UHc+VF5QTyiCuLoJs3tA==", "id"=>"1"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 1], ["label_type", "Pulitzer::Tag"]] SQL (0.3ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 1]]  (41.9ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 49ms (Views: 1.1ms | ActiveRecord: 42.7ms) Started DELETE "/pulitzer/tags/25" for ::1 at 2016-05-16 17:24:15 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"aKEI1W/JhkGyYjVGhoynRTt9s+JFa/Y9cUZO9r+3W+1KxaFgCwJsIkaQtnPB8nxlq4UHc+VF5QTyiCuLoJs3tA==", "id"=>"25"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 25]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 25], ["label_type", "Pulitzer::Tag"]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 25]]  (43.0ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 47ms (Views: 0.4ms | ActiveRecord: 43.6ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=aKEI1W%2FJhkGyYjVGhoynRTt9s%2BJFa%2FY9cUZO9r%2B3W%2B1KxaFgCwJsIkaQtnPB8nxlq4UHc%2BVF5QTyiCuLoJs3tA%3D%3D" for ::1 at 2016-05-16 17:24:16 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"aKEI1W/JhkGyYjVGhoynRTt9s+JFa/Y9cUZO9r+3W+1KxaFgCwJsIkaQtnPB8nxlq4UHc+VF5QTyiCuLoJs3tA=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (12.3ms) Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" ORDER BY "pulitzer_tags"."id" DESC LIMIT 1 Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' ORDER BY "pulitzer_tags"."id" DESC LIMIT 1 Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' ORDER BY "pulitzer_tags"."id" DESC LIMIT 1 Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags"  (0.2ms) begin transaction Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 5], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 5]] Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 6], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] SQL (0.4ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 6]] SQL (0.0ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 5]]  (39.1ms) commit transaction  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 6], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 6]] SQL (0.0ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 6]]  (0.1ms) commit transaction  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 8], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 8]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 8]]  (39.2ms) commit transaction  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 33], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 33]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 33]]  (39.2ms) commit transaction  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 36], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 36]] SQL (0.2ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 36]]  (40.7ms) commit transaction  (0.1ms) begin transaction Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 38], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 38]] SQL (0.1ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 38]]  (40.4ms) commit transaction  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 41], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 41]] SQL (0.1ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 41]]  (37.7ms) commit transaction  (0.3ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 42], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 42]] SQL (0.1ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 42]]  (38.6ms) commit transaction Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:25:46 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (10.3ms) Completed 200 OK in 140ms (Views: 125.4ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:25:46 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=496nTp71L2paxemNWg5O4tfm03Rho%2FZw3MOUc%2BS2RSLBug77%2Bj7FCa43argdcJXCRx5n5cGN5UlfDfEO%2B5opew%3D%3D" for ::1 at 2016-05-16 17:25:49 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"496nTp71L2paxemNWg5O4tfm03Rho/Zw3MOUc+S2RSLBug77+j7FCa43argdcJXCRx5n5cGN5UlfDfEO+5opew=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (15.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (26.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (30.0ms) Completed 200 OK in 41ms (Views: 34.3ms | ActiveRecord: 0.2ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:25:52 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kS+LWBlzWHaQXIYbke7hf6XZDfxNH1G3lLPv6ODI7JSzSyLtfbiyFWSuBS7WkDpfNSG5be0xQo4XfYqV/+SAzQ==", "tag"=>{"name"=>"Travel Guide", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Travel Guide' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Travel Guide"], ["hierarchical", "t"], ["created_at", "2016-05-16 20:25:52.224065"], ["updated_at", "2016-05-16 20:25:52.224065"]]  (59.9ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 43]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (14.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (17.9ms) Completed 200 OK in 119ms (Views: 21.7ms | ActiveRecord: 60.7ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=43&authenticity_token=496nTp71L2paxemNWg5O4tfm03Rho%2FZw3MOUc%2BS2RSLBug77%2Bj7FCa43argdcJXCRx5n5cGN5UlfDfEO%2B5opew%3D%3D" for ::1 at 2016-05-16 17:25:53 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"43"}, "authenticity_token"=>"496nTp71L2paxemNWg5O4tfm03Rho/Zw3MOUc+S2RSLBug77+j7FCa43argdcJXCRx5n5cGN5UlfDfEO+5opew=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 43]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (16.1ms) Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.2ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:26:03 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"vRBJfjFBmVF6QOPw4g1GtPGLPtaTz8m1DCBvpm+7/EmfdODLVYpzMo6yYMWlc52UYXOKRzPh2oyP7grbcJeQEA==", "tag"=>{"name"=>"Main Travel Guide", "hierarchical"=>"true", "parent_id"=>"43"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Main Travel Guide' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Main Travel Guide"], ["hierarchical", "t"], ["parent_id", 43], ["created_at", "2016-05-16 20:26:03.355791"], ["updated_at", "2016-05-16 20:26:03.355791"]]  (54.1ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 44]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (7.8ms) Completed 200 OK in 68ms (Views: 11.2ms | ActiveRecord: 54.5ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=43&authenticity_token=496nTp71L2paxemNWg5O4tfm03Rho%2FZw3MOUc%2BS2RSLBug77%2Bj7FCa43argdcJXCRx5n5cGN5UlfDfEO%2B5opew%3D%3D" for ::1 at 2016-05-16 17:26:04 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"43"}, "authenticity_token"=>"496nTp71L2paxemNWg5O4tfm03Rho/Zw3MOUc+S2RSLBug77+j7FCa43argdcJXCRx5n5cGN5UlfDfEO+5opew=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 43]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (10.3ms) Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:26:12 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"77jVQjT2DOxwzuEQt8bnDi/yj5CWHJU/4aPu3lApn6LN3Hz3UD3mj4Q8YiXwuDwuvwo7ATYyhgZibYujTwXz+w==", "tag"=>{"name"=>"Snow Scuplture Competition", "hierarchical"=>"true", "parent_id"=>"43"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Snow Scuplture Competition' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Snow Scuplture Competition"], ["hierarchical", "t"], ["parent_id", 43], ["created_at", "2016-05-16 20:26:12.430959"], ["updated_at", "2016-05-16 20:26:12.430959"]]  (99.4ms) commit transaction Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 45]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (7.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (13.0ms) Completed 200 OK in 125ms (Views: 20.1ms | ActiveRecord: 100.2ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=496nTp71L2paxemNWg5O4tfm03Rho%2FZw3MOUc%2BS2RSLBug77%2Bj7FCa43argdcJXCRx5n5cGN5UlfDfEO%2B5opew%3D%3D" for ::1 at 2016-05-16 17:26:14 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"496nTp71L2paxemNWg5O4tfm03Rho/Zw3MOUc+S2RSLBug77+j7FCa43argdcJXCRx5n5cGN5UlfDfEO+5opew=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (9.8ms) Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=496nTp71L2paxemNWg5O4tfm03Rho%2FZw3MOUc%2BS2RSLBug77%2Bj7FCa43argdcJXCRx5n5cGN5UlfDfEO%2B5opew%3D%3D" for ::1 at 2016-05-16 17:26:23 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"496nTp71L2paxemNWg5O4tfm03Rho/Zw3MOUc+S2RSLBug77+j7FCa43argdcJXCRx5n5cGN5UlfDfEO+5opew=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (10.4ms) Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=496nTp71L2paxemNWg5O4tfm03Rho%2FZw3MOUc%2BS2RSLBug77%2Bj7FCa43argdcJXCRx5n5cGN5UlfDfEO%2B5opew%3D%3D" for ::1 at 2016-05-16 17:26:23 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"496nTp71L2paxemNWg5O4tfm03Rho/Zw3MOUc+S2RSLBug77+j7FCa43argdcJXCRx5n5cGN5UlfDfEO+5opew=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (11.0ms) Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=496nTp71L2paxemNWg5O4tfm03Rho%2FZw3MOUc%2BS2RSLBug77%2Bj7FCa43argdcJXCRx5n5cGN5UlfDfEO%2B5opew%3D%3D" for ::1 at 2016-05-16 17:26:25 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"496nTp71L2paxemNWg5O4tfm03Rho/Zw3MOUc+S2RSLBug77+j7FCa43argdcJXCRx5n5cGN5UlfDfEO+5opew=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (9.8ms) Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:26:30 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZkLhwJwwy8m9+w+dAlnODWk/T6QMzzQ8MUsfd7bwzrREJkh1+PshqkkJjKhFJxUt+cf7NazhJwWyhXoKqdyi7Q==", "tag"=>{"name"=>"Beautiful Homes", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Beautiful Homes' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Beautiful Homes"], ["hierarchical", "t"], ["created_at", "2016-05-16 20:26:30.097333"], ["updated_at", "2016-05-16 20:26:30.097333"]]  (79.1ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 46]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.4ms) Completed 200 OK in 96ms (Views: 12.9ms | ActiveRecord: 79.7ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=46&authenticity_token=496nTp71L2paxemNWg5O4tfm03Rho%2FZw3MOUc%2BS2RSLBug77%2Bj7FCa43argdcJXCRx5n5cGN5UlfDfEO%2B5opew%3D%3D" for ::1 at 2016-05-16 17:26:31 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"46"}, "authenticity_token"=>"496nTp71L2paxemNWg5O4tfm03Rho/Zw3MOUc+S2RSLBug77+j7FCa43argdcJXCRx5n5cGN5UlfDfEO+5opew=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 46]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (11.3ms) Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:26:48 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"fYivQTx45YcvtS4MqEl6beuksdJijjsGSkViqS8oXSRf7Ab0WLMP5NtHrTnvN6FNe1wFQ8KgKD/JiwfUMAQxfQ==", "tag"=>{"name"=>"Mission Canyon", "hierarchical"=>"true", "parent_id"=>"46"}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Mission Canyon' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Mission Canyon"], ["hierarchical", "t"], ["parent_id", 46], ["created_at", "2016-05-16 20:26:48.079752"], ["updated_at", "2016-05-16 20:26:48.079752"]]  (57.0ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 47]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.7ms) Completed 200 OK in 75ms (Views: 13.9ms | ActiveRecord: 57.5ms) Started DELETE "/pulitzer/tags/43" for ::1 at 2016-05-16 17:27:22 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"496nTp71L2paxemNWg5O4tfm03Rho/Zw3MOUc+S2RSLBug77+j7FCa43argdcJXCRx5n5cGN5UlfDfEO+5opew==", "id"=>"43"} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 43]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 43], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 43]] Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 44], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 44]] SQL (0.3ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 44]] Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 45], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 45]] SQL (0.1ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 45]] SQL (0.1ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 43]]  (45.2ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 58ms (Views: 1.1ms | ActiveRecord: 46.5ms) Started DELETE "/pulitzer/tags/46" for ::1 at 2016-05-16 17:27:24 -0300 Processing by Pulitzer::TagsController#destroy as */* Parameters: {"authenticity_token"=>"496nTp71L2paxemNWg5O4tfm03Rho/Zw3MOUc+S2RSLBug77+j7FCa43argdcJXCRx5n5cGN5UlfDfEO+5opew==", "id"=>"46"} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 46]]  (0.1ms) begin transaction Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 46], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 46]] Pulitzer::PostTag Load (0.0ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."label_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["label_id", 47], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 47]] SQL (0.1ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 47]] SQL (0.0ms) DELETE FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? [["id", 46]]  (47.8ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 53ms (Views: 0.5ms | ActiveRecord: 48.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:27:28 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (3.3ms) Completed 200 OK in 63ms (Views: 61.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:27:29 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=ZCGMBjqULeOxpp4btms55GBLWNo4wa5vkUfUnGo4gfhGRSWzXl%2FHgEVUHS7xFeLE8LPsS5jvvVYSibHhdRTtoQ%3D%3D" for ::1 at 2016-05-16 17:27:30 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"ZCGMBjqULeOxpp4btms55GBLWNo4wa5vkUfUnGo4gfhGRSWzXl/HgEVUHS7xFeLE8LPsS5jvvVYSibHhdRTtoQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (10.6ms) Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:27:58 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"fUzPnVIlOLn8bxkNklIC+k8wc9niXZADlA+XYaLapTdfKGYoNu7S2gidmjjVLNna38jHSEJzgzoXwfIcvfbJbg==", "tag"=>{"name"=>"Travellers", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Travellers' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Travellers"], ["hierarchical", "t"], ["created_at", "2016-05-16 20:27:58.771024"], ["updated_at", "2016-05-16 20:27:58.771024"]]  (58.9ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 48]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.8ms) Completed 200 OK in 97ms (Views: 14.2ms | ActiveRecord: 59.4ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=ZCGMBjqULeOxpp4btms55GBLWNo4wa5vkUfUnGo4gfhGRSWzXl%2FHgEVUHS7xFeLE8LPsS5jvvVYSibHhdRTtoQ%3D%3D" for ::1 at 2016-05-16 17:28:00 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"ZCGMBjqULeOxpp4btms55GBLWNo4wa5vkUfUnGo4gfhGRSWzXl/HgEVUHS7xFeLE8LPsS5jvvVYSibHhdRTtoQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (6.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (9.3ms) Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:28:01 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"lz7R3egYgB//7qxo7sbd+GANqPMhbl+dIPwvCoLOSFq1WnhojNNqfAscL12puAbY8PUcYoFATKSjMkp3neIkAw==", "tag"=>{"name"=>"Owners", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Owners' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Owners"], ["hierarchical", "t"], ["created_at", "2016-05-16 20:28:01.995053"], ["updated_at", "2016-05-16 20:28:01.995053"]]  (78.8ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 49]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.7ms) Completed 200 OK in 114ms (Views: 12.4ms | ActiveRecord: 79.3ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=48&authenticity_token=ZCGMBjqULeOxpp4btms55GBLWNo4wa5vkUfUnGo4gfhGRSWzXl%2FHgEVUHS7xFeLE8LPsS5jvvVYSibHhdRTtoQ%3D%3D" for ::1 at 2016-05-16 17:29:43 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"48"}, "authenticity_token"=>"ZCGMBjqULeOxpp4btms55GBLWNo4wa5vkUfUnGo4gfhGRSWzXl/HgEVUHS7xFeLE8LPsS5jvvVYSibHhdRTtoQ=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 48]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (13.9ms) Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:29:52 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"KtTeksNLs8vcdrLqP2BHx3Au71/dH9lNM7SfTCk/Hn4IsHcnp4BZqCiEMd94Hpzn4NZbzn0xynSwevoxNhNyJw==", "tag"=>{"name"=>"Travel Guides", "hierarchical"=>"true", "parent_id"=>"48"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Travel Guides' LIMIT 1 SQL (0.3ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Travel Guides"], ["hierarchical", "t"], ["parent_id", 48], ["created_at", "2016-05-16 20:29:52.707495"], ["updated_at", "2016-05-16 20:29:52.707495"]]  (79.0ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 50]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (9.0ms) Completed 200 OK in 115ms (Views: 12.8ms | ActiveRecord: 79.7ms) Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&tag%5Bparent_id%5D=50&authenticity_token=ZCGMBjqULeOxpp4btms55GBLWNo4wa5vkUfUnGo4gfhGRSWzXl%2FHgEVUHS7xFeLE8LPsS5jvvVYSibHhdRTtoQ%3D%3D" for ::1 at 2016-05-16 17:29:59 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true", "parent_id"=>"50"}, "authenticity_token"=>"ZCGMBjqULeOxpp4btms55GBLWNo4wa5vkUfUnGo4gfhGRSWzXl/HgEVUHS7xFeLE8LPsS5jvvVYSibHhdRTtoQ=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 50]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (7.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (10.2ms) Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.1ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:30:02 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"jCa+ouMd66AxNoEsNlc0Dr9gBDzB2Jppl+Yq9p0kwe+uQhcXh9YBw8XEAhlxKe8uL5iwrWH2iVAUKE+Lggittg==", "tag"=>{"name"=>"Main Travel Guide", "hierarchical"=>"true", "parent_id"=>"50"}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Main Travel Guide' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_tags" ("name", "hierarchical", "parent_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Main Travel Guide"], ["hierarchical", "t"], ["parent_id", 50], ["created_at", "2016-05-16 20:30:02.556956"], ["updated_at", "2016-05-16 20:30:02.556956"]]  (100.5ms) commit transaction Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (8.8ms) Completed 200 OK in 117ms (Views: 12.7ms | ActiveRecord: 101.0ms) Started GET "/pulitzer/post_types" for ::1 at 2016-05-16 17:30:09 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (1.9ms) Completed 200 OK in 50ms (Views: 45.3ms | ActiveRecord: 0.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:30:09 -0300 Started GET "/pulitzer/post_types/new?authenticity_token=tTKVt4usIDldEwgb9%2Fius6ZC4e7JEW0gmJpbqeMdDuyXVjwC72fKWqnhiy6whnWTNrpVf2k%2FfhkbVD7U%2FDFitQ%3D%3D" for ::1 at 2016-05-16 17:30:10 -0300 Processing by Pulitzer::PostTypesController#new as */* Parameters: {"authenticity_token"=>"tTKVt4usIDldEwgb9/ius6ZC4e7JEW0gmJpbqeMdDuyXVjwC72fKWqnhiy6whnWTNrpVf2k/fhkbVD7U/DFitQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_form_fields.html.erb (5.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_new.html.erb (14.3ms) Completed 200 OK in 21ms (Views: 17.6ms | ActiveRecord: 0.2ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:30:34 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 48]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 50]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 49]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.8ms) Completed 200 OK in 66ms (Views: 65.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:30:34 -0300 Started GET "/pulitzer/post_types" for ::1 at 2016-05-16 17:30:38 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (1.3ms) Completed 200 OK in 57ms (Views: 56.5ms | ActiveRecord: 0.2ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:30:38 -0300 Started GET "/pulitzer/post_types/new?authenticity_token=dYpvOdenfJe%2BjAgkU5pFG%2B5p14brL18LHxr3qh1r6WJX7saMs2yW9Ep%2BixEU5J47fpFjF0sBTDKc1JLXAkeFOw%3D%3D" for ::1 at 2016-05-16 17:30:39 -0300 Processing by Pulitzer::PostTypesController#new as */* Parameters: {"authenticity_token"=>"dYpvOdenfJe+jAgkU5pFG+5p14brL18LHxr3qh1r6WJX7saMs2yW9Ep+ixEU5J47fpFjF0sBTDKc1JLXAkeFOw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_form_fields.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_new.html.erb (11.3ms) Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/post_types" for ::1 at 2016-05-16 17:31:32 -0300 Processing by Pulitzer::PostTypesController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"agrIcX0xseSXj0LpEu+Yneb/BnpzJEsLdQUinNBmNF9IbmHEGfpbh2N9wdxVkUO9dgey69MKWDL2y0fhz0pYBg==", "post_type"=>{"name"=>"Main Travel Guide", "plural"=>"0", "kind"=>"template"}}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "pulitzer_post_types" ("name", "plural", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Main Travel Guide"], ["plural", "f"], ["created_at", "2016-05-16 20:31:32.416465"], ["updated_at", "2016-05-16 20:31:32.416465"]]  (59.9ms) commit transaction Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]]  (0.0ms) begin transaction Pulitzer::Post Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_posts" WHERE ("pulitzer_posts"."id" IS NOT NULL) AND "pulitzer_posts"."slug" = ? LIMIT 1 [["slug", "main-travel-guide"]] SQL (0.3ms) INSERT INTO "pulitzer_posts" ("title", "post_type_id", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["title", "Main Travel Guide"], ["post_type_id", 1], ["slug", "main-travel-guide"], ["created_at", "2016-05-16 20:31:32.594626"], ["updated_at", "2016-05-16 20:31:32.594626"]] SQL (0.5ms) INSERT INTO "pulitzer_versions" ("post_id", "created_at", "updated_at") VALUES (?, ?, ?) [["post_id", 1], ["created_at", "2016-05-16 20:31:32.611502"], ["updated_at", "2016-05-16 20:31:32.611502"]]  (40.9ms) commit transaction Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] CACHE (0.0ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (4.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (7.5ms) Completed 200 OK in 258ms (Views: 10.8ms | ActiveRecord: 103.3ms) Started GET "/pulitzer/posts/main-travel-guide/edit" for ::1 at 2016-05-16 17:31:35 -0300 Processing by Pulitzer::PostsController#edit as HTML Parameters: {"id"=>"main-travel-guide"} Pulitzer::Post Load (0.3ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "main-travel-guide"]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Version Load (0.2ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/posts/edit.html.erb within layouts/application (4.7ms) Completed 200 OK in 108ms (Views: 104.7ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:31:35 -0300 Started GET "/pulitzer/versions/1/edit?authenticity_token=VURlKfqg%2BKIt4o5CyRXZu4FUFScemJDn8wCwgLDa60x3IMycnmsSwdkQDXeOawKbEayhtr62g95wztX9r%2FaHFQ%3D%3D" for ::1 at 2016-05-16 17:31:35 -0300 Processing by Pulitzer::VersionsController#edit as */* Parameters: {"authenticity_token"=>"VURlKfqg+KIt4o5CyRXZu4FUFScemJDn8wCwgLDa60x3IMycnmsSwdkQDXeOawKbEayhtr62g95wztX9r/aHFQ==", "id"=>"1"} Pulitzer::Version Load (0.2ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (3.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (6.6ms) Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (1.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (4.0ms) Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_index.html.erb (20.5ms) Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (3.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_edit.html.erb (47.0ms) Completed 200 OK in 59ms (Views: 50.6ms | ActiveRecord: 1.0ms) Started GET "/pulitzer/post_tags/new?tag_model=Pulitzer%3A%3ATag&version_id=1&authenticity_token=VURlKfqg%2BKIt4o5CyRXZu4FUFScemJDn8wCwgLDa60x3IMycnmsSwdkQDXeOawKbEayhtr62g95wztX9r%2FaHFQ%3D%3D" for ::1 at 2016-05-16 17:31:37 -0300 Processing by Pulitzer::PostTagsController#new as */* Parameters: {"tag_model"=>"Pulitzer::Tag", "version_id"=>"1", "authenticity_token"=>"VURlKfqg+KIt4o5CyRXZu4FUFScemJDn8wCwgLDa60x3IMycnmsSwdkQDXeOawKbEayhtr62g95wztX9r/aHFQ=="} Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_new.html.erb (4.1ms) Completed 200 OK in 15ms (Views: 9.4ms | ActiveRecord: 0.5ms) Started POST "/pulitzer/post_tags" for ::1 at 2016-05-16 17:31:42 -0300 Processing by Pulitzer::PostTagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"Q6smarsG+a1iS/LrSDXQQsWSenQrWMKhx+Bd5J8FgtFhz4/f380Tzpa5cd4PSwtiVWrO5Yt20ZhELjiZgCnuiA==", "post_tag"=>{"label_id"=>"51", "version_id"=>"1", "label_type"=>"Pulitzer::Tag"}}  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "pulitzer_post_tags" ("label_id", "version_id", "label_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["label_id", 51], ["version_id", 1], ["label_type", "Pulitzer::Tag"], ["created_at", "2016-05-16 20:31:42.465392"], ["updated_at", "2016-05-16 20:31:42.465392"]]  (43.7ms) commit transaction Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (4.0ms) Completed 200 OK in 58ms (Views: 7.0ms | ActiveRecord: 44.4ms) Started GET "/pulitzer/post_tags/new?tag_model=Pulitzer%3A%3ATag&version_id=1&authenticity_token=VURlKfqg%2BKIt4o5CyRXZu4FUFScemJDn8wCwgLDa60x3IMycnmsSwdkQDXeOawKbEayhtr62g95wztX9r%2FaHFQ%3D%3D" for ::1 at 2016-05-16 17:31:44 -0300 Processing by Pulitzer::PostTagsController#new as */* Parameters: {"tag_model"=>"Pulitzer::Tag", "version_id"=>"1", "authenticity_token"=>"VURlKfqg+KIt4o5CyRXZu4FUFScemJDn8wCwgLDa60x3IMycnmsSwdkQDXeOawKbEayhtr62g95wztX9r/aHFQ=="} Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_new.html.erb (2.3ms) Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.2ms) Started POST "/pulitzer/post_tags" for ::1 at 2016-05-16 17:32:40 -0300 Processing by Pulitzer::PostTagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"z5jOImkDAoKQ2EwaWoIGIwjnIXO1t30LTLtl8+wi/ePt/GeXDcjo4WQqzy8d/N0DmB+V4hWZbjLPdQCO8w6Rug==", "post_tag"=>{"label_id"=>"51", "version_id"=>"1", "label_type"=>"Pulitzer::Tag"}}  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "pulitzer_post_tags" ("label_id", "version_id", "label_type", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["label_id", 51], ["version_id", 1], ["label_type", "Pulitzer::Tag"], ["created_at", "2016-05-16 20:32:40.069496"], ["updated_at", "2016-05-16 20:32:40.069496"]]  (43.4ms) commit transaction Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 51]] CACHE (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (2.7ms) Completed 200 OK in 53ms (Views: 5.4ms | ActiveRecord: 43.9ms) Started DELETE "/pulitzer/post_tags/2" for ::1 at 2016-05-16 17:32:42 -0300 Processing by Pulitzer::PostTagsController#destroy as */* Parameters: {"authenticity_token"=>"VURlKfqg+KIt4o5CyRXZu4FUFScemJDn8wCwgLDa60x3IMycnmsSwdkQDXeOawKbEayhtr62g95wztX9r/aHFQ==", "id"=>"2"} Pulitzer::PostTag Load (0.2ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) begin transaction SQL (0.2ms) DELETE FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."id" = ? [["id", 2]]  (45.2ms) commit transaction Rendered text template (0.0ms) Completed 200 OK in 48ms (Views: 0.4ms | ActiveRecord: 45.6ms) Started GET "/pulitzer/post_tags/new?tag_model=SearchLocation&version_id=1&authenticity_token=VURlKfqg%2BKIt4o5CyRXZu4FUFScemJDn8wCwgLDa60x3IMycnmsSwdkQDXeOawKbEayhtr62g95wztX9r%2FaHFQ%3D%3D" for ::1 at 2016-05-16 17:32:44 -0300 Processing by Pulitzer::PostTagsController#new as */* Parameters: {"tag_model"=>"SearchLocation", "version_id"=>"1", "authenticity_token"=>"VURlKfqg+KIt4o5CyRXZu4FUFScemJDn8wCwgLDa60x3IMycnmsSwdkQDXeOawKbEayhtr62g95wztX9r/aHFQ=="} Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] SearchLocation Load (0.6ms) SELECT "search_locations".* FROM "search_locations" SQLite3::SQLException: no such table: search_locations: SELECT "search_locations".* FROM "search_locations" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_new.html.erb (8.1ms) Completed 500 Internal Server Error in 14ms ActionView::Template::Error (SQLite3::SQLException: no such table: search_locations: SELECT "search_locations".* FROM "search_locations"): 1: <%= form_for post_tag, html: ajax_form_hash("#show_#{underscore_class_name(tag_model)}") do |f| %> 2: <%= f.label :name %> 3: <%= f.select :label_id, options_from_collection_for_select(tag_model.constantize.all, :id, :name), {}, select2_html_options(tag_model) %> 4: <%= f.hidden_field :version_id %> 5: <%= f.hidden_field :label_type %> 6: <%= f.submit "Create" %> sqlite3 (1.3.11) lib/sqlite3/database.rb:91:in `initialize' sqlite3 (1.3.11) lib/sqlite3/database.rb:91:in `new' sqlite3 (1.3.11) lib/sqlite3/database.rb:91:in `prepare' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:300:in `block in exec_query' activerecord (4.2.0) lib/active_record/connection_adapters/abstract_adapter.rb:466:in `block in log' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activerecord (4.2.0) lib/active_record/connection_adapters/abstract_adapter.rb:460:in `log' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:297:in `exec_query' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:336:in `select' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.2.0) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.2.0) lib/active_record/relation.rb:638:in `exec_queries' activerecord (4.2.0) lib/active_record/relation.rb:514:in `load' activerecord (4.2.0) lib/active_record/relation.rb:243:in `to_a' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `map' actionview (4.2.0) lib/action_view/helpers/form_options_helper.rb:394:in `options_from_collection_for_select' /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_new.html.erb:3:in `block in __home_darkside_work_pulitzer_app_views_pulitzer_post_tags__new_html_erb__2588419774767363109_70072098815520' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_new.html.erb:1:in `__home_darkside_work_pulitzer_app_views_pulitzer_post_tags__new_html_erb__2588419774767363109_70072098815520' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/post_tags_controller.rb:8:in `new' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.6ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (8.0ms) Started GET "/pulitzer/posts/main-travel-guide/edit" for ::1 at 2016-05-16 17:34:43 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by Pulitzer::PostsController#edit as HTML Parameters: {"id"=>"main-travel-guide"} Pulitzer::Post Load (0.3ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "main-travel-guide"]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/posts/edit.html.erb within layouts/application (37.0ms) Completed 200 OK in 179ms (Views: 155.0ms | ActiveRecord: 1.4ms) Started GET "/pulitzer/posts/main-travel-guide/edit" for ::1 at 2016-05-16 17:34:43 -0300 Processing by Pulitzer::PostsController#edit as HTML Parameters: {"id"=>"main-travel-guide"} Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "main-travel-guide"]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Version Load (0.3ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/posts/edit.html.erb within layouts/application (2.8ms) Completed 200 OK in 76ms (Views: 74.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/pulitzer/posts/main-travel-guide/edit" for ::1 at 2016-05-16 17:34:43 -0300 Processing by Pulitzer::PostsController#edit as HTML Parameters: {"id"=>"main-travel-guide"} Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "main-travel-guide"]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/posts/edit.html.erb within layouts/application (1.9ms) Completed 200 OK in 51ms (Views: 49.8ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:34:43 -0300 Started GET "/pulitzer/versions/1/edit?authenticity_token=zwpHlym0QtuysSRCEAavI%2FW1WCk%2Bz9Ol6r6HJobijC3tbu4iTX%2BouEZDp3dXeHQDZU3suJ7hwJxpcOJbmc7gdA%3D%3D" for ::1 at 2016-05-16 17:34:43 -0300 Processing by Pulitzer::VersionsController#edit as */* Parameters: {"authenticity_token"=>"zwpHlym0QtuysSRCEAavI/W1WCk+z9Ol6r6HJobijC3tbu4iTX+ouEZDp3dXeHQDZU3suJ7hwJxpcOJbmc7gdA==", "id"=>"1"} Pulitzer::Version Load (0.2ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (18.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (22.0ms) Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (4.2ms) Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_index.html.erb (22.2ms) Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (3.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_edit.html.erb (64.8ms) Completed 200 OK in 169ms (Views: 69.0ms | ActiveRecord: 1.8ms) Started GET "/pulitzer/post_tags/new?tag_model=Pulitzer%3A%3ATag&version_id=1&authenticity_token=zwpHlym0QtuysSRCEAavI%2FW1WCk%2Bz9Ol6r6HJobijC3tbu4iTX%2BouEZDp3dXeHQDZU3suJ7hwJxpcOJbmc7gdA%3D%3D" for ::1 at 2016-05-16 17:34:50 -0300 Processing by Pulitzer::PostTagsController#new as */* Parameters: {"tag_model"=>"Pulitzer::Tag", "version_id"=>"1", "authenticity_token"=>"zwpHlym0QtuysSRCEAavI/W1WCk+z9Ol6r6HJobijC3tbu4iTX+ouEZDp3dXeHQDZU3suJ7hwJxpcOJbmc7gdA=="} Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_new.html.erb (14.2ms) Completed 200 OK in 33ms (Views: 20.0ms | ActiveRecord: 0.4ms) Started GET "/pulitzer/post_types" for ::1 at 2016-05-16 17:35:01 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.2ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (9.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (11.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (13.7ms) Completed 200 OK in 61ms (Views: 59.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:35:01 -0300 Started GET "/pulitzer/post_type_content_element_types/new?post_type_id=1&authenticity_token=0UG8i017opgnsMHYU4ST1SDFHxFAh8TXEXv6pgzQLdjzJRU%2BKbBI%2B9NCQu0U%2Bkj1sD2rgOCp1%2B6StZ%2FbE%2FxBgQ%3D%3D" for ::1 at 2016-05-16 17:35:04 -0300 Processing by Pulitzer::PostTypeContentElementTypesController#new as */* Parameters: {"post_type_id"=>"1", "authenticity_token"=>"0UG8i017opgnsMHYU4ST1SDFHxFAh8TXEXv6pgzQLdjzJRU+KbBI+9NCQu0U+kj1sD2rgOCp1+6StZ/bE/xBgQ=="} Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::ContentElementType Load (0.2ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = ? LIMIT 1 [["name", "Image"]] Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = ? LIMIT 1 [["name", "Text"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_form_fields.html.erb (14.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_new.html.erb (22.1ms) Completed 200 OK in 35ms (Views: 27.0ms | ActiveRecord: 0.9ms) Started POST "/pulitzer/post_type_content_element_types" for ::1 at 2016-05-16 17:35:13 -0300 Processing by Pulitzer::PostTypeContentElementTypesController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"0/A1eZ3SZJOCNXKxhzbGSkfxe3x3a3APM87X24hCzRnxlJzM+RmO8HbH8YTASB1q1wnP7ddFYzawALKml26hQA==", "post_type_content_element_type"=>{"label"=>"something", "content_element_type_id"=>"1", "post_type_id"=>"1", "height"=>"100", "width"=>"100", "text_editor"=>"Simple editor"}} Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "pulitzer_post_type_content_element_types" ("label", "content_element_type_id", "post_type_id", "text_editor", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["label", "something"], ["content_element_type_id", 1], ["post_type_id", 1], ["text_editor", "Simple editor"], ["created_at", "2016-05-16 20:35:13.192871"], ["updated_at", "2016-05-16 20:35:13.192871"]]  (55.4ms) commit transaction Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? [["post_type_id", 1]] Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]]  (0.0ms) begin transaction Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]] SQL (0.2ms) INSERT INTO "pulitzer_content_elements" ("version_id", "label", "text_editor", "content_element_type_id", "post_type_content_element_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["version_id", 1], ["label", "something"], ["text_editor", "Simple editor"], ["content_element_type_id", 1], ["post_type_content_element_type_id", 1], ["created_at", "2016-05-16 20:35:13.264556"], ["updated_at", "2016-05-16 20:35:13.264556"]]  (38.2ms) commit transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show.html.erb (1.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show_wrapper.html.erb (4.6ms) Completed 200 OK in 126ms (Views: 8.7ms | ActiveRecord: 95.2ms) Started GET "/pulitzer/posts/main-travel-guide/edit" for ::1 at 2016-05-16 17:35:19 -0300 Processing by Pulitzer::PostsController#edit as HTML Parameters: {"id"=>"main-travel-guide"} Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."slug" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["slug", "main-travel-guide"]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/posts/edit.html.erb within layouts/application (3.3ms) Completed 200 OK in 53ms (Views: 51.3ms | ActiveRecord: 0.3ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:35:19 -0300 Started GET "/pulitzer/versions/1/edit?authenticity_token=LnWJex%2Fs%2FgqXpKzuUEq8NQe0fwxmcXyiJZ5BxCnnxgcMESDOeycUaWNWL9sXNGcVl0zLncZfb5umUCS5NsuqXg%3D%3D" for ::1 at 2016-05-16 17:35:19 -0300 Processing by Pulitzer::VersionsController#edit as */* Parameters: {"authenticity_token"=>"LnWJex/s/gqXpKzuUEq8NQe0fwxmcXyiJZ5BxCnnxgcMESDOeycUaWNWL9sXNGcVl0zLncZfb5umUCS5NsuqXg==", "id"=>"1"} Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."id" = ? LIMIT 1 [["id", 1]] Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "Pulitzer::Tag"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."id" = ? LIMIT 1 [["id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (3.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (5.8ms) Pulitzer::PostTag Load (0.1ms) SELECT "pulitzer_post_tags".* FROM "pulitzer_post_tags" WHERE "pulitzer_post_tags"."version_id" = ? AND "pulitzer_post_tags"."label_type" = ? [["version_id", 1], ["label_type", "SearchLocation"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_tags/_show_wrapper.html.erb (4.2ms) Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."version_id" = ? AND "pulitzer_content_elements"."kind" = ? ORDER BY "pulitzer_content_elements"."id" ASC [["version_id", 1], ["kind", 0]] Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]] Rendered toolbars/_simple_editor.html.erb (0.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_text_fields.html.erb (9.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_form.html.erb (19.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_show_wrapper.html.erb (26.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_index.html.erb (31.2ms) Pulitzer::Version Load (0.1ms) SELECT "pulitzer_versions".* FROM "pulitzer_versions" WHERE "pulitzer_versions"."post_id" = ? AND "pulitzer_versions"."status" = ? ORDER BY "pulitzer_versions"."id" DESC LIMIT 1 [["post_id", 1], ["status", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_form.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/versions/_edit.html.erb (54.7ms) Completed 200 OK in 61ms (Views: 57.1ms | ActiveRecord: 0.8ms) Started PATCH "/pulitzer/content_elements/1" for ::1 at 2016-05-16 17:35:32 -0300 Processing by Pulitzer::ContentElementsController#update as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"5COXPEIOX+f7LY1W9tLkXu8LuYVtEFhVUricEWUeEmLGRz6JJsW1hA/fDmOxrD9+f/MNFM0+S2zRdvlsejJ+Ow==", "content_element"=>{"title"=>"This place is amazing", "body"=>"zomg"}, "_wysihtml5_mode"=>"1", "id"=>"1"} Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" WHERE "pulitzer_content_elements"."id" = ? ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.3ms) UPDATE "pulitzer_content_elements" SET "title" = ?, "body" = ?, "updated_at" = ? WHERE "pulitzer_content_elements"."id" = ? [["title", "This place is amazing"], ["body", "zomg"], ["updated_at", "2016-05-16 20:35:32.787501"], ["id", 1]]  (75.4ms) commit transaction Pulitzer::ContentElementType Load (0.2ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/content_elements/_show.html.erb (2.7ms) Completed 200 OK in 91ms (Views: 9.6ms | ActiveRecord: 76.2ms) Started GET "/pulitzer/post_types" for ::1 at 2016-05-16 17:35:40 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show_wrapper.html.erb (2.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (6.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (7.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (9.2ms) Completed 200 OK in 61ms (Views: 60.5ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:35:40 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:35:44 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 48]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 50]] Pulitzer::Tag Load (0.0ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (1.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (6.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 49]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (10.4ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.2ms) Completed 200 OK in 79ms (Views: 77.3ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:35:44 -0300 Started GET "/pulitzer/post_types" for ::1 at 2016-05-16 17:35:49 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Pulitzer::ContentElementType Load (0.1ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show.html.erb (1.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (6.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (7.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (8.9ms) Completed 200 OK in 55ms (Views: 54.4ms | ActiveRecord: 0.5ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:35:49 -0300 Started GET "/pulitzer/post_types" for ::1 at 2016-05-16 17:43:36 -0300 Processing by Pulitzer::PostTypesController#index as HTML Pulitzer::PostType Load (2.0ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" Pulitzer::Post Load (0.2ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" WHERE "pulitzer_posts"."post_type_id" = ? ORDER BY "pulitzer_posts"."id" ASC LIMIT 1 [["post_type_id", 1]] Pulitzer::PostTypeContentElementType Load (0.1ms) SELECT "pulitzer_post_type_content_element_types".* FROM "pulitzer_post_type_content_element_types" WHERE "pulitzer_post_type_content_element_types"."post_type_id" = ? ORDER BY "pulitzer_post_type_content_element_types"."id" ASC [["post_type_id", 1]] Pulitzer::ContentElementType Load (0.2ms) SELECT "pulitzer_content_element_types".* FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."id" = ? LIMIT 1 [["id", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show.html.erb (11.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_type_content_element_types/_show_wrapper.html.erb (12.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show.html.erb (54.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_show_wrapper.html.erb (57.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (75.4ms) Completed 200 OK in 213ms (Views: 186.9ms | ActiveRecord: 4.0ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:43:36 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:43:38 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 48]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 50]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (3.5ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.1ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 49]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.5ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (18.7ms) Completed 200 OK in 73ms (Views: 65.0ms | ActiveRecord: 0.9ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:43:38 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=HQiFq3%2BKw%2BfzfAdaQAEhNM8zJ1M0jQr4tPVv6tcvXic%2FbCweG0EphAeOhG8Hf%2FoUX8uTwpSjGcE3OwqXyAMyfg%3D%3D" for ::1 at 2016-05-16 17:43:39 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"HQiFq3+Kw+fzfAdaQAEhNM8zJ1M0jQr4tPVv6tcvXic/bCweG0EphAeOhG8Hf/oUX8uTwpSjGcE3OwqXyAMyfg=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (13.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (22.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (26.3ms) Completed 200 OK in 31ms (Views: 30.4ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:43:43 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"+gXz3JbmrnsAoH9bb/AOzVNTMO11SQeOY0iXIblYNnnYYVpp8i1EGPRS/G4ojtXtw6uEfNVnFLfghvJcpnRaIA==", "tag"=>{"name"=>"Travellers", "hierarchical"=>"true", "parent_id"=>""}}  (0.2ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Travellers' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (18.3ms) Completed 500 Internal Server Error in 29ms ActionView::Template::Error (undefined local variable or method `target' for #<#:0x0055806a385140>): 1: <%= form_for @tag, html: ajax_form_hash(target, insert_method: 'append', empty_on_success: container) do |f| %> 2: <%= render partial: 'form_fields', locals: { f: f } %> 3: <%= f.submit "Create" %> 4: <%= link_to('Cancel', '#', :class => 'button', /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb:1:in `__home_darkside_work_pulitzer_app_views_pulitzer_tags__new_html_erb___2481857029951520280_47005013087420' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /home/darkside/work/pulitzer/app/controllers/pulitzer/tags_controller.rb:30:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:38:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.7ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (7.5ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:44:43 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 48]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 50]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (19.3ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 49]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (25.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (45.6ms) Completed 200 OK in 185ms (Views: 153.4ms | ActiveRecord: 2.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:44:43 -0300 Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:44:44 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 48]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 50]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.2ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (5.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (8.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 49]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (11.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (14.8ms) Completed 200 OK in 80ms (Views: 78.6ms | ActiveRecord: 0.6ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:44:44 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=F8fo%2FJvwEJ82Lo8Vt%2BomDs205xqi5i%2BbRThAOMplYm41o0FJ%2Fzv6%2FMLcDCDwlP0uXUxTiwLIPKLG9iVF1UkONw%3D%3D" for ::1 at 2016-05-16 17:44:45 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"F8fo/JvwEJ82Lo8Vt+omDs205xqi5i+bRThAOMplYm41o0FJ/zv6/MLcDCDwlP0uXUxTiwLIPKLG9iVF1UkONw=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (11.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (18.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (22.0ms) Completed 200 OK in 26ms (Views: 25.8ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:44:47 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"kONdgJ5+DbhTtgPqExoN80yHcYDxIHyz/twneAbYlsOyh/Q1+rXn26dEgN9UZNbT3H/FEVEOb4p9EkIFGfT6mg==", "tag"=>{"name"=>"Travellers", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Travellers' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (12.4ms) Completed 409 Conflict in 42ms (Views: 15.9ms | ActiveRecord: 0.4ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:48:33 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = ? AND "pulitzer_tags"."parent_id" IS NULL [["hierarchical", "t"]] Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 48]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 50]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (2.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (4.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (4.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (21.2ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 49]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (25.6ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = ? [["hierarchical", "f"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (42.5ms) Completed 200 OK in 210ms (Views: 162.5ms | ActiveRecord: 2.8ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:48:33 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=96TbY2IsH5w0xNXMKZOxuDo0BnqHVuzlZcqMGjOAHnXVwHLWBuf1%2F8A2Vvlu7WqYqsyy6yd4%2F9zmBOlnLKxyLA%3D%3D" for ::1 at 2016-05-16 17:48:36 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"96TbY2IsH5w0xNXMKZOxuDo0BnqHVuzlZcqMGjOAHnXVwHLWBuf1/8A2Vvlu7WqYqsyy6yd4/9zmBOlnLKxyLA=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (23.7ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (32.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (36.0ms) Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:48:38 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZBzpcFJzqf2jm3e6GqIwfOm6HDnoSTSfQv0V1ZnEqeZGeEDFNrhDnldp9I9d3OtceUKoqEhnJ6bBM3CohujFvw==", "tag"=>{"name"=>"Travellers", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Travellers' LIMIT 1  (0.2ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (9.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (13.9ms) Completed 409 Conflict in 66ms (Views: 18.9ms | ActiveRecord: 0.5ms) Started GET "/pulitzer/tags" for ::1 at 2016-05-16 17:49:42 -0300 Processing by Pulitzer::TagsController#index as HTML Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = ? AND "pulitzer_tags"."parent_id" IS NULL [["hierarchical", "t"]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 48]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 50]] Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 51]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (2.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (3.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (5.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (6.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (9.7ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."parent_id" = ? [["parent_id", 49]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show.html.erb (1.6ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (12.9ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = ? [["hierarchical", "f"]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (16.4ms) Completed 200 OK in 61ms (Views: 59.6ms | ActiveRecord: 0.7ms) Started GET "/assets/application-0dd8ed0d1443d69d917bf296284edc20.css?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/assets/pulitzer-b137c25107743e59d51572c05eb69b2a.css?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/assets/hooch-780c85ff96e89190ab4d1a86c24db077.js?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/assets/select2-6c0adcc1a91539b14fea96db651d63de.js?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/assets/application-579d2c518594b9a7e8dd05b6b98efc60.js?body=1" for ::1 at 2016-05-16 17:49:42 -0300 Started GET "/pulitzer/tags/new?tag%5Bhierarchical%5D=true&authenticity_token=69uwAQVz0owpCrHULANGjxm5bRypfOveXfnpyz2sJwDJvxm0Ybg47934MuFrfZ2viUHZjQlS%2BOfeN4y2IoBLWQ%3D%3D" for ::1 at 2016-05-16 17:49:45 -0300 Processing by Pulitzer::TagsController#new as */* Parameters: {"tag"=>{"hierarchical"=>"true"}, "authenticity_token"=>"69uwAQVz0owpCrHULANGjxm5bRypfOveXfnpyz2sJwDJvxm0Ybg47934MuFrfZ2viUHZjQlS+OfeN4y2IoBLWQ=="} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.9ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.4ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (8.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (11.4ms) Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms) Started POST "/pulitzer/tags" for ::1 at 2016-05-16 17:49:46 -0300 Processing by Pulitzer::TagsController#create as */* Parameters: {"utf8"=>"✓", "authenticity_token"=>"J5RJyBw0OnZBV3LzQ9D71CesssnD2iyPz1EJYEJZybQF8OB9eP/QFbWl8cYEriD0t1QGWGP0P7ZMn2wdXXWl7Q==", "tag"=>{"name"=>"Travellers", "hierarchical"=>"true", "parent_id"=>""}}  (0.1ms) begin transaction Pulitzer::Tag Exists (0.2ms) SELECT 1 AS one FROM "pulitzer_tags" WHERE "pulitzer_tags"."name" = 'Travellers' LIMIT 1  (0.1ms) rollback transaction Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_form_fields.html.erb (0.8ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/shared/_error_messages.erb (0.3ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new.html.erb (23.1ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_new_hierarchical.html.erb (25.9ms) Completed 409 Conflict in 34ms (Views: 29.9ms | ActiveRecord: 0.4ms) Started GET "/users/sign_in" for ::1 at 2016-05-24 15:54:29 -0300 ActionController::RoutingError (No route matches [GET] "/users/sign_in"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.1ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.0ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (62.4ms) Started GET "/pulitzer" for ::1 at 2016-05-24 15:54:47 -0300 Processing by Pulitzer::PostTypesController#index as HTML Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (1.7ms) Completed 200 OK in 345ms (Views: 342.8ms | ActiveRecord: 0.0ms) Started GET "/assets/application-2057cc134437d2a378b92e4d575e8a4a.css?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/assets/pulitzer-c9bbd5abe46f01f06a16fea87c66b734.css?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/assets/hooch-89036e5a7f988083ae4ce49fe161319d.js?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/assets/select2-c10dbdbc4d97fc8adbad2bb987ca61c8.js?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/assets/application-020d978092bb3eeec19daa73739b9a9c.js?body=1" for ::1 at 2016-05-24 15:54:47 -0300 Started GET "/pulitzer/post_types?post_type_kind=template&authenticity_token=BvzXLmjbeq61dkQDqqsV1RwTwdHgpdul0DULLkgTO1KLEFh4n2yOtt9iDbjKbg%2F30pAHVbs5Ed3g942xQw55ow%3D%3D" for ::1 at 2016-05-24 15:54:47 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"template", "authenticity_token"=>"BvzXLmjbeq61dkQDqqsV1RwTwdHgpdul0DULLkgTO1KLEFh4n2yOtt9iDbjKbg/30pAHVbs5Ed3g942xQw55ow=="} Completed 500 Internal Server Error in 24ms ActiveRecord::StatementInvalid (Could not find table 'pulitzer_post_types'): activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:517:in `table_structure' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:389:in `columns' activerecord (4.2.0) lib/active_record/connection_adapters/schema_cache.rb:43:in `columns' activerecord (4.2.0) lib/active_record/attributes.rb:91:in `columns' activerecord (4.2.0) lib/active_record/attributes.rb:96:in `columns_hash' activerecord (4.2.0) lib/active_record/relation/query_methods.rb:968:in `block in create_binds' activerecord (4.2.0) lib/active_record/relation/query_methods.rb:965:in `each' activerecord (4.2.0) lib/active_record/relation/query_methods.rb:965:in `partition' activerecord (4.2.0) lib/active_record/relation/query_methods.rb:965:in `create_binds' activerecord (4.2.0) lib/active_record/relation/query_methods.rb:952:in `build_where' activerecord (4.2.0) lib/active_record/relation/query_methods.rb:584:in `where!' activerecord (4.2.0) lib/active_record/relation/query_methods.rb:574:in `where' activerecord (4.2.0) lib/active_record/querying.rb:10:in `where' activerecord (4.2.0) lib/active_record/enum.rb:131:in `block (4 levels) in enum' activerecord (4.2.0) lib/active_record/scoping/named.rb:155:in `call' activerecord (4.2.0) lib/active_record/scoping/named.rb:155:in `block (2 levels) in scope' activerecord (4.2.0) lib/active_record/relation.rb:302:in `scoping' activerecord (4.2.0) lib/active_record/scoping/named.rb:155:in `block in scope' /home/darkside/work/pulitzer/app/controllers/pulitzer/post_types_controller.rb:11:in `index' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.4) lib/rack/etag.rb:24:in `call' rack (1.6.4) lib/rack/conditionalget.rb:25:in `call' rack (1.6.4) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.4) lib/rack/methodoverride.rb:22:in `call' rack (1.6.4) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.4) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.4) lib/rack/lock.rb:17:in `call' rack (1.6.4) lib/rack/content_length.rb:15:in `call' rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run' /home/darkside/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread' Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.9ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (1.5ms) Rendered /home/darkside/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (20.5ms)  (85.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.2ms) select sqlite_version(*)  (78.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePulitzerPostTypes (20150618224344)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150618224344"]]  (65.4ms) commit transaction Migrating to CreatePulitzerContentElementTypes (20150618225402)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150618225402"]]  (77.4ms) commit transaction Migrating to CreatePulitzerPosts (20150619204615)  (0.3ms) begin transaction  (0.8ms) CREATE TABLE "pulitzer_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "post_type_id" integer, "status" varchar DEFAULT 'unpublished', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619204615"]]  (73.3ms) commit transaction Migrating to CreatePulitzerContentElements (20150619204708)  (0.2ms) begin transaction  (0.6ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "post_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619204708"]]  (76.5ms) commit transaction Migrating to CreatePulitzerTags (20150619213436)  (0.2ms) begin transaction  (0.6ms) CREATE TABLE "pulitzer_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619213436"]]  (74.2ms) commit transaction Migrating to CreatePulitzerPostTags (20150619213457)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619213457"]]  (76.5ms) commit transaction Migrating to CreatePulitzerPostTypeContentElementTypes (20150619215914)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "pulitzer_post_type_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "content_element_type_id" integer, "label" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619215914"]]  (76.7ms) commit transaction Migrating to AddPluralAndTemplateToPulitzerPostTypes (20150629195832)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "pulitzer_post_types" ADD "plural" boolean  (0.3ms) ALTER TABLE "pulitzer_post_types" ADD "template" boolean SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150629195832"]]  (56.3ms) commit transaction Migrating to AddPulitzerContentElementTypes (20150702150819)  (0.1ms) begin transaction Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text"], ["created_at", "2016-05-24 18:55:18.364951"], ["updated_at", "2016-05-24 18:55:18.364951"]] Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Image' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Image"], ["created_at", "2016-05-24 18:55:18.367387"], ["updated_at", "2016-05-24 18:55:18.367387"]] Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Video"], ["created_at", "2016-05-24 18:55:18.369218"], ["updated_at", "2016-05-24 18:55:18.369218"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150702150819"]]  (38.6ms) commit transaction Migrating to AddSlugToPulitzerPosts (20150724150230)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_posts" ADD "slug" varchar  (0.1ms) select sqlite_version(*)  (0.5ms) CREATE UNIQUE INDEX "index_pulitzer_posts_on_slug" ON "pulitzer_posts" ("slug") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150724150230"]]  (58.0ms) commit transaction Migrating to ChangeLabelTypeFromPulitzerPostTags (20150902212741)  (1.1ms) begin transaction  (0.9ms) CREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_post_tags"  (0.5ms) DROP TABLE "pulitzer_post_tags"  (0.3ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_post_tags"  (0.2ms) DROP TABLE "apulitzer_post_tags" SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150902212741"]]  (48.3ms) commit transaction Migrating to AddTextEditorToPulitzerPostTypeContentElementTypes (20151026180630)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_post_type_content_element_types" ADD "text_editor" varchar SQL (0.1ms) UPDATE "pulitzer_post_type_content_element_types" SET "text_editor" = 'None' WHERE "pulitzer_post_type_content_element_types"."id" IN (SELECT "pulitzer_post_type_content_element_types"."id" FROM "pulitzer_post_type_content_element_types" ORDER BY "pulitzer_post_type_content_element_types"."id" ASC) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151026180630"]]  (38.2ms) commit transaction Migrating to CreatePulitzerVersions (20151029194354)  (0.7ms) begin transaction  (0.5ms) CREATE TABLE "pulitzer_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer DEFAULT 0, "post_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151029194354"]]  (62.2ms) commit transaction Migrating to ChangePostElementsToVersions (20151029220558)  (0.2ms) begin transaction  (0.4ms) CREATE TEMPORARY TABLE "apulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.6ms) SELECT * FROM "pulitzer_content_elements"  (0.3ms) DROP TABLE "pulitzer_content_elements"  (0.9ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.6ms) SELECT * FROM "apulitzer_content_elements"  (0.2ms) DROP TABLE "apulitzer_content_elements"  (0.3ms) CREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_post_tags"  (0.2ms) DROP TABLE "pulitzer_post_tags"  (0.3ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_post_tags"  (0.2ms) DROP TABLE "apulitzer_post_tags" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" ORDER BY "pulitzer_posts"."id" ASC LIMIT 1000 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151029220558"]]  (41.4ms) commit transaction Migrating to AddPostTypeContentElementAttributesToContentElements (20151113183344)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_content_elements" ADD "text_editor" varchar  (0.2ms) ALTER TABLE "pulitzer_content_elements" ADD "height" integer DEFAULT 100  (0.2ms) ALTER TABLE "pulitzer_content_elements" ADD "width" integer DEFAULT 100  (0.2ms) ALTER TABLE "pulitzer_content_elements" ADD "sort_order" integer Scoped order and limit are ignored, it's forced to be batch order and batch size Pulitzer::ContentElement Load (0.1ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1000 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151113183344"]]  (37.7ms) commit transaction Migrating to ChangeTemplateToPulitzerPostTypes (20151116162508)  (0.1ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "apulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean, "template" boolean)   (0.1ms) SELECT * FROM "pulitzer_post_types"  (0.2ms) DROP TABLE "pulitzer_post_types"  (0.2ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean)  (0.1ms) SELECT * FROM "apulitzer_post_types"  (0.1ms) DROP TABLE "apulitzer_post_types"  (0.2ms) ALTER TABLE "pulitzer_post_types" ADD "kind" integer DEFAULT 0 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151116162508"]]  (40.4ms) commit transaction Migrating to AddKindToPulitzerContentElements (20151118031237)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_content_elements" ADD "kind" integer DEFAULT 0 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151118031237"]]  (39.3ms) commit transaction Migrating to AddErrorsToVersion (20160122204201)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_versions" ADD "cloning_errors" jsonb SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160122204201"]]  (40.3ms) commit transaction Migrating to CreatePartials (20160511192041)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "pulitzer_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "free_form_section_id" integer, "sort_order" integer)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160511192041"]]  (58.0ms) commit transaction Migrating to AddParentIdToPulitzerTag (20160511201527)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_tags" ADD "parent_id" integer  (0.3ms) ALTER TABLE "pulitzer_tags" ADD "hierarchical" boolean DEFAULT 'f' NOT NULL  (0.2ms) CREATE INDEX "index_pulitzer_tags_on_hierarchical" ON "pulitzer_tags" ("hierarchical") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160511201527"]]  (75.2ms) commit transaction Migrating to AddPartialToContentElement (20160512214545)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_content_elements" ADD "partial_id" integer SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512214545"]]  (58.0ms) commit transaction Migrating to CreateFreeFormSectionType (20160513153209)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "pulitzer_free_form_section_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160513153209"]]  (60.4ms) commit transaction Migrating to CreateFreeFormSection (20160513153214)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "pulitzer_free_form_sections" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "free_form_section_type_id" integer, "name" varchar)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160513153214"]]  (76.9ms) commit transaction Migrating to FixPostTypeKinds (20160516150237)  (0.1ms) begin transaction Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" IN (1, 2) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516150237"]]  (39.4ms) commit transaction Migrating to CreateLayouts (20160517181706)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_layouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160517181706"]]  (59.4ms) commit transaction Migrating to AddLayoutToPartial (20160517182500)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_partials" ADD "layout_id" integer SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160517182500"]]  (57.0ms) commit transaction Migrating to AddLabelToPartial (20160519181030)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "pulitzer_partials" ADD "label" varchar SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160519181030"]]  (39.4ms) commit transaction ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_pulitzer_posts_on_slug' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_pulitzer_posts_on_slug' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_pulitzer_tags_on_hierarchical' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_pulitzer_tags_on_hierarchical' AND type='index' Started GET "/pulitzer?post_type_kind_tab=templates" for ::1 at 2016-05-24 15:55:30 -0300 Processing by Pulitzer::PostTypesController#index as HTML Parameters: {"post_type_kind_tab"=>"templates"} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (2.1ms) Completed 200 OK in 120ms (Views: 118.7ms | ActiveRecord: 0.0ms) Started GET "/assets/application-2057cc134437d2a378b92e4d575e8a4a.css?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/assets/pulitzer-c9bbd5abe46f01f06a16fea87c66b734.css?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/assets/hooch-89036e5a7f988083ae4ce49fe161319d.js?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/assets/select2-c10dbdbc4d97fc8adbad2bb987ca61c8.js?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/assets/application-020d978092bb3eeec19daa73739b9a9c.js?body=1" for ::1 at 2016-05-24 15:55:30 -0300 Started GET "/pulitzer/post_types?post_type_kind=template&authenticity_token=JA0vJfOXgyCh88pIJVF7esBmiO80osg29ssFzZyQYbmp4aBzBCB3OMvng%2FNFlGFYDuVOa28%2BAk7GCYNSl40jSA%3D%3D" for ::1 at 2016-05-24 15:55:30 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"template", "authenticity_token"=>"JA0vJfOXgyCh88pIJVF7esBmiO80osg29ssFzZyQYbmp4aBzBCB3OMvng/NFlGFYDuVOa28+Ak7GCYNSl40jSA=="} Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_index.html.erb (4.8ms) Completed 200 OK in 47ms (Views: 10.0ms | ActiveRecord: 1.9ms) Started GET "/pulitzer/tags?authenticity_token=JA0vJfOXgyCh88pIJVF7esBmiO80osg29ssFzZyQYbmp4aBzBCB3OMvng%2FNFlGFYDuVOa28%2BAk7GCYNSl40jSA%3D%3D" for ::1 at 2016-05-24 15:55:32 -0300 Processing by Pulitzer::TagsController#index as */* Parameters: {"authenticity_token"=>"JA0vJfOXgyCh88pIJVF7esBmiO80osg29ssFzZyQYbmp4aBzBCB3OMvng/NFlGFYDuVOa28+Ak7GCYNSl40jSA=="} Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.1ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/index.html.erb within layouts/application (10.1ms) Completed 200 OK in 94ms (Views: 75.3ms | ActiveRecord: 0.6ms) Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1&_=1464116130550" for ::1 at 2016-05-24 15:55:33 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1&_=1464116130551" for ::1 at 2016-05-24 15:55:33 -0300 Started GET "/pulitzer/post_types?post_type_kind=template&authenticity_token=JA0vJfOXgyCh88pIJVF7esBmiO80osg29ssFzZyQYbmp4aBzBCB3OMvng%2FNFlGFYDuVOa28%2BAk7GCYNSl40jSA%3D%3D" for ::1 at 2016-05-24 15:55:33 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"template", "authenticity_token"=>"JA0vJfOXgyCh88pIJVF7esBmiO80osg29ssFzZyQYbmp4aBzBCB3OMvng/NFlGFYDuVOa28+Ak7GCYNSl40jSA=="} Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_index.html.erb (0.8ms) Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms) Started GET "/assets/hooch-89036e5a7f988083ae4ce49fe161319d.js?body=1&_=1464116130552" for ::1 at 2016-05-24 15:55:33 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1&_=1464116130553" for ::1 at 2016-05-24 15:55:33 -0300 Started GET "/assets/select2-c10dbdbc4d97fc8adbad2bb987ca61c8.js?body=1&_=1464116130554" for ::1 at 2016-05-24 15:55:33 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1&_=1464116130555" for ::1 at 2016-05-24 15:55:33 -0300 Started GET "/assets/application-020d978092bb3eeec19daa73739b9a9c.js?body=1&_=1464116130556" for ::1 at 2016-05-24 15:55:33 -0300 Started GET "/pulitzer?post_type_kind_tab=templates" for ::1 at 2016-05-24 15:56:25 -0300 Processing by Pulitzer::PostTypesController#index as HTML Parameters: {"post_type_kind_tab"=>"templates"} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (1.7ms) Completed 200 OK in 117ms (Views: 116.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application-2057cc134437d2a378b92e4d575e8a4a.css?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/assets/pulitzer-c9bbd5abe46f01f06a16fea87c66b734.css?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/assets/hooch-89036e5a7f988083ae4ce49fe161319d.js?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/assets/select2-c10dbdbc4d97fc8adbad2bb987ca61c8.js?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/assets/application-020d978092bb3eeec19daa73739b9a9c.js?body=1" for ::1 at 2016-05-24 15:56:25 -0300 Started GET "/pulitzer/post_types?post_type_kind=template&authenticity_token=961WrJSU6QwIpug0HOQsVGzTNC3Ou%2FlebnLo24NIOal6Qdn6YyMdFGKyoY98ITZ2olDyqZUnMyZesG5EiFV7WA%3D%3D" for ::1 at 2016-05-24 15:56:25 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"template", "authenticity_token"=>"961WrJSU6QwIpug0HOQsVGzTNC3Ou/lebnLo24NIOal6Qdn6YyMdFGKyoY98ITZ2olDyqZUnMyZesG5EiFV7WA=="} Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_index.html.erb (4.4ms) Completed 200 OK in 48ms (Views: 9.8ms | ActiveRecord: 2.1ms) Started GET "/pulitzer?post_type_kind_tab=templates" for ::1 at 2016-05-24 15:56:26 -0300 Processing by Pulitzer::PostTypesController#index as HTML Parameters: {"post_type_kind_tab"=>"templates"} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (0.8ms) Completed 200 OK in 76ms (Views: 76.0ms | ActiveRecord: 0.0ms) Started GET "/assets/application-2057cc134437d2a378b92e4d575e8a4a.css?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/assets/pulitzer-c9bbd5abe46f01f06a16fea87c66b734.css?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/assets/hooch-89036e5a7f988083ae4ce49fe161319d.js?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/assets/select2-c10dbdbc4d97fc8adbad2bb987ca61c8.js?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/assets/application-020d978092bb3eeec19daa73739b9a9c.js?body=1" for ::1 at 2016-05-24 15:56:26 -0300 Started GET "/pulitzer/post_types?post_type_kind=template&authenticity_token=y5YSkzQRdVYqm2Oaelv15hC4N3rTiDxq25RqfJuGvYJGep3Fw6aBTkCPKiEanu%2FE3jvx%2FogU9hLrVuzjkJv%2Fcw%3D%3D" for ::1 at 2016-05-24 15:56:26 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"template", "authenticity_token"=>"y5YSkzQRdVYqm2Oaelv15hC4N3rTiDxq25RqfJuGvYJGep3Fw6aBTkCPKiEanu/E3jvx/ogU9hLrVuzjkJv/cw=="} Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_index.html.erb (0.7ms) Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags?authenticity_token=y5YSkzQRdVYqm2Oaelv15hC4N3rTiDxq25RqfJuGvYJGep3Fw6aBTkCPKiEanu%2FE3jvx%2FogU9hLrVuzjkJv%2Fcw%3D%3D" for ::1 at 2016-05-24 15:56:29 -0300 Processing by Pulitzer::TagsController#index as */* Parameters: {"authenticity_token"=>"y5YSkzQRdVYqm2Oaelv15hC4N3rTiDxq25RqfJuGvYJGep3Fw6aBTkCPKiEanu/E3jvx/ogU9hLrVuzjkJv/cw=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_index.html.erb (13.6ms) Completed 200 OK in 43ms (Views: 21.6ms | ActiveRecord: 0.9ms) Started GET "/pulitzer/post_types?post_type_kind=partial&authenticity_token=y5YSkzQRdVYqm2Oaelv15hC4N3rTiDxq25RqfJuGvYJGep3Fw6aBTkCPKiEanu%2FE3jvx%2FogU9hLrVuzjkJv%2Fcw%3D%3D" for ::1 at 2016-05-24 15:56:35 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"partial", "authenticity_token"=>"y5YSkzQRdVYqm2Oaelv15hC4N3rTiDxq25RqfJuGvYJGep3Fw6aBTkCPKiEanu/E3jvx/ogU9hLrVuzjkJv/cw=="} Pulitzer::PostType Load (0.2ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_index.html.erb (1.9ms) Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.2ms) Started GET "/pulitzer?post_type_kind_tab=tags" for ::1 at 2016-05-24 15:56:53 -0300 Processing by Pulitzer::PostTypesController#index as HTML Parameters: {"post_type_kind_tab"=>"tags"} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (0.9ms) Completed 200 OK in 58ms (Views: 57.3ms | ActiveRecord: 0.0ms) Started GET "/assets/application-2057cc134437d2a378b92e4d575e8a4a.css?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/assets/pulitzer-c9bbd5abe46f01f06a16fea87c66b734.css?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/assets/hooch-89036e5a7f988083ae4ce49fe161319d.js?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/assets/select2-c10dbdbc4d97fc8adbad2bb987ca61c8.js?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/assets/application-020d978092bb3eeec19daa73739b9a9c.js?body=1" for ::1 at 2016-05-24 15:56:53 -0300 Started GET "/pulitzer/tags?authenticity_token=U%2B3QQKSPCuShOt4p8fr%2FL%2F1BdzDOypJW22%2Buz16vX8HeAV8WUzj%2B%2FMsul5KRP%2BUNM8KxtJVWWC7rrShQVbIdMA%3D%3D" for ::1 at 2016-05-24 15:56:53 -0300 Processing by Pulitzer::TagsController#index as */* Parameters: {"authenticity_token"=>"U+3QQKSPCuShOt4p8fr/L/1BdzDOypJW22+uz16vX8HeAV8WUzj+/Msul5KRP+UNM8KxtJVWWC7rrShQVbIdMA=="} Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.2ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_index.html.erb (10.8ms) Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.4ms) Started GET "/pulitzer/post_types?post_type_kind=template&authenticity_token=U%2B3QQKSPCuShOt4p8fr%2FL%2F1BdzDOypJW22%2Buz16vX8HeAV8WUzj%2B%2FMsul5KRP%2BUNM8KxtJVWWC7rrShQVbIdMA%3D%3D" for ::1 at 2016-05-24 15:56:56 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"template", "authenticity_token"=>"U+3QQKSPCuShOt4p8fr/L/1BdzDOypJW22+uz16vX8HeAV8WUzj+/Msul5KRP+UNM8KxtJVWWC7rrShQVbIdMA=="} Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_index.html.erb (1.8ms) Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/post_types?post_type_kind=partial&authenticity_token=U%2B3QQKSPCuShOt4p8fr%2FL%2F1BdzDOypJW22%2Buz16vX8HeAV8WUzj%2B%2FMsul5KRP%2BUNM8KxtJVWWC7rrShQVbIdMA%3D%3D" for ::1 at 2016-05-24 15:56:56 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"partial", "authenticity_token"=>"U+3QQKSPCuShOt4p8fr/L/1BdzDOypJW22+uz16vX8HeAV8WUzj+/Msul5KRP+UNM8KxtJVWWC7rrShQVbIdMA=="} Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_index.html.erb (1.2ms) Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.1ms) Started GET "/pulitzer?post_type_kind_tab=tags" for ::1 at 2016-05-24 15:57:36 -0300 Processing by Pulitzer::PostTypesController#index as HTML Parameters: {"post_type_kind_tab"=>"tags"} Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (1.5ms) Completed 200 OK in 61ms (Views: 60.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application-2057cc134437d2a378b92e4d575e8a4a.css?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/assets/pulitzer-c9bbd5abe46f01f06a16fea87c66b734.css?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/assets/hooch-89036e5a7f988083ae4ce49fe161319d.js?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/assets/select2-c10dbdbc4d97fc8adbad2bb987ca61c8.js?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/assets/application-020d978092bb3eeec19daa73739b9a9c.js?body=1" for ::1 at 2016-05-24 15:57:36 -0300 Started GET "/pulitzer/post_types?post_type_kind=template&authenticity_token=bnUH33EuEjbzB2pT3IerKKRc%2FZGaCfyNJGLtitqod3fjmYiJhpnmLpkTI%2Bi8QrEKat87FcGVNvUUoGsV0bU1hg%3D%3D" for ::1 at 2016-05-24 15:57:36 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"template", "authenticity_token"=>"bnUH33EuEjbzB2pT3IerKKRc/ZGaCfyNJGLtitqod3fjmYiJhpnmLpkTI+i8QrEKat87FcGVNvUUoGsV0bU1hg=="} Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_index.html.erb (0.8ms) Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms) Started GET "/pulitzer" for ::1 at 2016-05-24 15:57:38 -0300 Processing by Pulitzer::PostTypesController#index as HTML Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/index.html.erb within layouts/application (0.7ms) Completed 200 OK in 75ms (Views: 74.9ms | ActiveRecord: 0.0ms) Started GET "/assets/application-2057cc134437d2a378b92e4d575e8a4a.css?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/assets/pulitzer-c9bbd5abe46f01f06a16fea87c66b734.css?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/assets/select2-3dd5f7c039d1d49a7a5971e99aa4aa60.css?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/assets/jquery-74b99f07eb9a26506961e66ac99d1ca2.js?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/assets/wysihtml-219d179d5b749a26305a8047a994df6c.css?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/assets/hooch-89036e5a7f988083ae4ce49fe161319d.js?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/assets/thin_man-da7569df64068b77b371e6287ce0d1a2.js?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/assets/pulitzer-33af45d7375ad91993093cee313a88cf.js?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/assets/select2-c10dbdbc4d97fc8adbad2bb987ca61c8.js?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/assets/wysihtml-toolbar-59685f71cfa39b74ed2f54c267153113.js?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/assets/application-020d978092bb3eeec19daa73739b9a9c.js?body=1" for ::1 at 2016-05-24 15:57:38 -0300 Started GET "/pulitzer/post_types?post_type_kind=template&authenticity_token=3sO%2BynuyCBsu4Ao8QnK34SaoHkPanJXMZOLsUWxJP7dTLzGcjAX8A0T0Q4cit63D6CvYx4EAX7RUIGrOZ1R9Rg%3D%3D" for ::1 at 2016-05-24 15:57:39 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"template", "authenticity_token"=>"3sO+ynuyCBsu4Ao8QnK34SaoHkPanJXMZOLsUWxJP7dTLzGcjAX8A0T0Q4cit63D6CvYx4EAX7RUIGrOZ1R9Rg=="} Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 0]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_index.html.erb (0.7ms) Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.1ms) Started GET "/pulitzer/tags?authenticity_token=3sO%2BynuyCBsu4Ao8QnK34SaoHkPanJXMZOLsUWxJP7dTLzGcjAX8A0T0Q4cit63D6CvYx4EAX7RUIGrOZ1R9Rg%3D%3D" for ::1 at 2016-05-24 15:57:40 -0300 Processing by Pulitzer::TagsController#index as */* Parameters: {"authenticity_token"=>"3sO+ynuyCBsu4Ao8QnK34SaoHkPanJXMZOLsUWxJP7dTLzGcjAX8A0T0Q4cit63D6CvYx4EAX7RUIGrOZ1R9Rg=="} Pulitzer::Tag Load (0.4ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 't' AND "pulitzer_tags"."parent_id" IS NULL Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Pulitzer::Tag Load (0.3ms) SELECT "pulitzer_tags".* FROM "pulitzer_tags" WHERE "pulitzer_tags"."hierarchical" = 'f' Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_show_wrapper.html.erb (0.0ms) Rendered /home/darkside/work/pulitzer/app/views/pulitzer/tags/_index.html.erb (27.2ms) Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.6ms) Started GET "/pulitzer/post_types?post_type_kind=partial&authenticity_token=3sO%2BynuyCBsu4Ao8QnK34SaoHkPanJXMZOLsUWxJP7dTLzGcjAX8A0T0Q4cit63D6CvYx4EAX7RUIGrOZ1R9Rg%3D%3D" for ::1 at 2016-05-24 15:57:41 -0300 Processing by Pulitzer::PostTypesController#index as */* Parameters: {"post_type_kind"=>"partial", "authenticity_token"=>"3sO+ynuyCBsu4Ao8QnK34SaoHkPanJXMZOLsUWxJP7dTLzGcjAX8A0T0Q4cit63D6CvYx4EAX7RUIGrOZ1R9Rg=="} Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" = ? [["kind", 1]] Rendered /home/darkside/work/pulitzer/app/views/pulitzer/post_types/_index.html.erb (1.3ms) Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.1ms)  (61.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.1ms) select sqlite_version(*)  (59.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePulitzerPostTypes (20150618224344)  (0.2ms) begin transaction  (0.6ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150618224344"]]  (59.5ms) commit transaction Migrating to CreatePulitzerContentElementTypes (20150618225402)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150618225402"]]  (58.3ms) commit transaction Migrating to CreatePulitzerPosts (20150619204615)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "pulitzer_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "post_type_id" integer, "status" varchar DEFAULT 'unpublished', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619204615"]]  (58.0ms) commit transaction Migrating to CreatePulitzerContentElements (20150619204708)  (0.2ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "post_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619204708"]]  (60.6ms) commit transaction Migrating to CreatePulitzerTags (20150619213436)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619213436"]]  (59.1ms) commit transaction Migrating to CreatePulitzerPostTags (20150619213457)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619213457"]]  (58.3ms) commit transaction Migrating to CreatePulitzerPostTypeContentElementTypes (20150619215914)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_post_type_content_element_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "content_element_type_id" integer, "label" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150619215914"]]  (58.2ms) commit transaction Migrating to AddPluralAndTemplateToPulitzerPostTypes (20150629195832)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_post_types" ADD "plural" boolean  (0.1ms) ALTER TABLE "pulitzer_post_types" ADD "template" boolean SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150629195832"]]  (38.0ms) commit transaction Migrating to AddPulitzerContentElementTypes (20150702150819)  (0.1ms) begin transaction Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Text' LIMIT 1 SQL (0.2ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Text"], ["created_at", "2017-01-23 18:04:57.010035"], ["updated_at", "2017-01-23 18:04:57.010035"]] Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Image' LIMIT 1 SQL (0.1ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Image"], ["created_at", "2017-01-23 18:04:57.011834"], ["updated_at", "2017-01-23 18:04:57.011834"]] Pulitzer::ContentElementType Exists (0.1ms) SELECT 1 AS one FROM "pulitzer_content_element_types" WHERE "pulitzer_content_element_types"."name" = 'Video' LIMIT 1 SQL (0.0ms) INSERT INTO "pulitzer_content_element_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Video"], ["created_at", "2017-01-23 18:04:57.013160"], ["updated_at", "2017-01-23 18:04:57.013160"]] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150702150819"]]  (38.7ms) commit transaction Migrating to AddSlugToPulitzerPosts (20150724150230)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_posts" ADD "slug" varchar  (0.2ms) CREATE UNIQUE INDEX "index_pulitzer_posts_on_slug" ON "pulitzer_posts" ("slug") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150724150230"]]  (60.2ms) commit transaction Migrating to ChangeLabelTypeFromPulitzerPostTags (20150902212741)  (0.1ms) begin transaction  (0.5ms) CREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_post_tags"  (0.3ms) DROP TABLE "pulitzer_post_tags"  (0.2ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_post_tags"  (0.1ms) DROP TABLE "apulitzer_post_tags" SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150902212741"]]  (37.9ms) commit transaction Migrating to AddTextEditorToPulitzerPostTypeContentElementTypes (20151026180630)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_post_type_content_element_types" ADD "text_editor" varchar SQL (0.1ms) UPDATE "pulitzer_post_type_content_element_types" SET "text_editor" = 'None' WHERE "pulitzer_post_type_content_element_types"."id" IN (SELECT "pulitzer_post_type_content_element_types"."id" FROM "pulitzer_post_type_content_element_types" ORDER BY "pulitzer_post_type_content_element_types"."id" ASC) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151026180630"]]  (38.0ms) commit transaction Migrating to CreatePulitzerVersions (20151029194354)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "pulitzer_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "status" integer DEFAULT 0, "post_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151029194354"]]  (59.5ms) commit transaction Migrating to ChangePostElementsToVersions (20151029220558)  (0.1ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "apulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "pulitzer_content_elements"  (0.2ms) DROP TABLE "pulitzer_content_elements"  (0.2ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_content_elements"  (0.1ms) DROP TABLE "apulitzer_content_elements"  (0.1ms) CREATE TEMPORARY TABLE "apulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.0ms) SELECT * FROM "pulitzer_post_tags"  (0.1ms) DROP TABLE "pulitzer_post_tags"  (0.1ms) CREATE TABLE "pulitzer_post_tags" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "label_id" integer, "label_type" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) SELECT * FROM "apulitzer_post_tags"  (0.1ms) DROP TABLE "apulitzer_post_tags" Pulitzer::Post Load (0.1ms) SELECT "pulitzer_posts".* FROM "pulitzer_posts" ORDER BY "pulitzer_posts"."id" ASC LIMIT 1000 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151029220558"]]  (20.7ms) commit transaction Migrating to AddPostTypeContentElementAttributesToContentElements (20151113183344)  (0.2ms) begin transaction  (0.6ms) ALTER TABLE "pulitzer_content_elements" ADD "text_editor" varchar  (0.3ms) ALTER TABLE "pulitzer_content_elements" ADD "height" integer DEFAULT 100  (0.4ms) ALTER TABLE "pulitzer_content_elements" ADD "width" integer DEFAULT 100  (0.4ms) ALTER TABLE "pulitzer_content_elements" ADD "sort_order" integer Scoped order and limit are ignored, it's forced to be batch order and batch size Pulitzer::ContentElement Load (0.2ms) SELECT "pulitzer_content_elements".* FROM "pulitzer_content_elements" ORDER BY "pulitzer_content_elements"."id" ASC LIMIT 1000 SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151113183344"]]  (20.3ms) commit transaction Migrating to ChangeTemplateToPulitzerPostTypes (20151116162508)  (0.1ms) begin transaction  (0.3ms) CREATE TEMPORARY TABLE "apulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean, "template" boolean)   (0.1ms) SELECT * FROM "pulitzer_post_types"  (0.3ms) DROP TABLE "pulitzer_post_types"  (0.2ms) CREATE TABLE "pulitzer_post_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "plural" boolean)  (0.1ms) SELECT * FROM "apulitzer_post_types"  (0.2ms) DROP TABLE "apulitzer_post_types"  (0.2ms) ALTER TABLE "pulitzer_post_types" ADD "kind" integer DEFAULT 0 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151116162508"]]  (20.3ms) commit transaction Migrating to AddKindToPulitzerContentElements (20151118031237)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_content_elements" ADD "kind" integer DEFAULT 0 SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151118031237"]]  (18.7ms) commit transaction Migrating to AddErrorsToVersion (20160122204201)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_versions" ADD "cloning_errors" jsonb SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160122204201"]]  (20.5ms) commit transaction Migrating to CreatePartials (20160511192041)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_partials" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "free_form_section_id" integer, "sort_order" integer)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160511192041"]]  (20.9ms) commit transaction Migrating to AddParentIdToPulitzerTag (20160511201527)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_tags" ADD "parent_id" integer  (0.2ms) ALTER TABLE "pulitzer_tags" ADD "hierarchical" boolean DEFAULT 'f' NOT NULL  (0.1ms) CREATE INDEX "index_pulitzer_tags_on_hierarchical" ON "pulitzer_tags" ("hierarchical") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160511201527"]]  (21.4ms) commit transaction Migrating to AddPartialToContentElement (20160512214545)  (0.1ms) begin transaction  (0.5ms) ALTER TABLE "pulitzer_content_elements" ADD "partial_id" integer SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160512214545"]]  (20.9ms) commit transaction Migrating to CreateFreeFormSectionType (20160513153209)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "pulitzer_free_form_section_types" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160513153209"]]  (20.8ms) commit transaction Migrating to CreateFreeFormSection (20160513153214)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_free_form_sections" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "version_id" integer, "free_form_section_type_id" integer, "name" varchar)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160513153214"]]  (19.7ms) commit transaction Migrating to FixPostTypeKinds (20160516150237)  (0.1ms) begin transaction Pulitzer::PostType Load (0.1ms) SELECT "pulitzer_post_types".* FROM "pulitzer_post_types" WHERE "pulitzer_post_types"."kind" IN (1, 2) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160516150237"]]  (18.3ms) commit transaction Migrating to CreateLayouts (20160517181706)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "pulitzer_layouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_type_id" integer, "name" varchar)  SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160517181706"]]  (21.0ms) commit transaction Migrating to AddLayoutToPartial (20160517182500)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_partials" ADD "layout_id" integer SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160517182500"]]  (21.6ms) commit transaction Migrating to AddLabelToPartial (20160519181030)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "pulitzer_partials" ADD "label" varchar SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160519181030"]]  (20.9ms) commit transaction Migrating to RemoveTitleFromContentElements (20160609214139)  (0.1ms) begin transaction  (0.2ms) CREATE TEMPORARY TABLE "apulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "title" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "text_editor" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "sort_order" integer, "kind" integer DEFAULT 0, "partial_id" integer)   (0.1ms) SELECT * FROM "pulitzer_content_elements"  (0.2ms) DROP TABLE "pulitzer_content_elements"  (0.2ms) CREATE TABLE "pulitzer_content_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "label" varchar, "body" text, "image" varchar, "version_id" integer, "post_type_content_element_type_id" integer, "content_element_type_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "text_editor" varchar, "height" integer DEFAULT 100, "width" integer DEFAULT 100, "sort_order" integer, "kind" integer DEFAULT 0, "partial_id" integer)  (0.1ms) SELECT * FROM "apulitzer_content_elements"  (0.1ms) DROP TABLE "apulitzer_content_elements" SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160609214139"]]  (20.9ms) commit transaction Migrating to AddRequiredToPulitzerPostTypeContentElementType (20160927160910)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "pulitzer_post_type_content_element_types" ADD "required" boolean DEFAULT 'false' SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160927160910"]]  (18.0ms) commit transaction Migrating to AddMetadataToVersion (20170123180323)  (0.1ms) begin transaction  (0.1ms) rollback transaction