Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-08-16 20:42:39 -0400 ActionController::RoutingError (No route matches [GET] "/"): actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.9ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.5ms) select sqlite_version(*)  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Migrating to DeviseCreateAdminUsers (20130817004304)  (0.0ms) begin transaction  (0.5ms) CREATE TABLE "admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.1ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token") AdminUser Exists (0.1ms) SELECT 1 AS one FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1 Binary data inserted for `string` type on column `encrypted_password` SQL (3.3ms) INSERT INTO "admin_users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Sat, 17 Aug 2013 00:43:13 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "admin@example.com"], ["encrypted_password", "$2a$10$sqeJH7o7voGSoshKr6IHAubhhMrqEA.LYv5/5Ji/HZNa6YaymhCVi"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Sat, 17 Aug 2013 00:43:13 UTC +00:00]]  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130817004304')  (0.8ms) commit transaction Migrating to CreateAdminNotes (20130817004306)  (0.0ms) begin transaction  (0.4ms) CREATE TABLE "admin_notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "admin_user_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "admin_notes" ("resource_type", "resource_id")  (0.1ms) CREATE INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id" ON "admin_notes" ("admin_user_type", "admin_user_id")  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130817004306')  (0.7ms) commit transaction Migrating to MoveAdminNotesToComments (20130817004307)  (0.0ms) begin transaction  (0.6ms) DROP INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id"  (0.8ms) ALTER TABLE "admin_notes" RENAME TO "active_admin_comments"  (0.4ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")  (0.0ms) SELECT * FROM "active_admin_comments"  (0.8ms) DROP TABLE "active_admin_comments"  (0.1ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (0.0ms) SELECT * FROM "altered_active_admin_comments"  (0.3ms) DROP TABLE "altered_active_admin_comments"  (0.1ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")  (0.0ms) SELECT * FROM "active_admin_comments"  (0.1ms) DROP TABLE "active_admin_comments"  (0.1ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (0.0ms) SELECT * FROM "altered_active_admin_comments"  (0.1ms) DROP TABLE "altered_active_admin_comments"  (0.5ms) ALTER TABLE "active_admin_comments" ADD "namespace" varchar(255)  (0.1ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.1ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")  (0.0ms) UPDATE active_admin_comments SET namespace='admin'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130817004307')  (1.2ms) commit transaction  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/dashboard" for 127.0.0.1 at 2013-08-16 20:43:45 -0400 ActionController::RoutingError (No route matches [GET] "/dashboard"): actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms) Started GET "/" for 127.0.0.1 at 2013-08-16 20:43:46 -0400 ActionController::RoutingError (uninitialized constant DashboardController): activesupport (3.2.14) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__4539222451028550278__call__2660616061032781091__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms) Started GET "/" for 127.0.0.1 at 2013-08-16 20:43:50 -0400 ActionController::RoutingError (uninitialized constant DashboardController): activesupport (3.2.14) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__4539222451028550278__call__2660616061032781091__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-08-16 20:45:08 -0400 ActionController::RoutingError (uninitialized constant DashboardController): activesupport (3.2.14) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3320224669376094445__call__3592767945181266977__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms) Started GET "/admin/" for 127.0.0.1 at 2013-08-16 20:45:47 -0400 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 1ms Started GET "/admin/login" for 127.0.0.1 at 2013-08-16 20:45:47 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.4ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (106.8ms) Compiled active_admin.css (1478ms) (pid 79229) Compiled active_admin/print.css (70ms) (pid 79229) Completed 500 Internal Server Error in 1745ms ActionView::Template::Error (couldn't find file 'jquery-ui' (in /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/assets/javascripts/active_admin/base.js:2)): 9: <%= stylesheet_link_tag style.path, style.options.dup %> 10: <% end %> 11: <% ActiveAdmin.application.javascripts.each do |path| %> 12: <%= javascript_include_tag path %> 13: <% end %> 14: 15: <%= csrf_meta_tag %> sprockets (2.2.2) lib/sprockets/context.rb:102:in `resolve' sprockets (2.2.2) lib/sprockets/context.rb:142:in `require_asset' sprockets (2.2.2) lib/sprockets/directive_processor.rb:215:in `process_require_directive' sprockets (2.2.2) lib/sprockets/directive_processor.rb:165:in `block in process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `each' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:97:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate' sprockets (2.2.2) lib/sprockets/context.rb:190:in `each' sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate' sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:252:in `new' sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset' sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `collect' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:12:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb__3132306098139157198_70190021250680' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `each' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb__3132306098139157198_70190021250680' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' devise (3.0.2) app/controllers/devise/sessions_controller.rb:10:in `new' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__134288449592511942__process_action__2794380982990844489__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:43:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3320224669376094445__call__3592767945181266977__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms) Started GET "/admin/login" for 127.0.0.1 at 2013-08-16 20:46:03 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (0.4ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (81.3ms) Completed 500 Internal Server Error in 92ms ActionView::Template::Error (couldn't find file 'jquery-ui' (in /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/assets/javascripts/active_admin/base.js:2)): 9: <%= stylesheet_link_tag style.path, style.options.dup %> 10: <% end %> 11: <% ActiveAdmin.application.javascripts.each do |path| %> 12: <%= javascript_include_tag path %> 13: <% end %> 14: 15: <%= csrf_meta_tag %> sprockets (2.2.2) lib/sprockets/context.rb:102:in `resolve' sprockets (2.2.2) lib/sprockets/context.rb:142:in `require_asset' sprockets (2.2.2) lib/sprockets/directive_processor.rb:215:in `process_require_directive' sprockets (2.2.2) lib/sprockets/directive_processor.rb:165:in `block in process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `each' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:97:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate' sprockets (2.2.2) lib/sprockets/context.rb:190:in `each' sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate' sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:252:in `new' sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset' sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `collect' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:12:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb__3132306098139157198_70190021250680' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `each' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb__3132306098139157198_70190021250680' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' devise (3.0.2) app/controllers/devise/sessions_controller.rb:10:in `new' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__134288449592511942__process_action__2794380982990844489__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:43:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3320224669376094445__call__3592767945181266977__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms) Connecting to database specified by database.yml Started GET "/admin/login" for 127.0.0.1 at 2013-08-16 20:46:51 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (163.8ms) Completed 500 Internal Server Error in 203ms ActionView::Template::Error (couldn't find file 'jquery-ui' (in /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/assets/javascripts/active_admin/base.js:2)): 9: <%= stylesheet_link_tag style.path, style.options.dup %> 10: <% end %> 11: <% ActiveAdmin.application.javascripts.each do |path| %> 12: <%= javascript_include_tag path %> 13: <% end %> 14: 15: <%= csrf_meta_tag %> sprockets (2.2.2) lib/sprockets/context.rb:102:in `resolve' sprockets (2.2.2) lib/sprockets/context.rb:142:in `require_asset' sprockets (2.2.2) lib/sprockets/directive_processor.rb:215:in `process_require_directive' sprockets (2.2.2) lib/sprockets/directive_processor.rb:165:in `block in process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `each' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:97:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate' sprockets (2.2.2) lib/sprockets/context.rb:190:in `each' sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate' sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:252:in `new' sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset' sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `collect' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:12:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb___3159393143206627443_70177717606600' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `each' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb___3159393143206627443_70177717606600' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' devise (3.0.2) app/controllers/devise/sessions_controller.rb:10:in `new' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__4477449816438085006__process_action__3499348857394351792__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:43:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3955145258368794645__call__4090111552930985839__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms) Started GET "/admin/login" for 127.0.0.1 at 2013-08-16 20:46:54 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (0.5ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (77.7ms) Completed 500 Internal Server Error in 92ms ActionView::Template::Error (couldn't find file 'jquery-ui' (in /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/assets/javascripts/active_admin/base.js:2)): 9: <%= stylesheet_link_tag style.path, style.options.dup %> 10: <% end %> 11: <% ActiveAdmin.application.javascripts.each do |path| %> 12: <%= javascript_include_tag path %> 13: <% end %> 14: 15: <%= csrf_meta_tag %> sprockets (2.2.2) lib/sprockets/context.rb:102:in `resolve' sprockets (2.2.2) lib/sprockets/context.rb:142:in `require_asset' sprockets (2.2.2) lib/sprockets/directive_processor.rb:215:in `process_require_directive' sprockets (2.2.2) lib/sprockets/directive_processor.rb:165:in `block in process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `each' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:97:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate' sprockets (2.2.2) lib/sprockets/context.rb:190:in `each' sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate' sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:252:in `new' sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset' sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `collect' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:12:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb___3159393143206627443_70177717606600' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `each' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb___3159393143206627443_70177717606600' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' devise (3.0.2) app/controllers/devise/sessions_controller.rb:10:in `new' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__4477449816438085006__process_action__3499348857394351792__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:43:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3955145258368794645__call__4090111552930985839__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms) Connecting to database specified by database.yml Started GET "/admin/login" for 127.0.0.1 at 2013-08-16 20:47:07 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (170.7ms) Completed 500 Internal Server Error in 253ms ActionView::Template::Error (couldn't find file 'jquery-ui' (in /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/assets/javascripts/active_admin/base.js:2)): 9: <%= stylesheet_link_tag style.path, style.options.dup %> 10: <% end %> 11: <% ActiveAdmin.application.javascripts.each do |path| %> 12: <%= javascript_include_tag path %> 13: <% end %> 14: 15: <%= csrf_meta_tag %> sprockets (2.2.2) lib/sprockets/context.rb:102:in `resolve' sprockets (2.2.2) lib/sprockets/context.rb:142:in `require_asset' sprockets (2.2.2) lib/sprockets/directive_processor.rb:215:in `process_require_directive' sprockets (2.2.2) lib/sprockets/directive_processor.rb:165:in `block in process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `each' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:97:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate' sprockets (2.2.2) lib/sprockets/context.rb:190:in `each' sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate' sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:252:in `new' sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset' sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `collect' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:12:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb___3166675098213422294_70112630998680' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `each' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb___3166675098213422294_70112630998680' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' devise (3.0.2) app/controllers/devise/sessions_controller.rb:10:in `new' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__514946329820412507__process_action__2540805127163179849__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:43:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__514579949897756219__call__988608412135600959__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.8ms) Connecting to database specified by database.yml Started GET "/admin/login" for 127.0.0.1 at 2013-08-16 20:48:04 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.2ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (171.0ms) Completed 500 Internal Server Error in 212ms ActionView::Template::Error (couldn't find file 'jquery-ui' (in /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/assets/javascripts/active_admin/base.js:2)): 9: <%= stylesheet_link_tag style.path, style.options.dup %> 10: <% end %> 11: <% ActiveAdmin.application.javascripts.each do |path| %> 12: <%= javascript_include_tag path %> 13: <% end %> 14: 15: <%= csrf_meta_tag %> sprockets (2.2.2) lib/sprockets/context.rb:102:in `resolve' sprockets (2.2.2) lib/sprockets/context.rb:142:in `require_asset' sprockets (2.2.2) lib/sprockets/directive_processor.rb:215:in `process_require_directive' sprockets (2.2.2) lib/sprockets/directive_processor.rb:165:in `block in process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `each' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:97:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate' sprockets (2.2.2) lib/sprockets/context.rb:190:in `each' sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate' sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:252:in `new' sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset' sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `collect' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:12:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb__621145300297101295_70283604998640' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `each' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb__621145300297101295_70283604998640' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' devise (3.0.2) app/controllers/devise/sessions_controller.rb:10:in `new' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1520546262228018873__process_action__2086499709285226827__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:43:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1955278860500308312__call__2047188521977257074__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.8ms) Started GET "/admin/login" for 127.0.0.1 at 2013-08-16 20:48:05 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (0.4ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (79.1ms) Completed 500 Internal Server Error in 91ms ActionView::Template::Error (couldn't find file 'jquery-ui' (in /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/assets/javascripts/active_admin/base.js:2)): 9: <%= stylesheet_link_tag style.path, style.options.dup %> 10: <% end %> 11: <% ActiveAdmin.application.javascripts.each do |path| %> 12: <%= javascript_include_tag path %> 13: <% end %> 14: 15: <%= csrf_meta_tag %> sprockets (2.2.2) lib/sprockets/context.rb:102:in `resolve' sprockets (2.2.2) lib/sprockets/context.rb:142:in `require_asset' sprockets (2.2.2) lib/sprockets/directive_processor.rb:215:in `process_require_directive' sprockets (2.2.2) lib/sprockets/directive_processor.rb:165:in `block in process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `each' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:97:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate' sprockets (2.2.2) lib/sprockets/context.rb:190:in `each' sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate' sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:252:in `new' sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset' sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `collect' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:12:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb__621145300297101295_70283604998640' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `each' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb__621145300297101295_70283604998640' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' devise (3.0.2) app/controllers/devise/sessions_controller.rb:10:in `new' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1520546262228018873__process_action__2086499709285226827__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:43:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1955278860500308312__call__2047188521977257074__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.0ms) Connecting to database specified by database.yml Started GET "/admin/login" for 127.0.0.1 at 2013-08-16 20:49:37 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (158.3ms) Completed 500 Internal Server Error in 199ms ActionView::Template::Error (couldn't find file 'jquery-ui' (in /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/assets/javascripts/active_admin/base.js:2)): 9: <%= stylesheet_link_tag style.path, style.options.dup %> 10: <% end %> 11: <% ActiveAdmin.application.javascripts.each do |path| %> 12: <%= javascript_include_tag path %> 13: <% end %> 14: 15: <%= csrf_meta_tag %> sprockets (2.2.2) lib/sprockets/context.rb:102:in `resolve' sprockets (2.2.2) lib/sprockets/context.rb:142:in `require_asset' sprockets (2.2.2) lib/sprockets/directive_processor.rb:215:in `process_require_directive' sprockets (2.2.2) lib/sprockets/directive_processor.rb:165:in `block in process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `each' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:97:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate' sprockets (2.2.2) lib/sprockets/context.rb:190:in `each' sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate' sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:252:in `new' sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset' sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `collect' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:12:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb__1217275439972107905_70151753591900' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `each' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb__1217275439972107905_70151753591900' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' devise (3.0.2) app/controllers/devise/sessions_controller.rb:10:in `new' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1812565582936801897__process_action__796401794426295737__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:43:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1695531458963417419__call__1592716192351248670__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.2ms) Connecting to database specified by database.yml Started GET "/admin/login" for 127.0.0.1 at 2013-08-16 20:49:54 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (162.5ms) Completed 500 Internal Server Error in 208ms ActionView::Template::Error (couldn't find file 'jquery-ui' (in /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/assets/javascripts/active_admin/base.js:2)): 9: <%= stylesheet_link_tag style.path, style.options.dup %> 10: <% end %> 11: <% ActiveAdmin.application.javascripts.each do |path| %> 12: <%= javascript_include_tag path %> 13: <% end %> 14: 15: <%= csrf_meta_tag %> sprockets (2.2.2) lib/sprockets/context.rb:102:in `resolve' sprockets (2.2.2) lib/sprockets/context.rb:142:in `require_asset' sprockets (2.2.2) lib/sprockets/directive_processor.rb:215:in `process_require_directive' sprockets (2.2.2) lib/sprockets/directive_processor.rb:165:in `block in process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `each' sprockets (2.2.2) lib/sprockets/directive_processor.rb:163:in `process_directives' sprockets (2.2.2) lib/sprockets/directive_processor.rb:97:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate' sprockets (2.2.2) lib/sprockets/context.rb:190:in `each' sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate' sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:249:in `new' sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset' sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection' sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/bundled_asset.rb:16:in `initialize' sprockets (2.2.2) lib/sprockets/base.rb:252:in `new' sprockets (2.2.2) lib/sprockets/base.rb:252:in `build_asset' sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset' sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset' sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset' sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset' sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset' sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset' sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `collect' actionpack (3.2.14) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:12:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb___2566814096345543263_70353653870800' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `each' activeadmin (0.6.0) app/views/layouts/active_admin_logged_out.html.erb:11:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_layouts_active_admin_logged_out_html_erb___2566814096345543263_70353653870800' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:232:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' devise (3.0.2) app/controllers/devise/sessions_controller.rb:10:in `new' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1840526593707496098__process_action__2247032533063501412__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' actionpack (3.2.14) lib/action_dispatch/routing/mapper.rb:43:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3948047582551342581__call__1862227952848120170__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms) Connecting to database specified by database.yml Started GET "/admin/login" for 127.0.0.1 at 2013-08-16 20:52:43 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.4ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (164.2ms) Compiled jquery.js (3ms) (pid 79321) Compiled jquery-ui.js (5ms) (pid 79321) Compiled jquery_ujs.js (0ms) (pid 79321) Compiled active_admin/lib/namespace.js (164ms) (pid 79321) Compiled active_admin/components/jquery.aa.checkbox-toggler.js (131ms) (pid 79321) Compiled active_admin/components/jquery.aa.dropdown-menu.js (164ms) (pid 79321) Compiled active_admin/components/jquery.aa.popover.js (187ms) (pid 79321) Compiled active_admin/components/jquery.aa.table-checkbox-toggler.js (106ms) (pid 79321) Compiled active_admin/pages/application.js (99ms) (pid 79321) Compiled active_admin/pages/batch_actions.js (107ms) (pid 79321) Compiled active_admin/application.js (997ms) (pid 79321) Compiled active_admin/base.js (1106ms) (pid 79321) Compiled active_admin.js (1112ms) (pid 79321) Completed 200 OK in 1329ms (Views: 1315.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin.css - 200 OK (54ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin/print.css - 200 OK (8ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /jquery.js - 200 OK (3ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /jquery-ui.js - 200 OK (3ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin/components/jquery.aa.checkbox-toggler.js - 200 OK (2ms) Started GET "/assets/active_admin/lib/namespace.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin/lib/namespace.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin/components/jquery.aa.dropdown-menu.js - 200 OK (2ms) Started GET "/assets/active_admin/components/jquery.aa.popover.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin/components/jquery.aa.popover.js - 200 OK (2ms) Started GET "/assets/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin/components/jquery.aa.table-checkbox-toggler.js - 200 OK (3ms) Started GET "/assets/active_admin/pages/application.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin/pages/application.js - 200 OK (1ms) Started GET "/assets/active_admin/pages/batch_actions.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin/pages/batch_actions.js - 200 OK (1ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin/application.js - 304 Not Modified (6ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin/base.js - 200 OK (19ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2013-08-16 20:52:45 -0400 Served asset /active_admin.js - 200 OK (52ms) Started POST "/admin/login" for 127.0.0.1 at 2013-08-16 20:53:02 -0400 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"jRfsVjJjyZAVxf4ERqoaNuYDtaJyLvmfSQHQ6lRMR64=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.2ms) begin transaction  (0.7ms) UPDATE "admin_users" SET "last_sign_in_at" = '2013-08-17 00:53:03.005663', "current_sign_in_at" = '2013-08-17 00:53:03.005663', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2013-08-17 00:53:03.007496' WHERE "admin_users"."id" = 1  (1.0ms) commit transaction Redirected to http://localhost:5000/admin Completed 302 Found in 100ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2013-08-16 20:53:03 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (13.7ms) Completed 200 OK in 22ms (Views: 16.5ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 20:53:03 -0400 Served asset /active_admin.js - 200 OK (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:53:03 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:53:03 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/admin/admin_users" for 127.0.0.1 at 2013-08-16 20:53:05 -0400 Processing by Admin::AdminUsersController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.4ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "admin_users" LIMIT 30 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(*) FROM "admin_users" CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "admin_users" LIMIT 30 OFFSET 0) subquery_for_count  AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" ORDER BY "admin_users"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (92.8ms) Completed 200 OK in 102ms (Views: 95.2ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:53:05 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:53:05 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2013-08-16 20:53:05 -0400 Served asset /active_admin/orderable.png - 304 Not Modified (6ms) Connecting to database specified by database.yml Started GET "/admin/admin_users" for 127.0.0.1 at 2013-08-16 20:53:33 -0400 Processing by Admin::AdminUsersController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "admin_users" LIMIT 30 OFFSET 0) subquery_for_count  (0.1ms) SELECT COUNT(*) FROM "admin_users"  CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "admin_users" LIMIT 30 OFFSET 0) subquery_for_count AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" ORDER BY "admin_users"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (184.2ms) Completed 200 OK in 215ms (Views: 190.6ms | ActiveRecord: 1.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:53:33 -0400 Served asset /active_admin.css - 304 Not Modified (11ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:53:33 -0400 Served asset /active_admin/print.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 20:53:33 -0400 Served asset /active_admin.js - 304 Not Modified (54ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2013-08-16 20:53:33 -0400 Served asset /active_admin/orderable.png - 304 Not Modified (2ms) Started GET "/admin/dashboard" for 127.0.0.1 at 2013-08-16 20:53:36 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (10.8ms) Completed 200 OK in 18ms (Views: 14.6ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:53:36 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:53:36 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 20:53:36 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/admin/dashboard" for 127.0.0.1 at 2013-08-16 20:55:46 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (111.7ms) Completed 200 OK in 142ms (Views: 118.6ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:55:47 -0400 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:55:47 -0400 Served asset /active_admin/print.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 20:55:47 -0400 Served asset /active_admin.js - 304 Not Modified (49ms) Started GET "/admin/admin_users" for 127.0.0.1 at 2013-08-16 20:55:48 -0400 Processing by Admin::AdminUsersController#index as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "admin_users" LIMIT 30 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(*) FROM "admin_users" CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "admin_users" LIMIT 30 OFFSET 0) subquery_for_count  AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" ORDER BY "admin_users"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (53.9ms) Completed 200 OK in 64ms (Views: 56.8ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 20:55:48 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:55:48 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:55:48 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2013-08-16 20:55:48 -0400 Served asset /active_admin/orderable.png - 304 Not Modified (2ms) Started GET "/admin/dashboard" for 127.0.0.1 at 2013-08-16 20:55:49 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (10.1ms) Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:55:49 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 20:55:49 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:55:49 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to DeviseCreateAdminUsers (20130817004304) Migrating to CreateAdminNotes (20130817004306) Migrating to MoveAdminNotesToComments (20130817004307) Migrating to CreatePosts (20130817005638)  (0.1ms) select sqlite_version(*)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" text NOT NULL, "status" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130817005638')  (2.0ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml state_machine(method) Started GET "/admin/dashboard" for 127.0.0.1 at 2013-08-16 20:57:50 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (134.7ms) Completed 200 OK in 163ms (Views: 141.5ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:57:50 -0400 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:57:50 -0400 Served asset /active_admin/print.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 20:57:50 -0400 Served asset /active_admin.js - 304 Not Modified (52ms) Started GET "/admin/posts" for 127.0.0.1 at 2013-08-16 20:57:51 -0400 Processing by Admin::PostsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" LIMIT 30 OFFSET 0) subquery_for_count  Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (124.3ms) Completed 200 OK in 133ms (Views: 126.6ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:57:51 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 20:57:51 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:57:51 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2013-08-16 20:57:51 -0400 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (4ms) Started GET "/admin/posts/new" for 127.0.0.1 at 2013-08-16 20:57:53 -0400 Processing by Admin::PostsController#new as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/new.html.arb (55.3ms) Completed 200 OK in 69ms (Views: 58.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:57:53 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 20:57:53 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:57:53 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started POST "/admin/posts" for 127.0.0.1 at 2013-08-16 20:57:58 -0400 Processing by Admin::PostsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vibur97r9I7jfYL4vJWIODssw/K+tvFfWKv6jJE8VFs=", "post"=>{"title"=>"First Post", "body"=>"asdf", "status"=>"asdf"}, "commit"=>"Create Post"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (4.0ms) INSERT INTO "posts" ("body", "created_at", "status", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["body", "asdf"], ["created_at", Sat, 17 Aug 2013 00:57:58 UTC +00:00], ["status", "asdf"], ["title", "First Post"], ["updated_at", Sat, 17 Aug 2013 00:57:58 UTC +00:00]]  (1.2ms) commit transaction Redirected to http://localhost:5000/admin/posts/1 Completed 302 Found in 22ms (ActiveRecord: 0.0ms) Started GET "/admin/posts/1" for 127.0.0.1 at 2013-08-16 20:57:58 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (105.8ms) Completed 200 OK in 111ms (Views: 107.0ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 20:57:58 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 20:57:58 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 20:57:58 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/admin/posts/1" for 127.0.0.1 at 2013-08-16 21:02:51 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (181.2ms) Completed 200 OK in 214ms (Views: 186.9ms | ActiveRecord: 1.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:02:51 -0400 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:02:51 -0400 Served asset /active_admin/print.css - 304 Not Modified (3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:02:51 -0400 Served asset /active_admin.js - 304 Not Modified (48ms) Started GET "/admin/posts/1" for 127.0.0.1 at 2013-08-16 21:02:54 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]  (0.3ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (42.0ms) Completed 200 OK in 47ms (Views: 43.6ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:02:54 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:02:54 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:02:54 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/admin/posts/1/edit" for 127.0.0.1 at 2013-08-16 21:08:01 -0400 Processing by Admin::PostsController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/edit.html.arb (79.0ms) Completed 200 OK in 113ms (Views: 80.7ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:01 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:01 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:08:01 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/posts/1/edit" for 127.0.0.1 at 2013-08-16 21:08:13 -0400 Processing by Admin::PostsController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/edit.html.arb (46.8ms) Completed 200 OK in 120ms (Views: 48.8ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:13 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:13 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:08:13 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/posts/1/edit" for 127.0.0.1 at 2013-08-16 21:08:20 -0400 Processing by Admin::PostsController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/edit.html.arb (76.6ms) Completed 200 OK in 108ms (Views: 78.3ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:21 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:21 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:08:21 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/posts/1/edit" for 127.0.0.1 at 2013-08-16 21:08:24 -0400 Processing by Admin::PostsController#edit as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/edit.html.arb (41.1ms) Completed 200 OK in 74ms (Views: 42.8ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:08:24 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:24 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:24 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started PUT "/admin/posts/1" for 127.0.0.1 at 2013-08-16 21:08:33 -0400 Processing by Admin::PostsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vibur97r9I7jfYL4vJWIODssw/K+tvFfWKv6jJE8VFs=", "post"=>{"title"=>"First Post", "body"=>"Here"}, "commit"=>"Update Post", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction Post Exists (0.2ms) SELECT 1 AS one FROM "posts" WHERE ("posts"."title" = 'First Post' AND "posts"."id" != 1) LIMIT 1  (0.1ms) rollback transaction Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/edit.html.arb (40.0ms) Completed 200 OK in 103ms (Views: 42.0ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:33 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:33 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:08:33 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started PUT "/admin/posts/1" for 127.0.0.1 at 2013-08-16 21:08:36 -0400 Processing by Admin::PostsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vibur97r9I7jfYL4vJWIODssw/K+tvFfWKv6jJE8VFs=", "post"=>{"title"=>"First Post", "body"=>"Here"}, "commit"=>"Update Post", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]  (0.0ms) begin transaction Post Exists (0.1ms) SELECT 1 AS one FROM "posts" WHERE ("posts"."title" = 'First Post' AND "posts"."id" != 1) LIMIT 1  (0.0ms) rollback transaction Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/edit.html.arb (43.6ms) Completed 200 OK in 49ms (Views: 45.1ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:08:36 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:36 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:36 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/admin/posts/1" for 127.0.0.1 at 2013-08-16 21:08:40 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (92.6ms) Completed 200 OK in 98ms (Views: 94.1ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:40 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:08:40 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:40 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started DELETE "/admin/posts/1" for 127.0.0.1 at 2013-08-16 21:08:43 -0400 Processing by Admin::PostsController#destroy as HTML Parameters: {"authenticity_token"=>"Vibur97r9I7jfYL4vJWIODssw/K+tvFfWKv6jJE8VFs=", "id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) begin transaction SQL (0.4ms) DELETE FROM "posts" WHERE "posts"."id" = ? [["id", 1]]  (2.3ms) commit transaction Redirected to http://localhost:5000/admin/posts Completed 302 Found in 21ms (ActiveRecord: 0.0ms) Started GET "/admin/posts" for 127.0.0.1 at 2013-08-16 21:08:43 -0400 Processing by Admin::PostsController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" LIMIT 30 OFFSET 0) subquery_for_count  Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (126.1ms) Completed 200 OK in 132ms (Views: 127.8ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:43 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:43 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:08:43 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2013-08-16 21:08:43 -0400 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (1ms) Started GET "/admin/posts/new" for 127.0.0.1 at 2013-08-16 21:08:44 -0400 Processing by Admin::PostsController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/new.html.arb (45.4ms) Completed 200 OK in 50ms (Views: 47.3ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:44 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:44 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:08:44 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/posts" for 127.0.0.1 at 2013-08-16 21:08:48 -0400 Processing by Admin::PostsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vibur97r9I7jfYL4vJWIODssw/K+tvFfWKv6jJE8VFs=", "post"=>{"title"=>"Some Post", "body"=>"asdf"}, "commit"=>"Create Post"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction Post Exists (0.1ms) SELECT 1 AS one FROM "posts" WHERE "posts"."title" = 'Some Post' LIMIT 1 SQL (0.7ms) INSERT INTO "posts" ("body", "created_at", "status", "title", "updated_at") VALUES (?, ?, ?, ?, ?) [["body", "asdf"], ["created_at", Sat, 17 Aug 2013 01:08:48 UTC +00:00], ["status", "draft"], ["title", "Some Post"], ["updated_at", Sat, 17 Aug 2013 01:08:48 UTC +00:00]]  (1.1ms) commit transaction Redirected to http://localhost:5000/admin/posts/2 Completed 302 Found in 18ms (ActiveRecord: 0.0ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:08:48 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (97.4ms) Completed 200 OK in 101ms (Views: 98.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:48 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:08:48 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:08:48 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:15:24 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (141.4ms) Completed 500 Internal Server Error in 177ms ActionView::Template::Error (undefined method `can_method?' for #): 1: insert_tag renderer_for(:show) activemodel (3.2.14) lib/active_model/attribute_methods.rb:407:in `method_missing' activerecord (3.2.14) lib/active_record/attribute_methods.rb:149:in `method_missing' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:10:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__3362229605635881654_70301817602660' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__3362229605635881654_70301817602660' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1860385529409015495__process_action__556420371912746610__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1922081872062006717__call__1476605054926145173__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.3ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:15:51 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (56.6ms) Completed 500 Internal Server Error in 88ms ActionView::Template::Error (protected method `action_to_permission' called for #): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:10:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__3362229605635881654_70301817602660' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__3362229605635881654_70301817602660' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1860385529409015495__process_action__556420371912746610__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1922081872062006717__call__1476605054926145173__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.2ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:18:00 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (135.1ms) Completed 500 Internal Server Error in 173ms ActionView::Template::Error (protected method `action_to_permission' called for #): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:10:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__622351714623790855_70198649535020' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__622351714623790855_70198649535020' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1822676213217939969__process_action__2712200045299773319__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2210266258130885353__call__3756163490776536236__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:18:01 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (20.0ms) Completed 500 Internal Server Error in 24ms ActionView::Template::Error (protected method `action_to_permission' called for #): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:10:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__622351714623790855_70198649535020' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__622351714623790855_70198649535020' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1822676213217939969__process_action__2712200045299773319__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2210266258130885353__call__3756163490776536236__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.8ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:18:23 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (134.1ms) Completed 500 Internal Server Error in 170ms ActionView::Template::Error (undefined method `titleize' for :peer_review:Symbol): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:11:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___545202813415149038_70195786111580' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___545202813415149038_70195786111580' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__2389321438144995048__process_action__3236386062498429655__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2299823968518652139__call__3751024092502485176__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:18:34 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (14.0ms) Completed 500 Internal Server Error in 18ms ActionView::Template::Error (undefined method `titleize' for :peer_review:Symbol): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:11:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___545202813415149038_70195786111580' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___545202813415149038_70195786111580' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__2389321438144995048__process_action__3236386062498429655__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2299823968518652139__call__3751024092502485176__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:18:40 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (235.6ms) Completed 200 OK in 272ms (Views: 240.6ms | ActiveRecord: 1.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:18:40 -0400 Served asset /active_admin.css - 304 Not Modified (11ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:18:40 -0400 Served asset /active_admin/print.css - 304 Not Modified (5ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:18:40 -0400 Served asset /active_admin.js - 304 Not Modified (59ms) Started PUT "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:18:42 -0400 Processing by Admin::PostsController#update as HTML Parameters: {"authenticity_token"=>"Vibur97r9I7jfYL4vJWIODssw/K+tvFfWKv6jJE8VFs=", "id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.1ms) begin transaction Post Exists (0.1ms) SELECT 1 AS one FROM "posts" WHERE ("posts"."title" = 'Some Post' AND "posts"."id" != 2) LIMIT 1  (0.0ms) commit transaction Redirected to http://localhost:5000/admin/posts/2 Completed 302 Found in 17ms (ActiveRecord: 0.0ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:18:42 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (42.5ms) Completed 200 OK in 46ms (Views: 44.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:18:42 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:18:42 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:18:42 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:31:06 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (2776.1ms) Completed 500 Internal Server Error in 2811ms ActionView::Template::Error (undefined method `route_instance_path' for #): 1: insert_tag renderer_for(:show) arbre (1.0.1) lib/arbre/element.rb:177:in `method_missing' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:12:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__3634377986982927664_70337472223240' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__3634377986982927664_70337472223240' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1098307961332847408__process_action__4344936500537016142__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2199071999060133718__call__4603545773698575949__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.1ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:31:30 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (1664.9ms) Completed 500 Internal Server Error in 1670ms ActionView::Template::Error (undefined method `route_instance_path' for #): 1: insert_tag renderer_for(:show) arbre (1.0.1) lib/arbre/element.rb:177:in `method_missing' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:12:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__3634377986982927664_70337472223240' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__3634377986982927664_70337472223240' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1098307961332847408__process_action__4344936500537016142__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2199071999060133718__call__4603545773698575949__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:31:44 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (135.8ms) Completed 500 Internal Server Error in 171ms ActionView::Template::Error (undefined method `<<' for nil:NilClass): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:12:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__407162335242734769_70201323969120' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__407162335242734769_70201323969120' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__2874749147739733615__process_action__233910782787168936__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1013344519824392433__call__2694150440968095254__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:31:54 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (11.5ms) Completed 500 Internal Server Error in 15ms ActionView::Template::Error (undefined method `<<' for nil:NilClass): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:12:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__407162335242734769_70201323969120' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__407162335242734769_70201323969120' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__2874749147739733615__process_action__233910782787168936__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1013344519824392433__call__2694150440968095254__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:32:01 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (213.2ms) Completed 200 OK in 247ms (Views: 218.0ms | ActiveRecord: 1.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:32:02 -0400 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:32:02 -0400 Served asset /active_admin.js - 304 Not Modified (58ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:32:02 -0400 Served asset /active_admin/print.css - 304 Not Modified (2ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:32:28 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (143.3ms) Completed 500 Internal Server Error in 178ms ActionView::Template::Error (undefined method `<<' for nil:NilClass): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:13:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___3366961579468129133_70307452402220' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___3366961579468129133_70307452402220' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1790468835670846854__process_action__2668605108632237459__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3346414276388636797__call__941013371792542444__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:34:03 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (384005.0ms) Completed 500 Internal Server Error in 384082ms ActionView::Template::Error (undefined method `<<' for nil:NilClass): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:14:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___663237513912356143_70359340918240' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___663237513912356143_70359340918240' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__3026982527436368558__process_action__2343966111443862217__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1080501399766941103__call__4348869429948957825__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.1ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:40:37 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (189.7ms) Completed 200 OK in 265ms (Views: 195.2ms | ActiveRecord: 1.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-16 21:40:38 -0400 Served asset /active_admin.css - 304 Not Modified (11ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-16 21:40:38 -0400 Served asset /active_admin/print.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-16 21:40:38 -0400 Served asset /active_admin.js - 304 Not Modified (71ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:51:00 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (2768.2ms) Completed 500 Internal Server Error in 2845ms ActionView::Template::Error (undefined method `route_instance_state_machine_path' for #): 1: insert_tag renderer_for(:show) arbre (1.0.1) lib/arbre/element.rb:177:in `method_missing' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:15:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__4447635515875433094_70161719884960' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__4447635515875433094_70161719884960' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__2579539554610457951__process_action__2096596236320130222__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1618412978286267971__call__2815767983001892631__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.3ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:52:40 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (112.2ms) Completed 500 Internal Server Error in 191ms ActionView::Template::Error (wrong number of arguments (1 for 0)): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `initialize' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `new' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `route_instance_state_machine_path' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:14:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___4222303934047035773_70212211858880' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___4222303934047035773_70212211858880' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__4354405745977317270__process_action__3033126140478039454__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1527574352199330012__call__2531993813554275349__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:53:02 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (111.8ms) Completed 500 Internal Server Error in 214ms ActionView::Template::Error (wrong number of arguments (1 for 0)): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `initialize' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `new' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `route_instance_state_machine_path' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:14:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__2197567958176048115_70308274904480' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__2197567958176048115_70308274904480' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__4251926987695422851__process_action__34322114335414149__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3668325022698848112__call__3390577973030235404__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:55:34 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (97.3ms) Completed 500 Internal Server Error in 166ms ActionView::Template::Error (wrong number of arguments (1 for 0)): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `initialize' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `new' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `route_instance_state_machine_path' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:14:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___2895309306509739341_70116812512380' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___2895309306509739341_70116812512380' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__3376825419222031873__process_action__4265411664175128337__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2206796160674866311__call__767830969715972370__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-16 21:56:29 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (112.0ms) Completed 500 Internal Server Error in 190ms ActionView::Template::Error (wrong number of arguments (1 for 0)): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `initialize' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `new' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `route_instance_state_machine_path' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:14:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__670472310084683192_70210501852920' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__670472310084683192_70210501852920' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__2681277720998965767__process_action__1461605919444118742__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1111981611727957855__call__1149833309881899719__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.6ms) Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-08-28 18:18:24 -0400 ActionController::RoutingError (uninitialized constant DashboardController): activesupport (3.2.14) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2144184029862728612__call__4189922393079480020__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.8ms) Started GET "/admin/" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 2ms Started GET "/admin/login" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.5ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (113.0ms) Completed 200 OK in 221ms (Views: 207.2ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin.css - 304 Not Modified (12ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /jquery.js - 200 OK (45ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /jquery-ui.js - 200 OK (3ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin/print.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/lib/namespace.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin/lib/namespace.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin/components/jquery.aa.checkbox-toggler.js - 200 OK (1ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/components/jquery.aa.popover.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin/components/jquery.aa.popover.js - 304 Not Modified (7ms) Started GET "/assets/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin/components/jquery.aa.table-checkbox-toggler.js - 200 OK (1ms) Started GET "/assets/active_admin/pages/application.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin/pages/application.js - 200 OK (1ms) Started GET "/assets/active_admin/pages/batch_actions.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin/pages/batch_actions.js - 200 OK (1ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin/application.js - 304 Not Modified (6ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin/base.js - 200 OK (62ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2013-08-28 18:18:31 -0400 Served asset /active_admin.js - 304 Not Modified (12ms) Started POST "/admin/login" for 127.0.0.1 at 2013-08-28 18:18:38 -0400 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"I6TjYWNR1zjj3855KqiL0eeXBu7bqbhbRJKF1B3OGyc=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.8ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.4ms) UPDATE "admin_users" SET "current_sign_in_at" = '2013-08-28 22:18:38.120210', "sign_in_count" = 2, "updated_at" = '2013-08-28 22:18:38.124726' WHERE "admin_users"."id" = 1  (0.6ms) commit transaction Redirected to http://localhost:5000/admin Completed 302 Found in 103ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2013-08-28 18:18:38 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (14.4ms) Completed 200 OK in 27ms (Views: 20.7ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 18:18:38 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 18:18:38 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 18:18:38 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/admin/posts" for 127.0.0.1 at 2013-08-28 18:18:41 -0400 Processing by Admin::PostsController#index as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.8ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" LIMIT 30 OFFSET 0) subquery_for_count   (0.2ms) SELECT COUNT(*) FROM "posts" CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" LIMIT 30 OFFSET 0) subquery_for_count  Post Load (0.2ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (159.1ms) Completed 200 OK in 172ms (Views: 160.8ms | ActiveRecord: 1.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 18:18:41 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 18:18:41 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 18:18:41 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-28 18:18:43 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (14.2ms) Completed 500 Internal Server Error in 23ms ActionView::Template::Error (wrong number of arguments (1 for 0)): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `initialize' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `new' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:6:in `route_instance_state_machine_path' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:14:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___3650980394562414570_70303370133200' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___3650980394562414570_70303370133200' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1350687639071263882__process_action__470602774467115581__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2144184029862728612__call__4189922393079480020__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.4ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-28 19:45:14 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (412030.9ms) Completed 500 Internal Server Error in 412109ms ActionView::Template::Error (undefined method `resource_path' for #): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:17:in `route_instance_state_machine_path' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:13:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___2265626771740858964_70142028656340' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___2265626771740858964_70142028656340' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__196023872085927864__process_action__2285563665038519427__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2693458320127070367__call__879677119613817901__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-28 19:52:10 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (4089.3ms) Completed 500 Internal Server Error in 4095ms ActionView::Template::Error (undefined method `resource_path' for #): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:17:in `route_instance_state_machine_path' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:13:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___2265626771740858964_70142028656340' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb___2265626771740858964_70142028656340' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__196023872085927864__process_action__2285563665038519427__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2693458320127070367__call__879677119613817901__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.2ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-28 19:52:23 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (20882.8ms) Completed 401 Unauthorized in 20962ms Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-28 19:54:18 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (85539.8ms) Completed 401 Unauthorized in 85615ms Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-28 19:55:48 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (78367.5ms) Completed 500 Internal Server Error in 78447ms ActionView::Template::Error (undefined method `resource_path' for #): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/routes.rb:17:in `route_instance_state_machine_path' /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:14:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__876343215504822128_70188014366600' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__876343215504822128_70188014366600' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__1771559335844831522__process_action__3906266216003271647__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2555365359506097917__call__3856068690843727014__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.3ms) Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-28 19:57:12 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (199464.5ms) Completed 500 Internal Server Error in 199539ms ActionView::Template::Error (undefined method `route_instance_state_machine_path' for #): 1: insert_tag renderer_for(:show) /Users/matt/Desktop/Projects/active_admin-state_machine/lib/active_admin/state_machine/dsl.rb:14:in `block in state_action' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `instance_eval' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:9:in `block (2 levels) in build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `span' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:8:in `block in build' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `each' activeadmin (0.6.0) lib/active_admin/views/action_items.rb:7:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:48:in `build_action_items' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:24:in `block in build_titlebar_right' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:23:in `build_titlebar_right' activeadmin (0.6.0) lib/active_admin/views/title_bar.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:53:in `build_title_bar' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:41:in `block (2 levels) in build_page' arbre (1.0.1) lib/arbre/element/builder_methods.rb:31:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:14:in `div' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:39:in `block in build_page' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:49:in `with_current_arbre_element' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:38:in `build_page' activeadmin (0.6.0) lib/active_admin/views/pages/base.rb:10:in `build' arbre (1.0.1) lib/arbre/element/builder_methods.rb:30:in `block in build_tag' arbre (1.0.1) lib/arbre/context.rb:92:in `with_current_arbre_element' arbre (1.0.1) lib/arbre/element/builder_methods.rb:26:in `build_tag' arbre (1.0.1) lib/arbre/element/builder_methods.rb:39:in `insert_tag' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `block in ___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__2823086043824143485_70155275360640' arbre (1.0.1) lib/arbre/context.rb:45:in `instance_eval' arbre (1.0.1) lib/arbre/context.rb:45:in `initialize' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `new' activeadmin (0.6.0) app/views/active_admin/resource/show.html.arb:1:in `___sers_matt__rvm_gems_ruby_______p____gems_activeadmin_______app_views_active_admin_resource_show_html_arb__2823086043824143485_70155275360640' actionpack (3.2.14) lib/action_view/template.rb:145:in `block in render' activesupport (3.2.14) lib/active_support/notifications.rb:125:in `instrument' actionpack (3.2.14) lib/action_view/template.rb:143:in `render' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:48:in `block (2 levels) in render_template' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:47:in `block in render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:55:in `render_with_layout' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:46:in `render_template' actionpack (3.2.14) lib/action_view/renderer/template_renderer.rb:19:in `render' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:36:in `render_template' actionpack (3.2.14) lib/action_view/renderer/renderer.rb:17:in `render' actionpack (3.2.14) lib/abstract_controller/rendering.rb:110:in `_render_template' actionpack (3.2.14) lib/action_controller/metal/streaming.rb:225:in `_render_template' actionpack (3.2.14) lib/abstract_controller/rendering.rb:103:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/renderers.rb:28:in `render_to_body' actionpack (3.2.14) lib/action_controller/metal/compatibility.rb:50:in `render_to_body' actionpack (3.2.14) lib/abstract_controller/rendering.rb:88:in `render' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `block in ms' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime' activesupport (3.2.14) lib/active_support/core_ext/benchmark.rb:5:in `ms' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:40:in `block in render' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:39:in `render' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:26:in `block (2 levels) in show' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `call' actionpack (3.2.14) lib/action_controller/metal/responder.rb:230:in `default_render' actionpack (3.2.14) lib/action_controller/metal/responder.rb:160:in `to_html' responders (1.0.0.rc) lib/responders/flash_responder.rb:104:in `to_html' actionpack (3.2.14) lib/action_controller/metal/responder.rb:153:in `respond' actionpack (3.2.14) lib/action_controller/metal/responder.rb:146:in `call' actionpack (3.2.14) lib/action_controller/metal/mime_responds.rb:239:in `respond_with' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__3425872580471629916__process_action__3824153389952398978__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3100939606978496672__call__1825458466425910993__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-28 20:01:01 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (200.8ms) Completed 200 OK in 273ms (Views: 206.7ms | ActiveRecord: 1.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:01:02 -0400 Served asset /active_admin.css - 304 Not Modified (56ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:01:02 -0400 Served asset /active_admin/print.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:01:02 -0400 Served asset /active_admin.js - 304 Not Modified (14ms) Started PUT "/admin/posts/2/peer_review" for 127.0.0.1 at 2013-08-28 20:01:07 -0400 Processing by Admin::PostsController#peer_review as HTML Parameters: {"authenticity_token"=>"HG4IElaLC2t4HjRU8CJP9MdqxcPBaDBdntIJArSMz6g=", "id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.1ms) begin transaction Post Exists (0.1ms) SELECT 1 AS one FROM "posts" WHERE ("posts"."title" = 'Some Post' AND "posts"."id" != 2) LIMIT 1  (0.3ms) UPDATE "posts" SET "status" = 'reviewed', "updated_at" = '2013-08-29 00:01:07.041651' WHERE "posts"."id" = 2  (2.3ms) commit transaction Redirected to http://localhost:5000/admin/posts/2 Completed 302 Found in 17ms (ActiveRecord: 3.1ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-28 20:01:07 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (81.2ms) Completed 200 OK in 85ms (Views: 82.9ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:01:07 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:01:07 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:01:07 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started PUT "/admin/posts/2/publish" for 127.0.0.1 at 2013-08-28 20:01:37 -0400 Processing by Admin::PostsController#publish as HTML Parameters: {"authenticity_token"=>"HG4IElaLC2t4HjRU8CJP9MdqxcPBaDBdntIJArSMz6g=", "id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.0ms) begin transaction Post Exists (0.1ms) SELECT 1 AS one FROM "posts" WHERE ("posts"."title" = 'Some Post' AND "posts"."id" != 2) LIMIT 1  (0.3ms) UPDATE "posts" SET "status" = 'published', "updated_at" = '2013-08-29 00:01:37.174827' WHERE "posts"."id" = 2  (2.5ms) commit transaction Redirected to http://localhost:5000/admin/posts/2 Completed 302 Found in 10ms (ActiveRecord: 3.2ms) Started GET "/admin/posts/2" for 127.0.0.1 at 2013-08-28 20:01:37 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"id"=>"2"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '2' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (50.5ms) Completed 200 OK in 54ms (Views: 52.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:01:37 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:01:37 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:01:37 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to DeviseCreateAdminUsers (20130817004304) Migrating to CreateAdminNotes (20130817004306) Migrating to MoveAdminNotesToComments (20130817004307) Migrating to CreatePosts (20130817005638) Migrating to CreateCategories (20130829000200)  (0.1ms) select sqlite_version(*)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) rollback transaction Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to DeviseCreateAdminUsers (20130817004304) Migrating to CreateAdminNotes (20130817004306) Migrating to MoveAdminNotesToComments (20130817004307) Migrating to CreatePosts (20130817005638) Migrating to CreateCategories (20130829000200)  (0.0ms) select sqlite_version(*)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) ALTER TABLE "posts" ADD "category_id" integer  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130829000200')  (2.4ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/admin/" for 127.0.0.1 at 2013-08-28 20:04:54 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (98.8ms) Completed 200 OK in 128ms (Views: 104.5ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:04:54 -0400 Served asset /active_admin.css - 304 Not Modified (10ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:04:54 -0400 Served asset /active_admin/print.css - 304 Not Modified (4ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:04:54 -0400 Served asset /active_admin.js - 304 Not Modified (52ms) Started GET "/admin/categories" for 127.0.0.1 at 2013-08-28 20:04:55 -0400 Processing by Admin::CategoriesController#index as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "categories" LIMIT 30 OFFSET 0) subquery_for_count  Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (72.3ms) Completed 200 OK in 84ms (Views: 75.0ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:04:56 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:04:56 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:04:56 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/categories/new" for 127.0.0.1 at 2013-08-28 20:04:57 -0400 Processing by Admin::CategoriesController#new as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/new.html.arb (75.4ms) Completed 200 OK in 87ms (Views: 78.1ms | ActiveRecord: 0.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:04:58 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:04:58 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:04:58 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/categories" for 127.0.0.1 at 2013-08-28 20:05:00 -0400 Processing by Admin::CategoriesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"HG4IElaLC2t4HjRU8CJP9MdqxcPBaDBdntIJArSMz6g=", "category"=>{"name"=>"First Post"}, "commit"=>"Create Category"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.1ms) begin transaction SQL (3.3ms) INSERT INTO "categories" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 29 Aug 2013 00:05:00 UTC +00:00], ["name", "First Post"], ["updated_at", Thu, 29 Aug 2013 00:05:00 UTC +00:00]]  (0.7ms) commit transaction Redirected to http://localhost:5000/admin/categories/1 Completed 302 Found in 21ms (ActiveRecord: 0.0ms) Started GET "/admin/categories/1" for 127.0.0.1 at 2013-08-28 20:05:00 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Category' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Category' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (55.3ms) Completed 200 OK in 61ms (Views: 56.6ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:05:00 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:05:01 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:05:01 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/admin/categories/1" for 127.0.0.1 at 2013-08-28 20:05:45 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (9.5ms) Completed 500 Internal Server Error in 45ms ActionController::RoutingError (No route matches {:action=>"new", :controller=>"admin/posts"}): app/admin/categories.rb:3:in `block (2 levels) in ' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms) Started GET "/admin/categories/1" for 127.0.0.1 at 2013-08-28 20:05:59 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (2917.8ms) Completed 500 Internal Server Error in 2952ms ActionView::Template::Error (undefined local variable or method `new_admin_category_posts_path' for #): 1: insert_tag renderer_for(:show) app/admin/categories.rb:3:in `block (2 levels) in ' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.3ms) Started GET "/admin/categories/1" for 127.0.0.1 at 2013-08-28 20:06:02 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (1895.1ms) Completed 500 Internal Server Error in 1899ms ActionView::Template::Error (undefined local variable or method `new_admin_category_posts_path' for #): 1: insert_tag renderer_for(:show) app/admin/categories.rb:3:in `block (2 levels) in ' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.6ms) Started GET "/admin/categories/1" for 127.0.0.1 at 2013-08-28 20:06:09 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (1835.9ms) Completed 500 Internal Server Error in 1872ms ActionView::Template::Error (undefined local variable or method `new_admin_categories_post_path' for #): 1: insert_tag renderer_for(:show) app/admin/categories.rb:3:in `block (2 levels) in ' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (58.3ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/admin/categories/1" for 127.0.0.1 at 2013-08-28 20:07:10 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (141.0ms) Completed 500 Internal Server Error in 174ms ActionController::RoutingError (No route matches {:action=>"new", :controller=>"admin/posts"}): app/admin/categories.rb:3:in `block (2 levels) in ' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms) Started GET "/admin/categories/1" for 127.0.0.1 at 2013-08-28 20:07:17 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Category' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Category' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (115.8ms) Completed 200 OK in 147ms (Views: 117.6ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:18 -0400 Served asset /active_admin.css - 304 Not Modified (10ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:07:18 -0400 Served asset /active_admin.js - 304 Not Modified (62ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:18 -0400 Served asset /active_admin/print.css - 304 Not Modified (2ms) Started GET "/admin/categories/1/posts/new" for 127.0.0.1 at 2013-08-28 20:07:20 -0400 Processing by Admin::PostsController#new as HTML Parameters: {"category_id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/new.html.arb (86.2ms) Completed 200 OK in 112ms (Views: 88.1ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:07:20 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:20 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:20 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/admin/categories/1/posts/new" for 127.0.0.1 at 2013-08-28 20:07:27 -0400 Processing by Admin::PostsController#new as HTML Parameters: {"category_id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/new.html.arb (63.2ms) Completed 200 OK in 128ms (Views: 66.1ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:07:27 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:27 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:27 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/admin/categories/1" for 127.0.0.1 at 2013-08-28 20:07:29 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Category' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Category' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (45.9ms) Completed 200 OK in 52ms (Views: 47.8ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:29 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:29 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:07:29 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/categories/1/posts" for 127.0.0.1 at 2013-08-28 20:07:30 -0400 Processing by Admin::PostsController#index as HTML Parameters: {"category_id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" WHERE "posts"."category_id" = 1 LIMIT 30 OFFSET 0) subquery_for_count Category Load (0.3ms) SELECT "categories".* FROM "categories"  Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (153.3ms) Completed 200 OK in 163ms (Views: 154.5ms | ActiveRecord: 1.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:30 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:30 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:07:30 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/categories/1/posts/new" for 127.0.0.1 at 2013-08-28 20:07:33 -0400 Processing by Admin::PostsController#new as HTML Parameters: {"category_id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/new.html.arb (40.5ms) Completed 200 OK in 46ms (Views: 43.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:33 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:33 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:07:33 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/categories/1/posts" for 127.0.0.1 at 2013-08-28 20:07:36 -0400 Processing by Admin::PostsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"HG4IElaLC2t4HjRU8CJP9MdqxcPBaDBdntIJArSMz6g=", "post"=>{"title"=>"asdf", "body"=>"asdf"}, "commit"=>"Create Post", "category_id"=>"1"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) begin transaction Post Exists (0.2ms) SELECT 1 AS one FROM "posts" WHERE "posts"."title" = 'asdf' LIMIT 1 SQL (0.5ms) INSERT INTO "posts" ("body", "category_id", "created_at", "status", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["body", "asdf"], ["category_id", 1], ["created_at", Thu, 29 Aug 2013 00:07:36 UTC +00:00], ["status", "draft"], ["title", "asdf"], ["updated_at", Thu, 29 Aug 2013 00:07:36 UTC +00:00]]  (1.1ms) commit transaction Redirected to http://localhost:5000/admin/categories/1/posts/3 Completed 302 Found in 25ms (ActiveRecord: 0.0ms) Started GET "/admin/categories/1/posts/3" for 127.0.0.1 at 2013-08-28 20:07:36 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"3"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = ? LIMIT 1 [["id", "3"]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (49.3ms) Completed 200 OK in 104ms (Views: 51.1ms | ActiveRecord: 0.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:36 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:36 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:07:36 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started PUT "/admin/categories/1/posts/3/peer_review" for 127.0.0.1 at 2013-08-28 20:07:43 -0400 Processing by Admin::PostsController#peer_review as HTML Parameters: {"authenticity_token"=>"HG4IElaLC2t4HjRU8CJP9MdqxcPBaDBdntIJArSMz6g=", "category_id"=>"1", "id"=>"3"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = ? LIMIT 1 [["id", "3"]]  (0.1ms) begin transaction Post Exists (0.1ms) SELECT 1 AS one FROM "posts" WHERE ("posts"."title" = 'asdf' AND "posts"."id" != 3) LIMIT 1  (0.3ms) UPDATE "posts" SET "status" = 'reviewed', "updated_at" = '2013-08-29 00:07:43.348124' WHERE "posts"."id" = 3  (2.1ms) commit transaction Redirected to http://localhost:5000/admin/categories/1/posts/3 Completed 302 Found in 12ms (ActiveRecord: 2.9ms) Started GET "/admin/categories/1/posts/3" for 127.0.0.1 at 2013-08-28 20:07:43 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"3"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = ? LIMIT 1 [["id", "3"]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.3ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (101.4ms) Completed 200 OK in 106ms (Views: 102.5ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:43 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-28 20:07:43 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-28 20:07:43 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-08-30 15:54:51 -0400 ActionController::RoutingError (uninitialized constant DashboardController): activesupport (3.2.14) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__2218830890378913166__call__3623470570935758447__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.9ms) Started GET "/admin" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 2ms Started GET "/admin/login" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.4ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (117.5ms) Completed 200 OK in 224ms (Views: 211.2ms | ActiveRecord: 0.4ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /jquery.js - 200 OK (43ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /jquery_ujs.js - 200 OK (4ms) Started GET "/assets/active_admin/lib/namespace.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin/lib/namespace.js - 200 OK (1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin.css - 200 OK (8ms) Started GET "/assets/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin/components/jquery.aa.checkbox-toggler.js - 200 OK (2ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /jquery-ui.js - 200 OK (3ms) Started GET "/assets/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin/components/jquery.aa.dropdown-menu.js - 200 OK (1ms) Started GET "/assets/active_admin/components/jquery.aa.popover.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin/components/jquery.aa.popover.js - 200 OK (1ms) Started GET "/assets/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin/components/jquery.aa.table-checkbox-toggler.js - 200 OK (2ms) Started GET "/assets/active_admin/pages/batch_actions.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin/pages/batch_actions.js - 200 OK (2ms) Started GET "/assets/active_admin/pages/application.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin/pages/application.js - 200 OK (2ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin/application.js - 200 OK (7ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin/base.js - 200 OK (10ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin.js - 200 OK (11ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-30 15:54:58 -0400 Served asset /active_admin/print.css - 200 OK (39ms) Started POST "/admin/login" for 127.0.0.1 at 2013-08-30 15:55:05 -0400 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"DZjpxv7LdmXsZD+9N1/08wv6VH3XxRdCMu0raMn6JgY=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.5ms) UPDATE "admin_users" SET "last_sign_in_at" = '2013-08-28 22:18:38.120210', "current_sign_in_at" = '2013-08-30 19:55:05.231336', "sign_in_count" = 3, "updated_at" = '2013-08-30 19:55:05.236704' WHERE "admin_users"."id" = 1  (0.6ms) commit transaction Redirected to http://localhost:5000/admin Completed 302 Found in 112ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2013-08-30 15:55:05 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (9.9ms) Completed 200 OK in 17ms (Views: 13.3ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-30 15:55:05 -0400 Served asset /active_admin.js - 200 OK (0ms) Started GET "/admin/categories" for 127.0.0.1 at 2013-08-30 15:55:08 -0400 Processing by Admin::CategoriesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.5ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "categories" LIMIT 30 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(*) FROM "categories" CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "categories" LIMIT 30 OFFSET 0) subquery_for_count  Category Load (0.2ms) SELECT "categories".* FROM "categories" ORDER BY "categories"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (149.4ms) Completed 200 OK in 160ms (Views: 151.1ms | ActiveRecord: 1.2ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2013-08-30 15:55:08 -0400 Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (3ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2013-08-30 15:55:08 -0400 Served asset /active_admin/orderable.png - 200 OK (2ms) Started GET "/admin/categories/1" for 127.0.0.1 at 2013-08-30 15:55:09 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]]  (0.4ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Category' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Category' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (67.8ms) Completed 200 OK in 77ms (Views: 71.0ms | ActiveRecord: 1.1ms) Started GET "/admin/categories/1/posts" for 127.0.0.1 at 2013-08-30 15:55:10 -0400 Processing by Admin::PostsController#index as HTML Parameters: {"category_id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.5ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" WHERE "posts"."category_id" = 1 LIMIT 30 OFFSET 0) subquery_for_count  (0.2ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."category_id" = 1 CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" WHERE "posts"."category_id" = 1 LIMIT 30 OFFSET 0) subquery_for_count Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 ORDER BY "posts"."id" desc LIMIT 30 OFFSET 0 Category Load (0.1ms) SELECT "categories".* FROM "categories" Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (117.9ms) Completed 200 OK in 196ms (Views: 118.7ms | ActiveRecord: 1.8ms) Started GET "/admin/categories/1/posts/3" for 127.0.0.1 at 2013-08-30 15:55:12 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"3"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = ? LIMIT 1 [["id", "3"]] Category Load (60.8ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (115.2ms) Completed 200 OK in 122ms (Views: 56.0ms | ActiveRecord: 61.4ms) Connecting to database specified by database.yml Started GET "/admin/categories/1/posts/3" for 127.0.0.1 at 2013-08-30 15:56:21 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"3"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = ? LIMIT 1 [["id", "3"]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (207.0ms) Completed 200 OK in 297ms (Views: 212.1ms | ActiveRecord: 2.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-30 15:56:22 -0400 Served asset /active_admin.css - 304 Not Modified (7ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-30 15:56:22 -0400 Served asset /active_admin.js - 304 Not Modified (50ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-30 15:56:22 -0400 Served asset /active_admin/print.css - 304 Not Modified (1ms) Connecting to database specified by database.yml Started GET "/admin/categories/1/posts/3" for 127.0.0.1 at 2013-08-30 15:57:01 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"3"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = ? LIMIT 1 [["id", "3"]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (205.4ms) Completed 200 OK in 299ms (Views: 210.7ms | ActiveRecord: 2.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-30 15:57:01 -0400 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-30 15:57:01 -0400 Served asset /active_admin.js - 304 Not Modified (52ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-30 15:57:01 -0400 Served asset /active_admin/print.css - 304 Not Modified (2ms) Connecting to database specified by database.yml Started GET "/admin/categories/1/posts/3" for 127.0.0.1 at 2013-08-30 16:00:35 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"3"} AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = ? LIMIT 1 [["id", "3"]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (214.1ms) Completed 200 OK in 309ms (Views: 219.3ms | ActiveRecord: 2.0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-08-30 16:00:35 -0400 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-08-30 16:00:35 -0400 Served asset /active_admin.js - 304 Not Modified (59ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-08-30 16:00:36 -0400 Served asset /active_admin/print.css - 304 Not Modified (2ms) Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.7ms) select sqlite_version(*)  (1.2ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "namespace" varchar(255))   (0.8ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")  (0.9ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.9ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (0.9ms) CREATE TABLE "admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (1.1ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.9ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token")  (1.0ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (1.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" text NOT NULL, "status" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "category_id" integer)   (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.1ms) SELECT version FROM "schema_migrations"  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130829000200')  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130817004304')  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130817004306')  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130817004307')  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130817005638') Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.3ms) select sqlite_version(*)  (3.3ms) DROP TABLE "active_admin_comments"  (1.1ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "namespace" varchar(255))  (1.0ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")  (1.0ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.8ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (1.1ms) DROP TABLE "admin_users"  (1.3ms) CREATE TABLE "admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (1.0ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.8ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token")  (0.9ms) DROP TABLE "categories"  (0.7ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (1.0ms) DROP TABLE "posts"  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" text NOT NULL, "status" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "category_id" integer)   (0.1ms) SELECT version FROM "schema_migrations" Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.3ms) select sqlite_version(*)  (2.8ms) DROP TABLE "active_admin_comments"  (1.0ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "namespace" varchar(255))  (0.9ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")  (0.8ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.7ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (1.1ms) DROP TABLE "admin_users"  (1.0ms) CREATE TABLE "admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.8ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.8ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token")  (0.8ms) DROP TABLE "categories"  (0.8ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (1.1ms) DROP TABLE "posts"  (0.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" text NOT NULL, "status" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "category_id" integer)   (0.1ms) SELECT version FROM "schema_migrations" Connecting to database specified by database.yml Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-09-03 19:19:35 -0400 ActionController::RoutingError (uninitialized constant DashboardController): activesupport (3.2.14) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__692759545986137466__call__3281756265280885537__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.1ms) Started GET "/admin/" for 127.0.0.1 at 2013-09-03 19:19:38 -0400 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 2ms Started GET "/admin/login" for 127.0.0.1 at 2013-09-03 19:19:38 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.3ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (75.2ms) Completed 200 OK in 240ms (Views: 177.2ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin.css - 304 Not Modified (9ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin/print.css - 304 Not Modified (2ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /jquery.js - 200 OK (3ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /jquery-ui.js - 200 OK (4ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /jquery_ujs.js - 304 Not Modified (3ms) Started GET "/assets/active_admin/lib/namespace.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin/lib/namespace.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin/components/jquery.aa.checkbox-toggler.js - 200 OK (2ms) Started GET "/assets/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin/components/jquery.aa.dropdown-menu.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/components/jquery.aa.popover.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin/components/jquery.aa.popover.js - 304 Not Modified (2ms) Started GET "/assets/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin/components/jquery.aa.table-checkbox-toggler.js - 200 OK (1ms) Started GET "/assets/active_admin/pages/application.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin/pages/application.js - 200 OK (1ms) Started GET "/assets/active_admin/pages/batch_actions.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin/pages/batch_actions.js - 200 OK (2ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin/application.js - 304 Not Modified (5ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin/base.js - 200 OK (9ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2013-09-03 19:19:39 -0400 Served asset /active_admin.js - 304 Not Modified (68ms) Started POST "/admin/login" for 127.0.0.1 at 2013-09-03 19:19:43 -0400 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rR23B/KzZseGv9HPkXod1q3wg4wD0IL8T8LKuPk8Bj0=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (0.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.1ms) begin transaction  (0.5ms) UPDATE "admin_users" SET "last_sign_in_at" = '2013-08-30 19:55:05.231336', "current_sign_in_at" = '2013-09-03 23:19:43.533802', "sign_in_count" = 4, "updated_at" = '2013-09-03 23:19:43.539063' WHERE "admin_users"."id" = 1  (0.6ms) commit transaction Redirected to http://localhost:5000/admin Completed 302 Found in 100ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:19:43 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Completed 500 Internal Server Error in 8ms LoadError (cannot load such file -- cancan): activesupport (3.2.14) lib/active_support/dependencies.rb:251:in `require' activesupport (3.2.14) lib/active_support/dependencies.rb:251:in `block in require' activesupport (3.2.14) lib/active_support/dependencies.rb:236:in `load_dependency' activesupport (3.2.14) lib/active_support/dependencies.rb:251:in `require' activeadmin (0.6.0) lib/active_admin/cancan_adapter.rb:1:in `' activesupport (3.2.14) lib/active_support/inflector/methods.rb:230:in `const_get' activesupport (3.2.14) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `constantize' activesupport (3.2.14) lib/active_support/dependencies.rb:554:in `get' activesupport (3.2.14) lib/active_support/dependencies.rb:588:in `constantize' activeadmin (0.6.0) lib/active_admin/base_controller/authorization.rb:101:in `active_admin_authorization_adapter' activeadmin (0.6.0) lib/active_admin/base_controller/authorization.rb:93:in `active_admin_authorization' activeadmin (0.6.0) lib/active_admin/base_controller/authorization.rb:57:in `authorized?' activeadmin (0.6.0) lib/active_admin/base_controller/authorization.rb:74:in `authorize!' activeadmin (0.6.0) lib/active_admin/page_controller.rb:25:in `authorize_access!' activesupport (3.2.14) lib/active_support/callbacks.rb:451:in `_run__3480534101166970648__process_action__3909572479904089597__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__692759545986137466__call__3281756265280885537__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.1ms) Connecting to database specified by database.yml Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:20:25 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (104.0ms) Completed 200 OK in 135ms (Views: 111.2ms | ActiveRecord: 0.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-09-03 19:20:26 -0400 Served asset /active_admin.css - 304 Not Modified (8ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-09-03 19:20:26 -0400 Served asset /active_admin.js - 304 Not Modified (18ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-09-03 19:20:26 -0400 Served asset /active_admin/print.css - 304 Not Modified (1ms) Started GET "/admin/categories" for 127.0.0.1 at 2013-09-03 19:20:28 -0400 Processing by Admin::CategoriesController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "categories" LIMIT 30 OFFSET 0) subquery_for_count   (0.1ms) SELECT COUNT(*) FROM "categories" CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "categories" LIMIT 30 OFFSET 0) subquery_for_count  Category Load (0.2ms) SELECT "categories".* FROM "categories" ORDER BY "categories"."id" desc LIMIT 30 OFFSET 0 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (139.8ms) Completed 200 OK in 154ms (Views: 142.8ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-09-03 19:20:29 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-09-03 19:20:29 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-09-03 19:20:29 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2013-09-03 19:20:29 -0400 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (4ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2013-09-03 19:20:29 -0400 Served asset /active_admin/orderable.png - 304 Not Modified (2ms) Started GET "/admin/categories/1" for 127.0.0.1 at 2013-09-03 19:20:31 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]]  (0.1ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Category' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Category' AND "active_admin_comments"."resource_id" = '1' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (117.7ms) Completed 200 OK in 124ms (Views: 119.9ms | ActiveRecord: 0.6ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-09-03 19:20:32 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-09-03 19:20:32 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-09-03 19:20:32 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/categories/1/posts" for 127.0.0.1 at 2013-09-03 19:20:33 -0400 Processing by Admin::PostsController#index as HTML Parameters: {"category_id"=>"1"} AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.1ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" WHERE "posts"."category_id" = 1 LIMIT 30 OFFSET 0) subquery_for_count  (0.1ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."category_id" = 1 CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" WHERE "posts"."category_id" = 1 LIMIT 30 OFFSET 0) subquery_for_count Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 ORDER BY "posts"."id" desc LIMIT 30 OFFSET 0 Category Load (0.1ms) SELECT "categories".* FROM "categories" Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (165.2ms) Completed 200 OK in 184ms (Views: 165.7ms | ActiveRecord: 1.6ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-09-03 19:20:33 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-09-03 19:20:33 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-09-03 19:20:33 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2013-09-03 19:20:33 -0400 Served asset /active_admin/orderable.png - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2013-09-03 19:20:33 -0400 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/categories/1/posts/3" for 127.0.0.1 at 2013-09-03 19:21:12 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"3"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = ? LIMIT 1 [["id", "3"]] Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.2ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' CACHE (0.0ms) SELECT COUNT(*) FROM "active_admin_comments" WHERE "active_admin_comments"."resource_type" = 'Post' AND "active_admin_comments"."resource_id" = '3' AND "active_admin_comments"."namespace" = 'admin' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (52.0ms) Completed 200 OK in 62ms (Views: 53.7ms | ActiveRecord: 1.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-09-03 19:21:12 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-09-03 19:21:12 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-09-03 19:21:12 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Connecting to database specified by database.yml  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.3ms) select sqlite_version(*)  (2.7ms) DROP TABLE "active_admin_comments"  (1.0ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "namespace" varchar(255))  (0.9ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")  (0.8ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.8ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")  (1.1ms) DROP TABLE "admin_users"  (1.1ms) CREATE TABLE "admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.8ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.8ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token")  (0.8ms) DROP TABLE "categories"  (0.7ms) CREATE TABLE "categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (1.0ms) DROP TABLE "posts"  (0.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" text NOT NULL, "status" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "category_id" integer)   (0.1ms) SELECT version FROM "schema_migrations" Started GET "/admin/categories/1/posts/3" for 127.0.0.1 at 2013-09-03 19:58:10 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"3"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "1"]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = ? AND ('t'='f') LIMIT 1 [["id", "3"]] Completed 404 Not Found in 112ms ActiveRecord::RecordNotFound (Couldn't find Post with id=3 [WHERE "posts"."category_id" = 1 AND ('t'='f')]): activerecord (3.2.14) lib/active_record/relation/finder_methods.rb:344:in `find_one' activerecord (3.2.14) lib/active_record/relation/finder_methods.rb:315:in `find_with_ids' activerecord (3.2.14) lib/active_record/relation/finder_methods.rb:107:in `find' activeadmin (0.6.0) lib/active_admin/resource_controller/data_access.rb:113:in `find_resource' activeadmin (0.6.0) lib/active_admin/resource_controller/data_access.rb:89:in `resource' inherited_resources (1.4.1) lib/inherited_resources/actions.rb:13:in `show' activeadmin (0.6.0) lib/active_admin/resource_controller/actions.rb:24:in `show' actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action' activesupport (3.2.14) lib/active_support/callbacks.rb:447:in `_run__4391488261575235374__process_action__3541602278844732669__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action' actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument' activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument' actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action' actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action' activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process' actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process' actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch' actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__455630918879174147__call__4445501906690306192__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.4ms) Started GET "/admin/categories/" for 127.0.0.1 at 2013-09-03 19:58:15 -0400 Processing by Admin::CategoriesController#index as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 5ms (ActiveRecord: 0.3ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:15 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 4ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.1ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 2ms (ActiveRecord: 0.3ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 2ms (ActiveRecord: 0.3ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.1ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.1ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 2ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:58:16 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin Completed 302 Found in 1ms (ActiveRecord: 0.2ms) Started GET "/admin" for 127.0.0.1 at 2013-09-03 19:59:24 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (56.1ms) Completed 200 OK in 86ms (Views: 58.8ms | ActiveRecord: 0.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-09-03 19:59:25 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-09-03 19:59:25 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-09-03 19:59:25 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Connecting to database specified by database.yml Connecting to database specified by database.yml  (4.0ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)   (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to DeviseCreateAdminUsers (20130817004304)  (0.2ms) BEGIN  (4.0ms) CREATE TABLE "admin_users" ("id" serial primary key, "email" character varying(255) DEFAULT '' NOT NULL, "encrypted_password" character varying(255) DEFAULT '' NOT NULL, "reset_password_token" character varying(255), "reset_password_sent_at" timestamp, "remember_created_at" timestamp, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" timestamp, "last_sign_in_at" timestamp, "current_sign_in_ip" character varying(255), "last_sign_in_ip" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)   (0.8ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")  (0.7ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token") AdminUser Exists (0.6ms) SELECT 1 AS one FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1 SQL (3.7ms) INSERT INTO "admin_users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12) RETURNING "id" [["created_at", Fri, 25 Oct 2013 23:08:53 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "admin@example.com"], ["encrypted_password", "$2a$10$q/SYsjK1k.s/hZ.MY5ez5.raWmxXG/xx3wSk6MyUZHGn0Qrbyw2Hy"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Fri, 25 Oct 2013 23:08:53 UTC +00:00]]  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130817004304')  (0.4ms) COMMIT Migrating to CreateAdminNotes (20130817004306)  (0.2ms) BEGIN  (2.7ms) CREATE TABLE "admin_notes" ("id" serial primary key, "resource_id" character varying(255) NOT NULL, "resource_type" character varying(255) NOT NULL, "admin_user_id" integer, "admin_user_type" character varying(255), "body" text, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)   (0.8ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "admin_notes" ("resource_type", "resource_id")  (0.7ms) CREATE INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id" ON "admin_notes" ("admin_user_type", "admin_user_id")  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130817004306')  (0.5ms) COMMIT Migrating to MoveAdminNotesToComments (20130817004307)  (0.1ms) BEGIN  (0.3ms) DROP INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id"  (0.2ms) ALTER TABLE "admin_notes" RENAME TO "active_admin_comments"  (0.2ms) ALTER TABLE "admin_notes_id_seq" RENAME TO "active_admin_comments_id_seq"  (0.2ms) ALTER TABLE "active_admin_comments" RENAME COLUMN "admin_user_type" TO "author_type"  (0.1ms) ALTER TABLE "active_admin_comments" RENAME COLUMN "admin_user_id" TO "author_id"  (0.3ms) ALTER TABLE "active_admin_comments" ADD COLUMN "namespace" character varying(255)  (0.7ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")  (0.8ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")  (0.3ms) UPDATE active_admin_comments SET namespace='admin'  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130817004307')  (0.4ms) COMMIT Migrating to CreatePosts (20130817005638)  (0.1ms) BEGIN  (2.7ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying(255) NOT NULL, "body" text NOT NULL, "status" character varying(255) NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130817005638')  (0.4ms) COMMIT Migrating to CreateCategories (20130829000200)  (0.1ms) BEGIN  (1.9ms) CREATE TABLE "categories" ("id" serial primary key, "name" character varying(255), "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)   (0.2ms) ALTER TABLE "posts" ADD COLUMN "category_id" integer  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130829000200')  (0.3ms) COMMIT  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Connecting to database specified by database.yml Started GET "/" for 127.0.0.1 at 2013-10-25 19:09:07 -0400 ActionController::RoutingError (uninitialized constant DashboardController): activesupport (3.2.14) lib/active_support/inflector/methods.rb:230:in `block in constantize' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `each' activesupport (3.2.14) lib/active_support/inflector/methods.rb:229:in `constantize' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:54:in `controller' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:32:in `call' journey (1.0.4) lib/journey/router.rb:68:in `block in call' journey (1.0.4) lib/journey/router.rb:56:in `each' journey (1.0.4) lib/journey/router.rb:56:in `call' actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call' rack (1.4.5) lib/rack/etag.rb:23:in `call' rack (1.4.5) lib/rack/conditionalget.rb:25:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call' rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context' rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call' activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call' activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__3029270744690717250__call__349864552997241502__callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback' activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks' activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call' railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app' railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call' activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged' railties (3.2.14) lib/rails/rack/logger.rb:16:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call' rack (1.4.5) lib/rack/methodoverride.rb:21:in `call' rack (1.4.5) lib/rack/runtime.rb:17:in `call' activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call' rack (1.4.5) lib/rack/lock.rb:15:in `call' actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call' railties (3.2.14) lib/rails/engine.rb:484:in `call' railties (3.2.14) lib/rails/application.rb:231:in `call' rack (1.4.5) lib/rack/content_length.rb:14:in `call' railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call' rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run' /Users/matt/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms) Started GET "/admin/" for 127.0.0.1 at 2013-10-25 19:09:11 -0400 Processing by Admin::DashboardController#index as HTML Completed 401 Unauthorized in 2ms Started GET "/admin/login" for 127.0.0.1 at 2013-10-25 19:09:11 -0400 Processing by ActiveAdmin::Devise::SessionsController#new as HTML Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/shared/_links.erb (1.5ms) Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (118.4ms) Compiled active_admin.css (890ms) (pid 3211) Compiled active_admin/print.css (55ms) (pid 3211) Compiled jquery.js (50ms) (pid 3211) Compiled jquery-ui.js (6ms) (pid 3211) Compiled jquery_ujs.js (0ms) (pid 3211) Compiled active_admin/lib/namespace.js (120ms) (pid 3211) Compiled active_admin/components/jquery.aa.checkbox-toggler.js (171ms) (pid 3211) Compiled active_admin/components/jquery.aa.dropdown-menu.js (157ms) (pid 3211) Compiled active_admin/components/jquery.aa.popover.js (146ms) (pid 3211) Compiled active_admin/components/jquery.aa.table-checkbox-toggler.js (100ms) (pid 3211) Compiled active_admin/pages/application.js (151ms) (pid 3211) Compiled active_admin/pages/batch_actions.js (98ms) (pid 3211) Compiled active_admin/application.js (976ms) (pid 3211) Compiled active_admin/base.js (1102ms) (pid 3211) Compiled active_admin.js (1107ms) (pid 3211) Completed 200 OK in 2359ms (Views: 2331.7ms | ActiveRecord: 4.7ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin.css - 200 OK (10ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin/print.css - 304 Not Modified (5ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /jquery.js - 200 OK (67ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /jquery_ujs.js - 304 Not Modified (1ms) Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /jquery-ui.js - 200 OK (4ms) Started GET "/assets/active_admin/lib/namespace.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin/lib/namespace.js - 304 Not Modified (1ms) Started GET "/assets/active_admin/components/jquery.aa.checkbox-toggler.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin/components/jquery.aa.checkbox-toggler.js - 200 OK (4ms) Started GET "/assets/active_admin/components/jquery.aa.dropdown-menu.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin/components/jquery.aa.dropdown-menu.js - 200 OK (2ms) Started GET "/assets/active_admin/components/jquery.aa.popover.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin/components/jquery.aa.popover.js - 200 OK (2ms) Started GET "/assets/active_admin/components/jquery.aa.table-checkbox-toggler.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin/components/jquery.aa.table-checkbox-toggler.js - 200 OK (4ms) Started GET "/assets/active_admin/pages/application.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin/pages/application.js - 200 OK (1ms) Started GET "/assets/active_admin/pages/batch_actions.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin/pages/batch_actions.js - 200 OK (1ms) Started GET "/assets/active_admin/application.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin/application.js - 304 Not Modified (7ms) Started GET "/assets/active_admin/base.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin/base.js - 200 OK (15ms) Started GET "/assets/active_admin.js?body=1" for 127.0.0.1 at 2013-10-25 19:09:14 -0400 Served asset /active_admin.js - 200 OK (72ms) Started POST "/admin/login" for 127.0.0.1 at 2013-10-25 19:09:22 -0400 Processing by ActiveAdmin::Devise::SessionsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"o3oAaCarUUQW3QZAZVnPk51OWJBqTuQdFlHzUQE3oL8=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"} AdminUser Load (1.0ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1  (0.2ms) BEGIN  (0.6ms) UPDATE "admin_users" SET "last_sign_in_at" = '2013-10-25 23:09:22.240888', "current_sign_in_at" = '2013-10-25 23:09:22.240888', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2013-10-25 23:09:22.242444' WHERE "admin_users"."id" = 1  (0.6ms) COMMIT Redirected to http://localhost:5000/admin Completed 302 Found in 97ms (ActiveRecord: 0.0ms) Started GET "/admin" for 127.0.0.1 at 2013-10-25 19:09:22 -0400 Processing by Admin::DashboardController#index as HTML AdminUser Load (0.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/page/index.html.arb (12.4ms) Completed 200 OK in 22ms (Views: 15.8ms | ActiveRecord: 0.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:09:22 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:09:22 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:09:22 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/admin/categories" for 127.0.0.1 at 2013-10-25 19:09:25 -0400 Processing by Admin::CategoriesController#index as HTML AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (1.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "categories" LIMIT 30 OFFSET 0) subquery_for_count  Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (118.6ms) Completed 200 OK in 129ms (Views: 120.6ms | ActiveRecord: 1.9ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:09:25 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:09:25 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:09:25 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2013-10-25 19:09:25 -0400 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (2ms) Started GET "/admin/categories/new" for 127.0.0.1 at 2013-10-25 19:09:26 -0400 Processing by Admin::CategoriesController#new as HTML AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Redirected to http://localhost:5000/admin/categories Completed 302 Found in 9ms (ActiveRecord: 0.4ms) Started GET "/admin/categories" for 127.0.0.1 at 2013-10-25 19:09:27 -0400 Processing by Admin::CategoriesController#index as HTML AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.5ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "categories" LIMIT 30 OFFSET 0) subquery_for_count Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (51.3ms) Completed 200 OK in 59ms (Views: 53.0ms | ActiveRecord: 0.9ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:09:27 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:09:27 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:09:27 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2013-10-25 19:09:27 -0400 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Connecting to database specified by database.yml Connecting to database specified by database.yml Connecting to database specified by database.yml  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to DeviseCreateAdminUsers (20130817004304) Migrating to CreateAdminNotes (20130817004306) Migrating to MoveAdminNotesToComments (20130817004307) Migrating to CreatePosts (20130817005638) Migrating to CreateCategories (20130829000200) Migrating to AddSuperAdminToAdminUsers (20131025231118)  (0.1ms) BEGIN  (7.2ms) ALTER TABLE "admin_users" ADD COLUMN "super_admin" boolean DEFAULT 'f'  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20131025231118')  (0.8ms) COMMIT  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" Connecting to database specified by database.yml Started GET "/admin/categories" for 127.0.0.1 at 2013-10-25 19:15:13 -0400 Processing by Admin::CategoriesController#index as HTML AdminUser Load (0.7ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.6ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "categories" LIMIT 30 OFFSET 0) subquery_for_count Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (93.8ms) Completed 200 OK in 127ms (Views: 95.6ms | ActiveRecord: 3.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:14 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:14 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:15:14 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2013-10-25 19:15:14 -0400 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/categories/new" for 127.0.0.1 at 2013-10-25 19:15:16 -0400 Processing by Admin::CategoriesController#new as HTML AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/new.html.arb (39.4ms) Completed 200 OK in 57ms (Views: 45.0ms | ActiveRecord: 0.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:16 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:16 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:15:16 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/categories" for 127.0.0.1 at 2013-10-25 19:15:20 -0400 Processing by Admin::CategoriesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"u9h12qHlp3zBbf/OjRd/CruwHveJ9+Src0ecs64l5VU=", "category"=>{"name"=>"Chad"}, "commit"=>"Create Category"} AdminUser Load (0.9ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1  (0.2ms) BEGIN SQL (2.2ms) INSERT INTO "categories" ("created_at", "name", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["created_at", Fri, 25 Oct 2013 23:15:20 UTC +00:00], ["name", "Chad"], ["updated_at", Fri, 25 Oct 2013 23:15:20 UTC +00:00]]  (1.0ms) COMMIT Redirected to http://localhost:5000/admin/categories/1 Completed 302 Found in 23ms (ActiveRecord: 0.0ms) Started GET "/admin/categories/1" for 127.0.0.1 at 2013-10-25 19:15:20 -0400 Processing by Admin::CategoriesController#show as HTML Parameters: {"id"=>"1"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (13.9ms) Completed 200 OK in 21ms (Views: 16.0ms | ActiveRecord: 1.0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:21 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:21 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:15:21 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/categories/1/posts" for 127.0.0.1 at 2013-10-25 19:15:23 -0400 Processing by Admin::PostsController#index as HTML Parameters: {"category_id"=>"1"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Category Load (0.7ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.6ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" WHERE "posts"."category_id" = 1 LIMIT 30 OFFSET 0) subquery_for_count  Category Load (0.6ms) SELECT "categories".* FROM "categories" Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (187.3ms) Completed 200 OK in 206ms (Views: 187.3ms | ActiveRecord: 2.9ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:23 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:15:23 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:23 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2013-10-25 19:15:23 -0400 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/categories/1/posts/new" for 127.0.0.1 at 2013-10-25 19:15:25 -0400 Processing by Admin::PostsController#new as HTML Parameters: {"category_id"=>"1"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Category Load (0.7ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/new.html.arb (140.1ms) Completed 200 OK in 160ms (Views: 141.7ms | ActiveRecord: 1.4ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:25 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:15:25 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:25 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started POST "/admin/categories/1/posts" for 127.0.0.1 at 2013-10-25 19:15:29 -0400 Processing by Admin::PostsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"u9h12qHlp3zBbf/OjRd/CruwHveJ9+Src0ecs64l5VU=", "post"=>{"title"=>"After that", "body"=>""}, "commit"=>"Create Post", "category_id"=>"1"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]]  (0.2ms) BEGIN Post Exists (1.4ms) SELECT 1 AS one FROM "posts" WHERE "posts"."title" = 'After that' LIMIT 1  (0.3ms) ROLLBACK Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/new.html.arb (42.6ms) Completed 200 OK in 59ms (Views: 44.2ms | ActiveRecord: 3.1ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:29 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:29 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:15:29 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started POST "/admin/categories/1/posts" for 127.0.0.1 at 2013-10-25 19:15:31 -0400 Processing by Admin::PostsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"u9h12qHlp3zBbf/OjRd/CruwHveJ9+Src0ecs64l5VU=", "post"=>{"title"=>"After that", "body"=>"asdf"}, "commit"=>"Create Post", "category_id"=>"1"} AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]]  (0.1ms) BEGIN Post Exists (0.6ms) SELECT 1 AS one FROM "posts" WHERE "posts"."title" = 'After that' LIMIT 1 SQL (1.1ms) INSERT INTO "posts" ("body", "category_id", "created_at", "status", "title", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "asdf"], ["category_id", 1], ["created_at", Fri, 25 Oct 2013 23:15:31 UTC +00:00], ["status", "draft"], ["title", "After that"], ["updated_at", Fri, 25 Oct 2013 23:15:31 UTC +00:00]]  (0.3ms) COMMIT Redirected to http://localhost:5000/admin/categories/1/posts/1 Completed 302 Found in 16ms (ActiveRecord: 0.0ms) Started GET "/admin/categories/1/posts/1" for 127.0.0.1 at 2013-10-25 19:15:31 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"1"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = $1 LIMIT 1 [["id", "1"]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (22.5ms) Completed 200 OK in 30ms (Views: 24.0ms | ActiveRecord: 1.5ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:32 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:15:32 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:15:32 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started PUT "/admin/categories/1/posts/1/peer_review" for 127.0.0.1 at 2013-10-25 19:17:59 -0400 Processing by Admin::PostsController#peer_review as HTML Parameters: {"authenticity_token"=>"u9h12qHlp3zBbf/OjRd/CruwHveJ9+Src0ecs64l5VU=", "category_id"=>"1", "id"=>"1"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Post Load (0.5ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = $1 LIMIT 1 [["id", "1"]]  (0.1ms) BEGIN Post Exists (0.5ms) SELECT 1 AS one FROM "posts" WHERE ("posts"."title" = 'After that' AND "posts"."id" != 1) LIMIT 1  (0.3ms) UPDATE "posts" SET "status" = 'reviewed', "updated_at" = '2013-10-25 23:17:59.623590' WHERE "posts"."id" = 1  (1.8ms) COMMIT Redirected to http://localhost:5000/admin/categories/1/posts/1 Completed 302 Found in 14ms (ActiveRecord: 3.9ms) Started GET "/admin/categories/1/posts/1" for 127.0.0.1 at 2013-10-25 19:17:59 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"1"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = $1 LIMIT 1 [["id", "1"]] Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (17.2ms) Completed 200 OK in 23ms (Views: 18.6ms | ActiveRecord: 1.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:17:59 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:17:59 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:17:59 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started PUT "/admin/categories/1/posts/1/publish" for 127.0.0.1 at 2013-10-25 19:25:48 -0400 Processing by Admin::PostsController#publish as HTML Parameters: {"authenticity_token"=>"u9h12qHlp3zBbf/OjRd/CruwHveJ9+Src0ecs64l5VU=", "category_id"=>"1", "id"=>"1"} AdminUser Load (0.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Post Load (1.0ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = $1 LIMIT 1 [["id", "1"]]  (0.2ms) BEGIN Post Exists (0.6ms) SELECT 1 AS one FROM "posts" WHERE ("posts"."title" = 'After that' AND "posts"."id" != 1) LIMIT 1  (0.7ms) UPDATE "posts" SET "status" = 'published', "updated_at" = '2013-10-25 23:25:48.242901' WHERE "posts"."id" = 1  (1.8ms) COMMIT Redirected to http://localhost:5000/admin/categories/1/posts/1 Completed 302 Found in 19ms (ActiveRecord: 5.1ms) Started GET "/admin/categories/1/posts/1" for 127.0.0.1 at 2013-10-25 19:25:48 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"1"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = $1 LIMIT 1 [["id", "1"]] Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (20.7ms) Completed 200 OK in 26ms (Views: 22.0ms | ActiveRecord: 1.3ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:25:48 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:25:48 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:25:48 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/admin/categories/1/posts" for 127.0.0.1 at 2013-10-25 19:33:36 -0400 Processing by Admin::PostsController#index as HTML Parameters: {"category_id"=>"1"} AdminUser Load (0.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1  (0.4ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" WHERE "posts"."category_id" = 1 LIMIT 30 OFFSET 0) subquery_for_count  (0.3ms) SELECT COUNT(*) FROM "posts" WHERE "posts"."category_id" = 1 CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "posts" WHERE "posts"."category_id" = 1 LIMIT 30 OFFSET 0) subquery_for_count Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 ORDER BY "posts"."id" desc LIMIT 30 OFFSET 0 Category Load (0.3ms) SELECT "categories".* FROM "categories" Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/index.html.arb (281.6ms) Completed 200 OK in 327ms (Views: 281.5ms | ActiveRecord: 4.8ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:33:36 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:33:36 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:33:36 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/orderable.png" for 127.0.0.1 at 2013-10-25 19:33:37 -0400 Served asset /active_admin/orderable.png - 304 Not Modified (1ms) Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 127.0.0.1 at 2013-10-25 19:33:37 -0400 Served asset /active_admin/datepicker/datepicker-input-icon.png - 304 Not Modified (0ms) Started GET "/admin/categories/1/posts/new" for 127.0.0.1 at 2013-10-25 19:33:37 -0400 Processing by Admin::PostsController#new as HTML Parameters: {"category_id"=>"1"} AdminUser Load (0.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Category Load (0.3ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/new.html.arb (58.8ms) Completed 200 OK in 70ms (Views: 60.7ms | ActiveRecord: 1.2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:33:38 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:33:38 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:33:38 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started POST "/admin/categories/1/posts" for 127.0.0.1 at 2013-10-25 19:33:41 -0400 Processing by Admin::PostsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"u9h12qHlp3zBbf/OjRd/CruwHveJ9+Src0ecs64l5VU=", "post"=>{"title"=>"asdf", "body"=>"asdf"}, "commit"=>"Create Post", "category_id"=>"1"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]]  (0.1ms) BEGIN Post Exists (0.4ms) SELECT 1 AS one FROM "posts" WHERE "posts"."title" = 'asdf' LIMIT 1 SQL (0.5ms) INSERT INTO "posts" ("body", "category_id", "created_at", "status", "title", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["body", "asdf"], ["category_id", 1], ["created_at", Fri, 25 Oct 2013 23:33:41 UTC +00:00], ["status", "draft"], ["title", "asdf"], ["updated_at", Fri, 25 Oct 2013 23:33:41 UTC +00:00]]  (0.7ms) COMMIT Redirected to http://localhost:5000/admin/categories/1/posts/2 Completed 302 Found in 21ms (ActiveRecord: 0.0ms) Started GET "/admin/categories/1/posts/2" for 127.0.0.1 at 2013-10-25 19:33:41 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"2"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = $1 LIMIT 1 [["id", "2"]] Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (16.3ms) Completed 200 OK in 24ms (Views: 17.7ms | ActiveRecord: 1.3ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:33:42 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:33:42 -0400 Served asset /active_admin.css - 304 Not Modified (3ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:33:42 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started PUT "/admin/categories/1/posts/2/peer_review" for 127.0.0.1 at 2013-10-25 19:33:43 -0400 Processing by Admin::PostsController#peer_review as HTML Parameters: {"authenticity_token"=>"u9h12qHlp3zBbf/OjRd/CruwHveJ9+Src0ecs64l5VU=", "category_id"=>"1", "id"=>"2"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = $1 LIMIT 1 [["id", "2"]]  (0.2ms) BEGIN Post Exists (0.3ms) SELECT 1 AS one FROM "posts" WHERE ("posts"."title" = 'asdf' AND "posts"."id" != 2) LIMIT 1  (0.3ms) UPDATE "posts" SET "status" = 'reviewed', "updated_at" = '2013-10-25 23:33:43.861975' WHERE "posts"."id" = 2  (1.8ms) COMMIT Redirected to http://localhost:5000/admin/categories/1/posts/2 Completed 302 Found in 81ms (ActiveRecord: 3.7ms) Started GET "/admin/categories/1/posts/2" for 127.0.0.1 at 2013-10-25 19:33:43 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"2"} AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (0.2ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = $1 LIMIT 1 [["id", "2"]] Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (16.7ms) Completed 200 OK in 23ms (Views: 18.3ms | ActiveRecord: 1.2ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-25 19:33:43 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-25 19:33:43 -0400 Served asset /active_admin.css - 304 Not Modified (2ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-25 19:33:43 -0400 Served asset /active_admin.js - 304 Not Modified (0ms) Started GET "/admin/categories/1/posts/2" for 127.0.0.1 at 2013-10-28 13:59:49 -0400 Processing by Admin::PostsController#show as HTML Parameters: {"category_id"=>"1", "id"=>"2"} AdminUser Load (1.6ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1 Category Load (2.4ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = $1 LIMIT 1 [["id", "1"]] Post Load (1.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."category_id" = 1 AND "posts"."id" = $1 LIMIT 1 [["id", "2"]] Category Load (0.9ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE "categories"."id" = 1 LIMIT 1 Rendered /Users/matt/.rvm/gems/ruby-2.0.0-p195/gems/activeadmin-0.6.0/app/views/active_admin/resource/show.html.arb (294.2ms) Completed 200 OK in 380ms (Views: 297.5ms | ActiveRecord: 8.2ms) Started GET "/assets/active_admin.css?body=1" for 127.0.0.1 at 2013-10-28 13:59:50 -0400 Served asset /active_admin.css - 304 Not Modified (1ms) Started GET "/assets/active_admin/print.css?body=1" for 127.0.0.1 at 2013-10-28 13:59:50 -0400 Served asset /active_admin/print.css - 304 Not Modified (0ms) Started GET "/assets/active_admin.js" for 127.0.0.1 at 2013-10-28 13:59:50 -0400 Served asset /active_admin.js - 304 Not Modified (0ms)